Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used the C-library RS232 in my C++ code to control an Arduino Uno board. In my main.cpp, I got:

#include "rs232.h"

because in the rs232.h header file, they already have:

#ifdef __cplusplus
extern "C" {
#endif

In one folder, I have: main.cpp rs232.h rs232.c stdafx.h stdafx.cpp

and I use cygwin to compile so that the code could be used for Linux:

g++ main.cpp

but I got errors with "...undefined reference to '_OpenComport'" and similar to all C functions that I called from my main.cpp.

Can anyone tell me how to include the C header file in C++? Or is it that I used the wrong command for g++?

share|improve this question

1 Answer

You need to pass all source files to the compiler, like so

g++ -o demo.exe main.cpp rs232.c stdafx.cpp

Alternatively, compile parts into a library, and separate compile and link steps.

share|improve this answer
Thanks...it works. So simple yet so elusive to a Windows-centric person. – fred Dec 11 '10 at 15:27
in Windows if you would try to compile only main.cpp you'd get exactly same error. – n0rd Dec 11 '10 at 16:36
Well I wrote the code using Visual Studio and I haven't had to make a port to Linux until now. – fred Dec 11 '10 at 17:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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