First of all, thanks Rem
I just wanted to share a couple of compile issues I had for anyone out there wanting to use this codebase. This could have been a result of my own newbieness, I'm not very familiar with working with *nix systems but I learn as I go. It could also be the fact it compiles differently than 1.37.
First error encountered during make:
Code:
make -s lop
Compiling o/imc.o....
make[1]: g++-4: Command not found
make[1]: *** [o/imc.o] Error 127
make: *** [all] Error 2
To fix, edit the Makefile and at the very top change:
Code:
from:
CC = g++-4
#CC = g++
to:
#CC = g++-4
CC = g++
The second error, after it compiled all the .c files was:
Code:
make[1]: dlltool: Command not found
make[1]: *** [lop] Error 127
make: *** [all] Error 2
To fix, edit the Makefile and change:
Code:
from:
#Uncomment to compile in Cygwin
CYGWIN = -DCYGWIN
to:
#Uncomment to compile in Cygwin
#CYGWIN = -DCYGWIN
Note that 1.37 already had that commented out.
.........................
******************************
aka Hana
Owner in Training: Fury of the Gods (in development)
laugh. dance. cure.