Hi
I'd like to know how to compile a .bb file with blitzcc?
dammit - nobody answer? I mean, ok , rtfm, I agree, but a little tip would be nice imho!
Audrain:
***** V1.78 *****
B2D/B3D
Compiler and Debugger have been separated from the IDE!
blitzcc.exe is now a standalone exe that compiles/runs a program, launching the debugger if required. The debugger is now a separate DLL.
The general syntax for using BlitzCC is:
blitzcc [options] [sourcefile]
Where options can be:
-h : show help
-q : operate quietly
+q : operate very quietly
-d : compile and run in debug mode
-k : print a list of all keywords to stdout
+k : print a list of all keywords plus 'quickhelp' to stdout
-o exefile : create an executable called 'exefile'.
eg:
blitzcc -d myprogram.bb
...will compile and run 'myprogram.bb' in debug mode.
.........
(taken from "versions.txt" in the Blitz3D Folder)