Build Modules but no release version

Archives Forums/BlitzMax Bug Reports/Build Modules but no release version

joncom2000(Posted 2011) [#1]
I dont seem to be getting any release versions of modules built when I use build modules or rebuild all modules from the ide. It's building debug versions so it's sort of half working. (Windows Vista 32bit)

I am trying to build the minib3d module but due to this I can only build debug exe's this way, any ideas to fix it are welcome.


xlsior(Posted 2011) [#2]
from the command line, in your blitzmax\bin folder, try the following:

bmk makemods -a (rebuild all modules)
bmk makemods -a -h (rebuild all modules in multi-threaded mode)


Alternatively, you can specify a particular branch:

bmk makemods -a brl

or a specific module:

bmk makemods -a bah.regex


joncom2000(Posted 2011) [#3]
I got it going from the command line and now have release versions for minib3d. Thanks for the help.

Will have to see if I have something else amiss stopping it from working in the ide as expected.