summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-05-30 13:27:04 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-05-30 13:27:38 (GMT)
commitbd9ec9d1d07c4a24f537264e06c735c7a8b33810 (patch)
tree43c80cca139ca2c4ab2a5c3d9b423dd0e0f48ae3
parentcf70c1efb1b47cba7adcef0d536fc4aa6f3a3593 (diff)
parent39fc348f5779cdb7892aa70435fa0b8e04539964 (diff)
downloadCMake-bd9ec9d1d07c4a24f537264e06c735c7a8b33810.zip
CMake-bd9ec9d1d07c4a24f537264e06c735c7a8b33810.tar.gz
CMake-bd9ec9d1d07c4a24f537264e06c735c7a8b33810.tar.bz2
Merge topic 'bootstrap-drop-irix'
39fc348f bootstrap: remove support for IRIX Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !903
-rwxr-xr-xbootstrap28
1 files changed, 0 insertions, 28 deletions
diff --git a/bootstrap b/bootstrap
index b1f8670..0e76f4a 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1111,34 +1111,6 @@ rm -f "${TMPFILE}.cxx"
if [ "x${cmake_cxx_compiler_is_gnu}" != "x1" ]; then
# Check for non-GNU compiler flags
- # If we are on IRIX, check for -LANG:std
- cmake_test_flags="-LANG:std"
- if [ "x${cmake_system}" = "xIRIX64" ]; then
- TMPFILE=`cmake_tmp_file`
- echo '
- #include <iostream>
- int main() { std::cout << "No need for '"${cmake_test_flags}"'" << std::endl; return 0;}
-' > ${TMPFILE}.cxx
- cmake_need_lang_std=0
- if cmake_try_run "${cmake_cxx_compiler}" \
- "${cmake_cxx_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
- :
- else
- if cmake_try_run "${cmake_cxx_compiler}" \
- "${cmake_cxx_flags} ${cmake_test_flags}" "${TMPFILE}.cxx" >> cmake_bootstrap.log 2>&1; then
- cmake_need_lang_std=1
- fi
- fi
- if [ "x${cmake_need_lang_std}" = "x1" ]; then
- cmake_cxx_flags="${cmake_cxx_flags} ${cmake_test_flags}"
- echo "${cmake_cxx_compiler} needs ${cmake_test_flags}"
- else
- echo "${cmake_cxx_compiler} does not need ${cmake_test_flags}"
- fi
- rm -f "${TMPFILE}.cxx"
- fi
- cmake_test_flags=
-
# If we are on OSF, check for -timplicit_local -no_implicit_include
cmake_test_flags="-timplicit_local -no_implicit_include"
if [ "x${cmake_system}" = "xOSF1" ]; then