Problems with Building Modules

BlitzMax Forums/BlitzMax Programming/Problems with Building Modules

plash(Posted 2006) [#1]
I got the FMOD thing and followed the instructions, got MinGW, set the environment path, then when I try to build my modules I get this:
Building Modules
Compiling:blitz_app.c
Build Error: failed to compile T:/Program Files/BlitzMax/mod/brl.mod/blitz.mod/blitz_app.c
Process complete


Any ideas to what could be wrong here?


skidracer(Posted 2006) [#2]
Setting the MingW environment variable and adding mingw/bin to your path variable are two separate steps.


plash(Posted 2006) [#3]
Well what I did was made a environment variable and named it MINGW then set it to ';T:\MinGW\bin'. Is there more to it then this?


skidracer(Posted 2006) [#4]
Yes.


plash(Posted 2006) [#5]
OK, it works fine now :)

For anyone that has trouble with this:
Add the MinGW bin path to the PATH environment variable (e.g. ";C:\MinGW\bin")
Create a new environment variable called MinGW, and set it to the root of your MinGW install (e.g. "C:\MinGW").


tonyg(Posted 2006) [#6]
Like this
* Edit your PATH environment to include the MinGW/bin directory.

* Create a MINGW environment variable that points to the MinGW root directory.


?


plash(Posted 2006) [#7]
.