add better working-g++ check (patch from #2017)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8118 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2007-07-23 02:56:30 +00:00
parent e1ec900c8e
commit 41dc41e96e
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ $(eval $(call Require,working-gcc, \
define Require/working-g++
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
endef
$(eval $(call Require,working-g++, \