I'm trying to write a very basic program using the most recently available binaries for Orx, a game engine. I'm using mingw, msys and make. It compiles, but doesn't link, citing the following:

obj/debug/main.o: In function `orx_MainSetup':
D:\projects\bleep/./orx-1.3rc0/dev-mingw/include/orx.h:108: undefined reference to `_imp_@orxModule_AddDependency@8'
D:\projects\bleep/./orx-1.3rc0/dev-mingw/include/orx.h:109: undefined reference to `_imp_@orxModule_AddDependency@8'

and a host of other similar name resolution failures. I know with relative certainty that it's linking against the file that I expect it to, namely, orx-1.3rc0\dev-mingw\lib\liborxd.a. The link command is:

C:/MinGW/bin/g++ -Wall -pipe -mconsole -L./orx-1.3rc0/dev-mingw/lib -LC:/MinGW/lib -O0 -ggdb -lorxd \
-o bin/debug/bleep.exe obj/debug/main.o

Using nm reveals the presence of the following symbol in liborxd.a:

d000641.o:
00000000 i .idata$4
00000000 i .idata$5
00000000 i .idata$6
00000000 i .idata$7
00000000 t .text
00000001 a @feat.00
00000000 T @orxModule_AddDependency@8
         U __head_orxd_dll
00000000 I __imp_@orxModule_AddDependency@8

So for whatever grievous reason, the .a contains symbols with two leading underscores, but gcc is looking for symbols with one leading underscore. Is there any way for me to fix this, short of rebuilding Orx itself?

Thanks.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.