summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-02-03 20:07:51 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-02-03 20:07:51 +0100
commit1f0f23cc01a60c446b74be39c03e5fecf9be6a2e (patch)
treeba412c0c1801a0b7415b48a6b1a5470fbf955eb3 /kconfig
parent0a59a675330a582eecb58d7cd8bd4e820f9ebe34 (diff)
downloadembtoolkit-1f0f23cc01a60c446b74be39c03e5fecf9be6a2e.tar.gz
embtoolkit-1f0f23cc01a60c446b74be39c03e5fecf9be6a2e.tar.bz2
embtoolkit-1f0f23cc01a60c446b74be39c03e5fecf9be6a2e.tar.xz
Toolchain: clang/llvm: give ability to build mips32 toolchain
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/toolchain.kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfig/toolchain.kconfig b/kconfig/toolchain.kconfig
index 911eb79..f65ee89 100644
--- a/kconfig/toolchain.kconfig
+++ b/kconfig/toolchain.kconfig
@@ -72,7 +72,7 @@ choice
config EMBTK_LLVM_ONLY_TOOLCHAIN
bool "clang/llvm only (experimental)"
- depends on EMBTK_ARCH_ARM
+ depends on EMBTK_ARCH_ARM || (EMBTK_ARCH_MIPS && EMBTK_TARGET_ARCH_32BITS)
help
Choose this configuration if you want to use only clang/llvm
cross compiler environment.
@@ -83,7 +83,7 @@ choice
config EMBTK_GCC_AND_LLVM_TOOLCHAIN
bool "clang/llvm and GCC"
- depends on EMBTK_ARCH_ARM
+ depends on EMBTK_ARCH_ARM || (EMBTK_ARCH_MIPS && EMBTK_TARGET_ARCH_32BITS)
help
With this configuration you will have full clang/llvm and GGC
built and available to build your userspace packages.