-
make trouble
"make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/c/Users/HYLuk/Documents/NetBeansProjects/Perfectsi
m'
VPATH=. -spec win32-g++ -o qttmp-Debug.mk nbproject/qt-Debug.pro
/bin/sh: -spec: command not found
make[1]: *** [nbproject/qt-Debug.mk] Error 127
make[1]: Leaving directory `/c/Users/HYLuk/Documents/NetBeansProjects/Perfectsim
'
make: *** [.build-impl] Error 2
=============================
sh on its own can run
I don't know why if sh is in the system path,how come it can be run standalone
HELP please
-
Re: make trouble
where is the directory /bin on windows? Can't find it
-
Re: make trouble
Windows don't have a /bin.
-
Re: make trouble
If you look closely, you will see that the error message is actually coming from /bin/sh and the error reads:
Code:
-spec: command not found
So, some line in your make file evaluates to starting with -spec, which is not a proper command. My guess is that you don't have CC or CXX defined.