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/configure | |
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/configure')
-rwxr-xr-x | llvm/projects/sample/configure | 4 |
1 files changed, 2 insertions, 2 deletions
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" ;; |