summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-12-31 17:24:30 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-12-31 17:24:30 +0100
commit3a77c2c8cb798142ee034904c016976bdaab7c2f (patch)
tree6b925d16d4abf36f0d98885876145c284d5e85b0
parentc4031259a2ba35973fc3204bb280e0a595d6fa0f (diff)
downloadembtoolkit-3a77c2c8cb798142ee034904c016976bdaab7c2f.tar.gz
embtoolkit-3a77c2c8cb798142ee034904c016976bdaab7c2f.tar.bz2
embtoolkit-3a77c2c8cb798142ee034904c016976bdaab7c2f.tar.xz
Toolchain: clang/llvm: fix kconfig entries when git is used
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
-rw-r--r--kconfig/llvm/clang-llvm.kconfig2
-rw-r--r--kconfig/llvm/clang.kconfig7
-rw-r--r--kconfig/llvm/llvm.kconfig7
3 files changed, 8 insertions, 8 deletions
diff --git a/kconfig/llvm/clang-llvm.kconfig b/kconfig/llvm/clang-llvm.kconfig
index a0bb6c3..6446aff 100644
--- a/kconfig/llvm/clang-llvm.kconfig
+++ b/kconfig/llvm/clang-llvm.kconfig
@@ -37,6 +37,8 @@ choice
select EMBTK_CLANG_VERSION_3_2
config EMBTK_CLANG_LLVM_VERSION_GIT
bool "Use clang/llvm git repository"
+ select EMBTK_LLVM_VERSION_GIT
+ select EMBTK_CLANG_VERSION_GIT
help
Answer Y here if you want to build your toolchain based on
clang/llvm sources from its GIT repository.
diff --git a/kconfig/llvm/clang.kconfig b/kconfig/llvm/clang.kconfig
index c66600f..4afb51e 100644
--- a/kconfig/llvm/clang.kconfig
+++ b/kconfig/llvm/clang.kconfig
@@ -36,8 +36,7 @@ config EMBTK_CLANG_VERSION_3_2
select EMBTK_CLANG_NEED_PATCH
config EMBTK_CLANG_VERSION_GIT
- bool "Use clang git repository"
- depends on EMBTK_CLANG_LLVM_VERSION_GIT
+ bool
help
Answer Y here if you want to build your toolchain based on
clang sources from its GIT repository.
@@ -46,14 +45,14 @@ config EMBTK_CLANG_VERSION_GIT
# GIT repository options
#
config EMBTK_CLANG_GIT_BRANCH
- string "Branch to use"
+ string "clang branch to use"
default "master"
depends on EMBTK_CLANG_VERSION_GIT
help
The branch of the git repository to use, the default is master.
config EMBTK_CLANG_GIT_REVISION
- string "Checkout a specific revision instead of the latest"
+ string "Clang specific revision to use instead of the latest"
depends on EMBTK_CLANG_VERSION_GIT
help
Chechout a specific revision instead of the latest.
diff --git a/kconfig/llvm/llvm.kconfig b/kconfig/llvm/llvm.kconfig
index b937746..4d29c4f 100644
--- a/kconfig/llvm/llvm.kconfig
+++ b/kconfig/llvm/llvm.kconfig
@@ -35,8 +35,7 @@ config EMBTK_LLVM_VERSION_3_2
select EMBTK_LLVM_NEED_PATCH
config EMBTK_LLVM_VERSION_GIT
- bool "Use llvm git repository"
- depends on EMBTK_CLANG_LLVM_VERSION_GIT
+ bool
help
Answer Y here if you want to build your toolchain based on
llvm sources from its GIT repository.
@@ -45,14 +44,14 @@ config EMBTK_LLVM_VERSION_GIT
# GIT repository options
#
config EMBTK_LLVM_GIT_BRANCH
- string "Branch to use"
+ string "llvm branch to use"
default "master"
depends on EMBTK_LLVM_VERSION_GIT
help
The branch of the git repository to use, the default is master.
config EMBTK_LLVM_GIT_REVISION
- string "Checkout a specific revision instead of the latest"
+ string "llvm specific revision to use instead of the latest"
depends on EMBTK_LLVM_VERSION_GIT
help
Chechout a specific revision instead of the latest.