Problem building project in Windows 7 (nds)
Posted: Fri Apr 15, 2011 4:17 pm
When running make, it tries to run a file named "[", which of course doesn't exist. It also creates a folder named -p.
The makefile I'm using is the one for the nitroFS example, which doesn't compile either. Anyway, in my old computer the code used to compile, so the problem must have to do with my current configuration.
My guess is that it isn't understanding correctly these lines:
I have the GNUWin32 make.exe version 3.81 (Although my system is 64 bits, but that shouldn't affect the case), and devkitpro is upgraded.
Any ideas on getting this to work? Thanks in advance!
The makefile I'm using is the one for the nitroFS example, which doesn't compile either. Anyway, in my old computer the code used to compile, so the problem must have to do with my current configuration.
Code: Select all
process_begin: CreateProcess(NULL, basename D:/Dropbox/Project2BJ/hw, ...) failed.
"[" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
Ya existe el subdirectorio o el archivo build.
Error mientras se procesaba: build.
make: *** [build] Error 1
Code: Select all
$(BUILD):
@[ -d $@ ] || mkdir -p $@
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
Any ideas on getting this to work? Thanks in advance!