I have to mix c-sources and c++-sources in a linux project.
How can I do it?
I had tried to compile them seperatly. The c-files with the gcc and the cpp files with g++.
After that I link all files with g++ together. By that it doesn't find the calls coming from c++-sources to c-functions.
Any ideas?