Linker error: symbol(s) not found

2008-09-03 Thread Joachim
Dear list, I'm getting a linker error, and it's not a missing inclusion of a framework. I suspect it has to do with mixing .m and .mm files, but I'm actually pretty clueless. This is the output from the build: DGBoardRepFromGame(DGGame*, char*), referenced from: -[DGTinyEngine

Re: Linker error: symbol(s) not found

2008-09-03 Thread Julien Jalon
In the header declaring DGBoardRepFromGame, make sure to declare it extern C. #ifdef __cplusplus extern C { #endif extern DGBoardRepFromGame(DGGame*, char*); #ifdef __cplusplus } #endif On Wed, Sep 3, 2008 at 10:40 PM, Joachim [EMAIL PROTECTED] wrote: Dear list, I'm getting a linker error,