diff options
author | Stephen Hines <srhines@google.com> | 2013-03-05 23:29:52 -0800 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2013-03-05 23:32:50 -0800 |
commit | 2123c1c0de9e6006dfffe9123b4b992703202e3e (patch) | |
tree | 581fcb48ae61d4b4b51aea677ba7227c67d0ef7d /include/llvm/Config/llvm-platform-config.h | |
parent | 5adb136be579e8fff3734461580cb34d1d2983b8 (diff) | |
download | external_llvm-2123c1c0de9e6006dfffe9123b4b992703202e3e.zip external_llvm-2123c1c0de9e6006dfffe9123b4b992703202e3e.tar.gz external_llvm-2123c1c0de9e6006dfffe9123b4b992703202e3e.tar.bz2 |
Update build rules for LLVM merge to version 176139.
Change-Id: Ibb71ad9a6a2ed05dbf87f249ac42b1355e3fa41a
Diffstat (limited to 'include/llvm/Config/llvm-platform-config.h')
-rw-r--r-- | include/llvm/Config/llvm-platform-config.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/Config/llvm-platform-config.h b/include/llvm/Config/llvm-platform-config.h index 8f4f19f..fb1b08f 100644 --- a/include/llvm/Config/llvm-platform-config.h +++ b/include/llvm/Config/llvm-platform-config.h @@ -14,6 +14,9 @@ /* LLVM architecture name for the native architecture, if available */ #define LLVM_NATIVE_ARCH X86 +/* Host triple LLVM will be executed on */ +#define LLVM_HOSTTRIPLE "i686-unknown-linux-gnu" + /* LLVM name for the native AsmParser init function, if available */ #define LLVM_NATIVE_ASMPARSER LLVMInitializeX86AsmParser @@ -38,6 +41,9 @@ /* LLVM architecture name for the native architecture, if available */ #define LLVM_NATIVE_ARCH ARM +/* Host triple LLVM will be executed on */ +#define LLVM_HOSTTRIPLE "arm-unknown-linux-gnu" + /* LLVM name for the native AsmParser init function, if available */ #define LLVM_NATIVE_ASMPARSER LLVMInitializeARMAsmParser @@ -62,6 +68,9 @@ /* LLVM architecture name for the native architecture, if available */ #define LLVM_NATIVE_ARCH Mips +/* Host triple LLVM will be executed on */ +#define LLVM_HOSTTRIPLE "mipsel-unknown-linux-gnu" + /* LLVM name for the native AsmParser init function, if available */ #define LLVM_NATIVE_ASMPARSER LLVMInitializeMipsAsmParser |