Prechádzať zdrojové kódy

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

SVN-Revision: 8118
Felix Fietkau 18 rokov pred
rodič
commit
1883949d79
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  1. 2 1
      include/prereq-build.mk

+ 2 - 1
include/prereq-build.mk

@@ -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++, \