fix source file vs library order in a few prereq checks (#4326)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15181 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
773cfee639
commit
fff08c0fc1
|
@ -62,7 +62,7 @@ $(eval $(call Require,working-gcc, \
|
||||||
|
|
||||||
define Require/working-g++
|
define Require/working-g++
|
||||||
echo 'int main(int argc, char **argv) { return 0; }' | \
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
||||||
g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - && \
|
g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \
|
||||||
$(TMP_DIR)/a.out
|
$(TMP_DIR)/a.out
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ $(eval $(call Require,working-g++, \
|
||||||
|
|
||||||
define Require/ncurses
|
define Require/ncurses
|
||||||
echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
|
echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \
|
||||||
gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out -lncurses -
|
gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call Require,ncurses, \
|
$(eval $(call Require,ncurses, \
|
||||||
|
@ -82,7 +82,7 @@ $(eval $(call Require,ncurses, \
|
||||||
|
|
||||||
define Require/zlib
|
define Require/zlib
|
||||||
echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
|
echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \
|
||||||
gcc -include zlib.h -x c -o $(TMP_DIR)/a.out -lz -
|
gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - -lz
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call Require,zlib, \
|
$(eval $(call Require,zlib, \
|
||||||
|
|
Loading…
Reference in New Issue