diff options
author | Simon Atanasyan <satanasyan@mips.com> | 2012-10-29 19:49:45 +0000 |
---|---|---|
committer | Simon Atanasyan <satanasyan@mips.com> | 2012-10-29 19:49:45 +0000 |
commit | c2cccd795f304f582d9146008f48e736262eac15 (patch) | |
tree | 6d63063827d45014d489c4ba49030ffc49be5fae /llvm/projects/sample | |
parent | 740981e35c47b6e588764c3f89d3ae9fafc1d5b8 (diff) | |
download | bcm5719-llvm-c2cccd795f304f582d9146008f48e736262eac15.tar.gz bcm5719-llvm-c2cccd795f304f582d9146008f48e736262eac15.zip |
Add mips64-* and mips64el-* triples to configure scripts
as valid triples denote Mips target.
llvm-svn: 166961
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/autoconf/configure.ac | 4 | ||||
-rwxr-xr-x | llvm/projects/sample/configure | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/projects/sample/autoconf/configure.ac b/llvm/projects/sample/autoconf/configure.ac index bd0b16a4a69..8012c23412d 100644 --- a/llvm/projects/sample/autoconf/configure.ac +++ b/llvm/projects/sample/autoconf/configure.ac @@ -304,8 +304,8 @@ AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch], sparc*-*) llvm_cv_target_arch="Sparc" ;; powerpc*-*) llvm_cv_target_arch="PowerPC" ;; arm*-*) llvm_cv_target_arch="ARM" ;; - mips-*) llvm_cv_target_arch="Mips" ;; - mipsel-*) llvm_cv_target_arch="Mips" ;; + mips-* | mips64-*) llvm_cv_target_arch="Mips" ;; + mipsel-* | mips64el-*) llvm_cv_target_arch="Mips" ;; xcore-*) llvm_cv_target_arch="XCore" ;; msp430-*) llvm_cv_target_arch="MSP430" ;; hexagon-*) llvm_cv_target_arch="Hexagon" ;; diff --git a/llvm/projects/sample/configure b/llvm/projects/sample/configure index df08c7c4e04..cfbb6c69224 100755 --- a/llvm/projects/sample/configure +++ b/llvm/projects/sample/configure @@ -3840,8 +3840,8 @@ else sparc*-*) llvm_cv_target_arch="Sparc" ;; powerpc*-*) llvm_cv_target_arch="PowerPC" ;; arm*-*) llvm_cv_target_arch="ARM" ;; - mips-*) llvm_cv_target_arch="Mips" ;; - mipsel-*) llvm_cv_target_arch="Mips" ;; + mips-* | mips64-*) llvm_cv_target_arch="Mips" ;; + mipsel-* | mips64el-*) llvm_cv_target_arch="Mips" ;; xcore-*) llvm_cv_target_arch="XCore" ;; msp430-*) llvm_cv_target_arch="MSP430" ;; hexagon-*) llvm_cv_target_arch="Hexagon" ;; |