diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2008-05-13 17:37:32 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2008-05-13 17:37:32 +0000 |
commit | 0234f51ff9c6e90e9e7f8e108a0fc6eff63634a6 (patch) | |
tree | 8a667b00eb7acb720198b75a4dda859b8576dc24 | |
parent | 11b6793ededa9692d4d36211b1a35fcad81858f4 (diff) | |
download | external_llvm-0234f51ff9c6e90e9e7f8e108a0fc6eff63634a6.zip external_llvm-0234f51ff9c6e90e9e7f8e108a0fc6eff63634a6.tar.gz external_llvm-0234f51ff9c6e90e9e7f8e108a0fc6eff63634a6.tar.bz2 |
Added configure switches for PIC16 backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51056 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | configure | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2375,6 +2375,7 @@ else ia64-*) llvm_cv_target_arch="IA64" ;; arm-*) llvm_cv_target_arch="ARM" ;; mips-*) llvm_cv_target_arch="Mips" ;; + pic16-*) llvm_cv_target_arch="PIC16" ;; *) llvm_cv_target_arch="Unknown" ;; esac fi @@ -4662,6 +4663,8 @@ else ;; Mips) TARGET_HAS_JIT=0 ;; + PIC16) TARGET_HAS_JIT=0 + ;; *) TARGET_HAS_JIT=0 ;; esac @@ -4743,7 +4746,7 @@ else fi case "$enableval" in - all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU CBackend MSIL CppBackend" ;; + all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU CBackend MSIL CppBackend PIC16" ;; host-only) case "$llvm_cv_target_arch" in x86) TARGETS_TO_BUILD="X86" ;; @@ -4754,6 +4757,7 @@ case "$enableval" in IA64) TARGETS_TO_BUILD="IA64" ;; ARM) TARGETS_TO_BUILD="ARM" ;; Mips) TARGETS_TO_BUILD="Mips" ;; + PIC16) TARGETS_TO_BUILD="PIC16" ;; CellSPU|SPU) TARGETS_TO_BUILD="CellSPU" ;; *) { { echo "$as_me:$LINENO: error: Can not set target to build" >&5 echo "$as_me: error: Can not set target to build" >&2;} @@ -4770,6 +4774,7 @@ echo "$as_me: error: Can not set target to build" >&2;} ia64) TARGETS_TO_BUILD="IA64 $TARGETS_TO_BUILD" ;; arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;; mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; + pic16) TARGETS_TO_BUILD="PIC16 $TARGETS_TO_BUILD" ;; spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;; cbe) TARGETS_TO_BUILD="CBackend $TARGETS_TO_BUILD" ;; msil) TARGETS_TO_BUILD="MSIL $TARGETS_TO_BUILD" ;; |