Anywho, this is the issue: When I'm compiling with multiple modules/files, I get a lot of errors about multiple references to all the chipmunk functions.
FreeBASIC works similarly to gcc, so when I do something like this:
fbc source.file -l chipmunk
Everything is fine, but if I do something like:
fbc source1.file source2.file -l chipmunk
It starts to complain about multiple references
I've also tried compiling and not linking until the end like this:
fbc source1.file -c
fbc source2.file -c
fbc *.o -l chipmunk -x "sometest.exe"
Again, the multiple references issue crops up again.
Is this an issue in the C-dialect versions, or is there perhaps something wrong with my translated headers (I did the translation by hand, but don't think I left anything important out).
Any insight into this would be super duper
![Smile :)](./images/smilies/icon_e_smile.gif)
-Oz