aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/binutils/Config.in
diff options
context:
space:
mode:
authorJames <>2015-11-04 11:49:21 +0000
committerJames <>2015-11-04 11:49:21 +0000
commit716ca530e1c4515d8683c9d5be3d56b301758b66 (patch)
tree700eb5bcc1a462a5f21dcec15ce7c97ecfefa772 /toolchain/binutils/Config.in
downloadtrunk-47381-716ca530e1c4515d8683c9d5be3d56b301758b66.tar.gz
trunk-47381-716ca530e1c4515d8683c9d5be3d56b301758b66.tar.bz2
trunk-47381-716ca530e1c4515d8683c9d5be3d56b301758b66.zip
trunk-47381HEADmaster
Diffstat (limited to 'toolchain/binutils/Config.in')
-rw-r--r--toolchain/binutils/Config.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/toolchain/binutils/Config.in b/toolchain/binutils/Config.in
new file mode 100644
index 0000000..27b2ffa
--- /dev/null
+++ b/toolchain/binutils/Config.in
@@ -0,0 +1,29 @@
+# Choose binutils version.
+
+choice
+ prompt "Binutils Version" if TOOLCHAINOPTS
+ default BINUTILS_VERSION_LINARO
+ help
+ Select the version of binutils you wish to use.
+
+ config BINUTILS_VERSION_LINARO
+ bool "Linaro binutils 2.24"
+
+ config BINUTILS_VERSION_2_25_1
+ bool "Binutils 2.25.1"
+
+endchoice
+
+config EXTRA_BINUTILS_CONFIG_OPTIONS
+ string
+ prompt "Additional binutils configure options" if TOOLCHAINOPTS
+ default ""
+ help
+ Any additional binutils options you may want to include....
+
+config BINUTILS_VERSION
+ string
+ prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
+ default "linaro" if BINUTILS_VERSION_LINARO
+ default "2.25.1" if BINUTILS_VERSION_2_25_1
+ default "linaro"