c++ 라이브러리 c에서 호출하여 컴파일 방법..

fivestar의 이미지

c프로그램에서 프로그램을 호출하여 사용하였는데

퍼포먼스문제로 인하여 해당 프로그램을 라이브러리 화 시켰습니다.

이 프로그램은 c++이며 라이브러리를 링크 시켜서 컴파일시

에러가 발생합니다.

undefined reference to `std::ios_base::Init::Init()'
undefined reference to `std::__throw_bad_alloc()'
undefined reference to `std::_Rb_tree_increment(std::_Rb_tree_node_base*)'

위와 같은 함수들은 사용하지도 않는데 에러가 발생하고 있으며

문제가 무엇이기에 에러가 발생하는 것 일까요?

또한 c 컴파일할때 gcc로 컴파일 해야되는것 맞나요? 또한 무슨 옵션을 주어야 하는게 잇는지요..
라이브러리 자체는 g++로 컴파일후 라이브러리 만든것입니다.

도움부탁드립니다.

empty2fill의 이미지

정확한 원인은 잘 모르겠네요. 아래 사항을 검사해보세요.

1. main 함수는 c++로 컴파일 되어야 합니다. -> 컴파일러에 따라 다를 수 있어요.
2. c에서 함수를 호출 할수 있도록 extern "C" 를 사용하세요. -> c용 wrapper 함수를 정의하세요.
3. stdc++ 라이브러리가 링크되었는지 확인해보세요. -> -lstdc++

그래도 안돼시면 사용하는 makefile이나 컴파일 옵션이 어떻게 되는지 알려주세요.

[관련 링크]

Mixing C and C++ Code in the Same Program
http://dsc.sun.com/solaris/articles/mixing.html

How to mix C and C++
http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html

——
———
Life is a tragedy when seen in close-up, but a comedy in long-shot. - Chaplin, Charlie -

fivestar의 이미지

c에서 호출되는 함수에 한하여 c++코드의 함수를 extern "C" int print(int i, double d) 와 같은식으로 사용을 하고

헤더파일은 아래와 같이 정의하여 extern 시키면 되는건가요?
#ifdef __cplusplus
extern "C"
#endif
int print(int i, double d);

그런데도 동일하게 에러가 발생을 하여서요...제가 잘못 하고 있는건가요?

또한 extern "C"가 c++코드에서 c 용 함수 및 헤더 파일 불러올때 사용하는 건지 알았는데 위와 같이 c에서 호출되는 c++에 대해서도 extern "C"
로 선언을 해야 하는건가요?

empty2fill의 이미지

extern "C"를 c++ 헤더에 쓰는 것은 헤더 파일을 c와 공용으로 쓰기 위해서 입니다.

아래 코드로 테스트 해보았습니다.

c++ 라이브러리를(lib.a) 만들고 c에서(app.c:app_run) c++ 함수를(lib.cpp:do_work) 호출해보았습니다.

main은 c++로 컴파일하였구요.

extern "C" 링크 문제는 아닌것 같습니다. 실제 어떻게 빌드하는지 주요부분만 알려주실수 있나요?

파일이름 "lib.h"

#ifndef LIB_H_
#define LIB_H_
 
#ifdef __cplusplus
extern "C" {
#endif
 
int do_work();
 
#ifdef __cplusplus
}
#endif
 
#endif

파일이름 "lib.cpp"

#include "lib.h"
 
#include <iostream>
 
int do_work()
{
	std::cout << "^^" << std::endl;
	return 0;
}

파일이름 "app.h"

#ifndef APP_H_
#define APP_H_
 
#ifdef __cplusplus
extern "C" {
#endif
 
int app_run();
 
#ifdef __cplusplus
}
#endif
 
#endif

파일이름 "app.c"

#include "app.h"
 
#include "lib.h"
 
int app_run()
{
	return do_work();
}

파일이름 "main.cpp"

#include "app.h"
 
int main()
{
	return app_run();
}

빌드명령어

g++ -I. -c lib.cpp
gcc -I. -c app.c
g++ -I. -c main.cpp
ar -r lib.a lib.o
ranlib lib.a
g++ -I. -o test app.o main.o lib.a

댓글 첨부 파일: 
첨부파일 크기
Package icon test.zip864바이트

——
———
Life is a tragedy when seen in close-up, but a comedy in long-shot. - Chaplin, Charlie -

익명 사용자의 이미지

C++에서 만든 함수들(라이브러리)를 C에서도 쓰려면

1. C++에서 extern "C"로 네임맹글링 없도록 선언해 주어야 하고

2. 그 함수들은 C++함수들이므로 C++로 컴파일 해야 됩니다.

물론 그 함수들을 불러다 쓰는 놈은 C니까 C로 컴파일 하면 됩니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.