aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-10-14 00:44:50 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-10-14 00:44:50 +0000
commita635c3bfa9c12c34afdcbf178c4cc7c9fa82dd0c (patch)
tree66fa62a384bee10b66168bb63bf4b54491bb43b8 /autoconf
parentbe13ae5c35e4956241f95efabf864e19e53dbdbd (diff)
downloadexternal_llvm-a635c3bfa9c12c34afdcbf178c4cc7c9fa82dd0c.zip
external_llvm-a635c3bfa9c12c34afdcbf178c4cc7c9fa82dd0c.tar.gz
external_llvm-a635c3bfa9c12c34afdcbf178c4cc7c9fa82dd0c.tar.bz2
Provide AuroraUX triple support in configure. Credit to - Paul Davey.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84067 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index c4aad36..49c1c87 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -165,6 +165,11 @@ AC_CACHE_CHECK([type of operating system we're going to host on],
llvm_cv_no_link_all_option="-Wl,-z,defaultextract"
llvm_cv_os_type="SunOS"
llvm_cv_platform_type="Unix" ;;
+ *-*-auroraux*)
+ llvm_cv_link_all_option="-Wl,-z,allextract"
+ llvm_cv_link_all_option="-Wl,-z,defaultextract"
+ llvm_cv_os_type="AuroraUX"
+ llvm_cv_platform_type="Unix" ;;
*-*-win32*)
llvm_cv_link_all_option="-Wl,--whole-archive"
llvm_cv_no_link_all_option="-Wl,--no-whole-archive"
@@ -224,6 +229,8 @@ AC_CACHE_CHECK([type of operating system we're going to target],
llvm_cv_target_os_type="Linux" ;;
*-*-solaris*)
llvm_cv_target_os_type="SunOS" ;;
+ *-*-auroraux*)
+ llvm_cv_target_os_type="AuroraUX" ;;
*-*-win32*)
llvm_cv_target_os_type="Win32" ;;
*-*-mingw*)