when and how is bcc called?

BlitzMax Forums/BlitzMax Programming/when and how is bcc called?

rdodson41(Posted 2005) [#1]
When you hit "Build & Run", does the IDE just run bcc with the argument of the path to the file being built? Such as: "bcc ~/BlitzMax/test.bmx". Is this how it is called?


Perturbatio(Posted 2005) [#2]
the IDE calls bmk, bmk in turn calls the various compilers for each of the source types.


rdodson41(Posted 2005) [#3]
hmm... would it be possible to add to bmk so that it calls a certain compiler for a certain type of file?


Perturbatio(Posted 2005) [#4]
only with source.

Or you could write your own bmk, rename the current one, use your one to call whatever you want then call bmk for the rest.