I have couple of questions that about mixing code:

  1. a complete project based on c, if I wanna use a c++ library, then I create a wrapper around it with pure c code,then build that shared library, do I have to change to g++ instead of gcc compiler?

  2. what if the wrapper compile as static library with the library?

link|improve this question

3  
A C wrapper around C++? What a pleasing twist. – Lightness Races in Orbit Jan 7 at 17:55
2  
@LightnessRacesinOrbit: This can happen frequently. You may write a library in C++, but want it to be usable by a C program. – Oli Charlesworth Jan 7 at 17:56
Good Read: Mixing C and C++ – Als Jan 7 at 17:58
1  
@Oli: I never want anything to be usable by a C program ;) – Lightness Races in Orbit Jan 7 at 17:58
@LightnessRacesinOrbit: "want" -> "need" ... – Oli Charlesworth Jan 7 at 17:59
show 2 more comments
feedback

1 Answer

up vote 5 down vote accepted

I'm interested to know what library you're using that has only a C++ version, and not a pure C interface.

Regardless, Since you're going to be calling C++ code, your wrapper will be considered C++ and will need to be compiled with g++. This has to do with name-mangling, and you'll need to be able to call those functions the c++ library exposes. You can look at them with readelf -s.

The functions your wrapper exposes, however, will need to be marked extern "C" so that their names are not mangled. Then you will be able to call them from your pure C application.

Static vs. Shared library shouldn't really matter here. It's just a matter of the correct symbols being generated so that linking can happen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.