summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index caa19ec..993c776 100755
--- a/bootstrap
+++ b/bootstrap
@@ -267,10 +267,11 @@ fi
# Check if C++ compiler works
TMPFILE=`cmake_tmp_file`
cat>"${TMPFILE}.cxx"<<EOF
-#include<iostream.h>
+#include <stdio.h>
+class NeedCXX {};
int main()
{
- cout << 1 << endl;
+ printf("1\n");
return 0;
}
EOF