Dependency list

Archives Forums/Linux Discussion/Dependency list

N(Posted 2005) [#1]
Can we get a list of dependencies for BlitzMax?


Robert(Posted 2005) [#2]
BlitzMAX doesn't have many dependancies, and I managed to get it running without problems.

AFAIK at the moment:

libstdc++ (This is standard on all distros)
FreeType
libGL
XFree86 / X.Org

Are the main ones.


N(Posted 2005) [#3]
Yeah, but I mean an official and complete (not just the 'ones we think you might not have') list.


skidracer(Posted 2005) [#4]
The current extenal libs being linked with can be found in blitzmax/tmp/ld.tmp and currently include GL GLU X11 and Xxf86vm.

FreeType is statically built and linked with as a standard BlitzMax modules so should not be considered a dependency.

We are currenty invoking g++ not ld to link BlitzMax programs (view call using the verbose option in bmk ala - bmk makeapp -v programname) which automatically links in some other crud for c++ app support.

The main problem currently is libstdc++ is not standard, not backward compatible and not available in all distros so something needs to be done with either a statically link option or optional removal of stdc++ support for maximum portaibility when it comes to game binaries.


N(Posted 2005) [#5]
Thanks, skid, that helps a lot. :)