summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/toolchain/binutils/Config.in
diff options
context:
space:
mode:
authorlefranc2008-08-01 09:25:43 +0000
committerlefranc2008-08-01 09:25:43 +0000
commit9a2bcc0b92b392f1f21cd26927515e4d49bc128e (patch)
treed0bd193c764606c4c6e4b4568ef08d0ff3324b72 /cleopatre/buildroot/toolchain/binutils/Config.in
parentd0cc0304ed6eaf72116743e13e5b3b3cbfd878bb (diff)
- import of buildroot original sources (20080729 version)
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2704 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cleopatre/buildroot/toolchain/binutils/Config.in')
-rw-r--r--cleopatre/buildroot/toolchain/binutils/Config.in41
1 files changed, 41 insertions, 0 deletions
diff --git a/cleopatre/buildroot/toolchain/binutils/Config.in b/cleopatre/buildroot/toolchain/binutils/Config.in
new file mode 100644
index 0000000000..8661bd7777
--- /dev/null
+++ b/cleopatre/buildroot/toolchain/binutils/Config.in
@@ -0,0 +1,41 @@
+# Choose binutils version.
+
+comment "Binutils Options"
+
+choice
+ prompt "Binutils Version"
+ default BR2_BINUTILS_VERSION_2_18
+ help
+ Select the version of binutils you wish to use.
+
+ config BR2_BINUTILS_VERSION_2_17
+ depends on BR2_avr32 || !BR2_nios2 && BR2_DEPRECATED
+ depends on BR2_EXT_BINUTILS_VERSION_2_17
+ bool "binutils 2.17"
+
+ config BR2_BINUTILS_VERSION_2_17_50_0_17
+ depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
+ bool "binutils 2.17.50.0.17"
+
+ config BR2_BINUTILS_VERSION_2_18
+ depends on !BR2_avr32 && !BR2_nios2
+ bool "binutils 2.18"
+
+ config BR2_BINUTILS_VERSION_2_18_50_0_1
+ depends on !BR2_avr32 && !BR2_nios2
+ bool "binutils 2.18.50.0.1"
+endchoice
+
+config BR2_BINUTILS_VERSION
+ string
+ default "2.15" if BR2_nios2
+ default "2.17" if BR2_BINUTILS_VERSION_2_17
+ default "2.17.50.0.17" if BR2_BINUTILS_VERSION_2_17_50_0_17
+ default "2.18" if BR2_BINUTILS_VERSION_2_18
+ default "2.18.50.0.1" if BR2_BINUTILS_VERSION_2_18_50_0_1
+
+config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
+ string "Additional binutils options"
+ default ""
+ help
+ Any additional binutils options you may want to include.