diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /toolchain/binutils/Config.in | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'toolchain/binutils/Config.in')
-rw-r--r-- | toolchain/binutils/Config.in | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/toolchain/binutils/Config.in b/toolchain/binutils/Config.in new file mode 100644 index 0000000..8c90597 --- /dev/null +++ b/toolchain/binutils/Config.in @@ -0,0 +1,47 @@ +# Choose binutils version. + +choice + prompt "Binutils Version" if TOOLCHAINOPTS + default BINUTILS_VERSION_2_20_1 if avr32 + default BINUTILS_VERSION_2_22 if !avr32 + help + Select the version of binutils you wish to use. + + config BINUTILS_VERSION_2_19_1 + bool "binutils 2.19.1" + + config BINUTILS_VERSION_2_20_1 + depends avr32 + bool "binutils 2.20.1" + + config BINUTILS_VERSION_2_21_1 + depends !avr32 || (avr32 && BROKEN) + bool "binutils 2.21.1" + + config BINUTILS_VERSION_2_22 + depends !avr32 || (avr32 && BROKEN) + bool "binutils 2.22" + + config BINUTILS_VERSION_2_23_1 + depends !avr32 || (avr32 && BROKEN) + bool "binutils 2.23.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 "2.19.1" if BINUTILS_VERSION_2_19_1 + default "2.20.1" if BINUTILS_VERSION_2_20_1 + default "2.21.1" if BINUTILS_VERSION_2_21_1 + default "2.22" if BINUTILS_VERSION_2_22 + default "2.23.1" if BINUTILS_VERSION_2_23_1 + default "2.20.1" if avr32 + default "2.22" |