Bernhard Reutner-Fischer | 4b0d5a8 | 2007-09-26 21:12:38 +0000 | [diff] [blame] | 1 | if BR2_TOOLCHAIN_EXTERNAL |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 2 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 3 | choice |
| 4 | prompt "Toolchain" |
| 5 | |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 6 | comment "(e)glibc toolchains only available with shared lib support" |
| 7 | depends on BR2_PREFER_STATIC_LIB |
| 8 | |
Thomas Petazzoni | be2abf2 | 2014-06-01 12:47:40 +0200 | [diff] [blame] | 9 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_ARM |
Thomas Petazzoni | 28bca1c | 2014-11-10 11:06:31 +0100 | [diff] [blame] | 10 | bool "Linaro ARM 2014.09" |
Thomas Petazzoni | 34562ee | 2013-12-27 12:32:19 +0100 | [diff] [blame] | 11 | depends on BR2_arm |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 12 | depends on BR2_ARM_CPU_ARMV7A |
Thomas Petazzoni | 34562ee | 2013-12-27 12:32:19 +0100 | [diff] [blame] | 13 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 14 | depends on BR2_ARM_EABIHF |
| 15 | depends on !BR2_PREFER_STATIC_LIB |
| 16 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 17 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 18 | select BR2_INSTALL_LIBSTDCPP |
| 19 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 20 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1 |
Thomas Petazzoni | 34562ee | 2013-12-27 12:32:19 +0100 | [diff] [blame] | 21 | help |
| 22 | Linaro toolchain for the ARM architecture. It uses Linaro |
Thomas Petazzoni | 28bca1c | 2014-11-10 11:06:31 +0100 | [diff] [blame] | 23 | GCC 2014.09 (based on gcc 4.9), Linaro GDB 2013.10 (based on |
| 24 | GDB 7.6), eglibc 2.19, Binutils 2014.09 (based on 2.24). It |
Thomas Petazzoni | 34562ee | 2013-12-27 12:32:19 +0100 | [diff] [blame] | 25 | generates code that runs on all Cortex-A profile devices, |
| 26 | but tuned for the Cortex-A9. The code generated is Thumb 2, |
| 27 | with the hard floating point calling convention, and uses |
| 28 | the VFPv3-D16 FPU instructions. |
| 29 | |
Thomas Petazzoni | 1e0b97d | 2013-10-29 21:54:01 +0100 | [diff] [blame] | 30 | comment "Linaro toolchains available for Cortex-A + EABIhf" |
Thomas Petazzoni | 90f763c | 2012-11-27 04:07:03 +0000 | [diff] [blame] | 31 | depends on BR2_arm |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 32 | depends on !BR2_ARM_CPU_ARMV7A || !BR2_ARM_EABIHF |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 33 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 90f763c | 2012-11-27 04:07:03 +0000 | [diff] [blame] | 34 | |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 35 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB |
Thomas Petazzoni | 28bca1c | 2014-11-10 11:06:31 +0100 | [diff] [blame] | 36 | bool "Linaro armeb 2014.09" |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 37 | depends on BR2_armeb |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 38 | depends on BR2_ARM_CPU_ARMV7A |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 39 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 40 | depends on BR2_ARM_EABIHF |
| 41 | depends on !BR2_PREFER_STATIC_LIB |
| 42 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 43 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 44 | select BR2_INSTALL_LIBSTDCPP |
| 45 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 46 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1 |
| 47 | help |
| 48 | Linaro toolchain for the ARM big endian architecture. It |
Thomas Petazzoni | 28bca1c | 2014-11-10 11:06:31 +0100 | [diff] [blame] | 49 | uses Linaro GCC 2014.09 (based on gcc 4.9), Linaro GDB |
| 50 | 2013.10 (based on GDB 7.6), eglibc 2.19, Binutils 2014.09 |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 51 | (based on 2.24). It generates code that runs on all Cortex-A |
| 52 | profile devices, but tuned for the Cortex-A9. The code |
| 53 | generated is Thumb 2, with the hard floating point calling |
| 54 | convention, and uses the VFPv3-D16 FPU instructions. |
| 55 | |
| 56 | comment "Linaro toolchains available for Cortex-A + EABIhf" |
| 57 | depends on BR2_armeb |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 58 | depends on !BR2_ARM_CPU_ARMV7A || !BR2_ARM_EABIHF |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 59 | depends on !BR2_PREFER_STATIC_LIB |
| 60 | |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 61 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201405 |
| 62 | bool "Sourcery CodeBench ARM 2014.05" |
| 63 | depends on BR2_arm |
| 64 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 65 | depends on BR2_ARM_EABI |
| 66 | depends on !BR2_PREFER_STATIC_LIB |
| 67 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 68 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 69 | select BR2_INSTALL_LIBSTDCPP |
| 70 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 71 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
| 72 | help |
| 73 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 74 | Mentor Graphics. It uses gcc 4.8.3, binutils 2.24.51, glibc |
| 75 | 2.18 and gdb 7.7.50, kernel headers 3.13. It has support |
| 76 | for the following variants: |
| 77 | - ARMv5TE, little endian, soft-float, glibc |
| 78 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 79 | Select BR2_SOFT_FLOAT |
| 80 | - ARMv4T, little endian, soft-float, glibc |
| 81 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 82 | Select BR2_SOFT_FLOAT |
| 83 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 84 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 85 | Select BR2_SOFT_FLOAT |
| 86 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 87 | |
Thomas Petazzoni | c525231 | 2013-12-27 12:32:17 +0100 | [diff] [blame] | 88 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201311 |
| 89 | bool "Sourcery CodeBench ARM 2013.11" |
| 90 | depends on BR2_arm |
| 91 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 92 | depends on BR2_ARM_EABI |
| 93 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | be4f30a | 2014-04-13 21:58:57 +0200 | [diff] [blame] | 94 | select BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # based-on gcc-4.8.1 |
Samuel Martin | a1a86eb | 2014-03-08 15:38:31 +0100 | [diff] [blame] | 95 | select BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # based-on gcc-4.8.1 |
Thomas Petazzoni | c525231 | 2013-12-27 12:32:17 +0100 | [diff] [blame] | 96 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 97 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 98 | select BR2_INSTALL_LIBSTDCPP |
| 99 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 100 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 |
Thomas Petazzoni | c525231 | 2013-12-27 12:32:17 +0100 | [diff] [blame] | 101 | help |
| 102 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 103 | Mentor Graphics. It uses gcc 4.8.1, binutils 2.23.52, glibc |
| 104 | 2.18 and gdb 7.6.50, kernel headers 3.11. It has support |
| 105 | for the following variants: |
| 106 | - ARMv5TE, little endian, soft-float, glibc |
| 107 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 108 | Select BR2_SOFT_FLOAT |
| 109 | - ARMv4T, little endian, soft-float, glibc |
| 110 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 111 | Select BR2_SOFT_FLOAT |
| 112 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 113 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 114 | Select BR2_SOFT_FLOAT |
| 115 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 116 | |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 117 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201305 |
| 118 | bool "Sourcery CodeBench ARM 2013.05" |
| 119 | depends on BR2_arm |
| 120 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 121 | depends on BR2_ARM_EABI |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 122 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 85082ca | 2014-05-12 23:10:35 +0200 | [diff] [blame] | 123 | select BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # based-on gcc-4.7.3 |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 124 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 125 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 126 | select BR2_INSTALL_LIBSTDCPP |
| 127 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 128 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8 |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 129 | help |
| 130 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 131 | Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, glibc |
| 132 | 2.17 and gdb 7.4.50, kernel headers 3.8.2. It has support |
| 133 | for the following variants: |
| 134 | - ARMv5TE, little endian, soft-float, glibc |
| 135 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 136 | Select BR2_SOFT_FLOAT |
| 137 | - ARMv4T, little endian, soft-float, glibc |
| 138 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 139 | Select BR2_SOFT_FLOAT |
| 140 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 141 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 142 | Select BR2_SOFT_FLOAT |
| 143 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 144 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 145 | comment "Sourcery CodeBench toolchains available for the EABI ABI" |
| 146 | depends on BR2_arm |
| 147 | depends on !BR2_ARM_EABI |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 148 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 149 | |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 150 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A_201109 |
| 151 | bool "Arago ARMv7 2011.09" |
| 152 | depends on BR2_arm |
| 153 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 154 | depends on BR2_ARM_CPU_ARMV7A |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 155 | depends on BR2_ARM_EABI |
| 156 | depends on BR2_ARM_CPU_HAS_VFPV3 || BR2_ARM_CPU_MAYBE_HAS_VFPV3 |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 157 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 158 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 159 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 160 | select BR2_INSTALL_LIBSTDCPP |
| 161 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 162 | # kernel headers: 2.6.31 |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 163 | help |
| 164 | Texas Instruments Arago 2011.09 toolchain, with gcc 4.5.3, |
| 165 | binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 166 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 167 | This toolchain uses -mfloat-abi=softfp (i.e can use FPU |
| 168 | instructions, but passes floating point function arguments |
| 169 | in integer registers), and requires a VFPv3 floating point |
| 170 | unit to work properly. This unit is available on most |
| 171 | Cortex-A ARM processors, but not all. |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 172 | |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 173 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE_201109 |
| 174 | bool "Arago ARMv5 2011.09" |
| 175 | depends on BR2_arm |
| 176 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 177 | depends on !BR2_ARM_CPU_ARMV4 |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 178 | depends on BR2_ARM_EABI |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 179 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 180 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 181 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 182 | select BR2_INSTALL_LIBSTDCPP |
| 183 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 184 | # kernel headers: 2.6.31 |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 185 | help |
| 186 | Texas Instruments Arago ARMv5 2011.09 toolchain, with gcc |
| 187 | 4.5.3, binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 188 | |
| 189 | This toolchain uses software-floating point. |
| 190 | |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 191 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201405 |
| 192 | bool "Sourcery CodeBench MIPS 2014.05" |
| 193 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 194 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 195 | depends on !BR2_MIPS_NABI32 |
| 196 | depends on !BR2_PREFER_STATIC_LIB |
| 197 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 198 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 199 | select BR2_INSTALL_LIBSTDCPP |
| 200 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 201 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
| 202 | help |
| 203 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 204 | Mentor Graphics. It uses gcc 4.8.3, binutils 2.24.51, glibc |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 205 | 2.18, uClibc 0.9.30 and gdb 7.7.50, kernel headers 3.13. It |
| 206 | has support for the following variants: |
| 207 | - MIPS32r2 - Big-Endian, 2008 NaN, O32 |
| 208 | Select MIPS (big endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 209 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 210 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 211 | - MIPS32r2 - Big-Endian, O32 |
| 212 | Select MIPS (big endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 213 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 214 | - MIPS32r2 - Big-Endian, O32, MIPS16 |
| 215 | Select MIPS (big endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 216 | Disable BR2_SOFT_FLOAT |
| 217 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 218 | - MIPS32r2 - Big-Endian, Soft-Float, O32 |
| 219 | Select MIPS (big endian) core |
| 220 | Select BR2_SOFT_FLOAT |
| 221 | - MIPS32r2 - Big-Endian, Soft-Float, O32, MIPS16 |
| 222 | Select MIPS (big endian) core |
| 223 | Select BR2_SOFT_FLOAT |
| 224 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 225 | - MIPS32r2 - Little-Endian, 2008 NaN, O32 |
| 226 | Select MIPS (little endian) core |
| 227 | Disable BR2_SOFT_FLOAT |
| 228 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 229 | - MIPS32r2 - Little-Endian, O32 |
| 230 | Select MIPS (little endian) core |
| 231 | Disable BR2_SOFT_FLOAT |
| 232 | - MIPS32r2 - Little-Endian, O32, MIPS16 |
| 233 | Select MIPS (little endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 234 | Disable BR2_SOFT_FLOAT |
| 235 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 236 | - MIPS32r2 - Little-Endian, Soft-Float, O32 |
| 237 | Select MIPS (little endian) core |
| 238 | Select BR2_SOFT_FLOAT |
| 239 | - MIPS32r2 - Little-Endian, Soft-Float, O32, MIPS16 |
| 240 | Select MIPS (little endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 241 | Select BR2_SOFT_FLOAT |
| 242 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 243 | - MIPS32r2 - Little-Endian, Soft-Float, O32, microMIPS |
| 244 | Select MIPS (little endian) core |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 245 | Select BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 246 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 247 | - MIPS32r2 - uClibc, Big-Endian, 2008 NaN, O32 |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 248 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 249 | - MIPS32r2 - uClibc, Big-Endian, O32 |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 250 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 251 | - MIPS32r2 - uClibc, Big-Endian, Soft-Float, O32 |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 252 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 253 | - MIPS32r2 - uClibc, Little-Endian, 2008 NaN, O32 |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 254 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 255 | - MIPS32r2 - uClibc, Little-Endian, O32 |
| 256 | Not usable in Buildroot yet. |
| 257 | - MIPS32r2 - uClibc, Little-Endian, Soft-Float, O32 |
| 258 | Not usable in Buildroot yet. |
| 259 | - MIPS64r2 - Big-Endian, N64 |
| 260 | Select MIPS64 (big endian) core |
| 261 | Select the n64 ABI |
| 262 | Disable BR2_SOFT_FLOAT |
| 263 | - MIPS64r2 - Big-Endian, Soft-Float, N64 |
| 264 | Select MIPS64 (big endian) core |
| 265 | Select the n64 ABI |
| 266 | Select BR2_SOFT_FLOAT |
| 267 | - MIPS64r2 - Little-Endian, N64 |
| 268 | Select MIPS64 (little endian) core |
| 269 | Select the n64 ABI |
| 270 | Disable BR2_SOFT_FLOAT |
| 271 | - MIPS64r2 - Little-Endian, Soft-Float, N64 |
| 272 | Select MIPS64 (little endian) core |
| 273 | Select the n64 ABI |
| 274 | Select BR2_SOFT_FLOAT |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 275 | |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 276 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201311 |
| 277 | bool "Sourcery CodeBench MIPS 2013.11" |
| 278 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 279 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 280 | depends on !BR2_MIPS_NABI32 |
| 281 | depends on !BR2_PREFER_STATIC_LIB |
| 282 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 283 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 284 | select BR2_INSTALL_LIBSTDCPP |
| 285 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 286 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 287 | help |
| 288 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 289 | Mentor Graphics. It uses gcc 4.8.1, binutils 2.23.52, glibc |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 290 | 2.18, uClibc 0.9.30 and gdb 7.6.50, kernel headers 3.11. It |
| 291 | has support for the following variants: |
| 292 | - MIPS32r2 - Big-Endian, 2008 NaN, O32 |
| 293 | Select MIPS (big endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 294 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 295 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 296 | - MIPS32r2 - Big-Endian, O32 |
| 297 | Select MIPS (big endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 298 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 299 | - MIPS32r2 - Big-Endian, O32, MIPS16 |
| 300 | Select MIPS (big endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 301 | Disable BR2_SOFT_FLOAT |
| 302 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 303 | - MIPS32r2 - Big-Endian, Soft-Float, O32 |
| 304 | Select MIPS (big endian) core |
| 305 | Select BR2_SOFT_FLOAT |
| 306 | - MIPS32r2 - Big-Endian, Soft-Float, O32, MIPS16 |
| 307 | Select MIPS (big endian) core |
| 308 | Select BR2_SOFT_FLOAT |
| 309 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 310 | - MIPS32r2 - Little-Endian, 2008 NaN, O32 |
| 311 | Select MIPS (little endian) core |
| 312 | Disable BR2_SOFT_FLOAT |
| 313 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 314 | - MIPS32r2 - Little-Endian, O32 |
| 315 | Select MIPS (little endian) core |
| 316 | Disable BR2_SOFT_FLOAT |
| 317 | - MIPS32r2 - Little-Endian, O32, MIPS16 |
| 318 | Select MIPS (little endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 319 | Disable BR2_SOFT_FLOAT |
| 320 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 321 | - MIPS32r2 - Little-Endian, Soft-Float, O32 |
| 322 | Select MIPS (little endian) core |
| 323 | Select BR2_SOFT_FLOAT |
| 324 | - MIPS32r2 - Little-Endian, Soft-Float, O32, MIPS16 |
| 325 | Select MIPS (little endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 326 | Select BR2_SOFT_FLOAT |
| 327 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 328 | - MIPS32r2 - Little-Endian, Soft-Float, O32, microMIPS |
| 329 | Select MIPS (little endian) core |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 330 | Select BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 331 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 332 | - MIPS32r2 - uClibc, Big-Endian, 2008 NaN, O32 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 333 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 334 | - MIPS32r2 - uClibc, Big-Endian, O32 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 335 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 336 | - MIPS32r2 - uClibc, Big-Endian, Soft-Float, O32 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 337 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 338 | - MIPS32r2 - uClibc, Little-Endian, 2008 NaN, O32 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 339 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 340 | - MIPS32r2 - uClibc, Little-Endian, O32 |
| 341 | Not usable in Buildroot yet. |
| 342 | - MIPS32r2 - uClibc, Little-Endian, Soft-Float, O32 |
| 343 | Not usable in Buildroot yet. |
| 344 | - MIPS64r2 - Big-Endian, N64 |
| 345 | Select MIPS64 (big endian) core |
| 346 | Select the n64 ABI |
| 347 | Disable BR2_SOFT_FLOAT |
| 348 | - MIPS64r2 - Big-Endian, Soft-Float, N64 |
| 349 | Select MIPS64 (big endian) core |
| 350 | Select the n64 ABI |
| 351 | Select BR2_SOFT_FLOAT |
| 352 | - MIPS64r2 - Little-Endian, N64 |
| 353 | Select MIPS64 (little endian) core |
| 354 | Select the n64 ABI |
| 355 | Disable BR2_SOFT_FLOAT |
| 356 | - MIPS64r2 - Little-Endian, Soft-Float, N64 |
| 357 | Select MIPS64 (little endian) core |
| 358 | Select the n64 ABI |
| 359 | Select BR2_SOFT_FLOAT |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 360 | |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 361 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201305 |
| 362 | bool "Sourcery CodeBench MIPS 2013.05" |
| 363 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 364 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 365 | depends on !BR2_MIPS_NABI32 |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 366 | depends on !BR2_PREFER_STATIC_LIB |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 367 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 368 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 369 | select BR2_INSTALL_LIBSTDCPP |
| 370 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 371 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 372 | help |
| 373 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 374 | Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, glibc |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 375 | 2.17, uClibc 0.9.30 and gdb 7.4.50, kernel headers 3.8.2. It |
| 376 | has support for the following variants: |
| 377 | - MIPS32r2 - Big-Endian, 2008 NaN, O32 |
| 378 | Select MIPS (big endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 379 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 380 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 381 | - MIPS32r2 - Big-Endian, 2008 NaN, O32, MIPS16 |
| 382 | Select MIPS (big endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 383 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 384 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 -mips16 |
| 385 | - MIPS32r2 - Big-Endian, O32 |
| 386 | Select MIPS (big endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 387 | Disable BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 388 | - MIPS32r2 - Big-Endian, O32, MIPS16 |
| 389 | Select MIPS (big endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 390 | Disable BR2_SOFT_FLOAT |
| 391 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 392 | - MIPS32r2 - Big-Endian, O32, microMIPS |
| 393 | Select MIPS (big endian) core |
| 394 | Disable BR2_SOFT_FLOAT |
| 395 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 396 | - MIPS32r2 - Big-Endian, Soft-Float, O32 |
| 397 | Select MIPS (big endian) core |
| 398 | Select BR2_SOFT_FLOAT |
| 399 | - MIPS32r2 - Big-Endian, Soft-Float, O32, MIPS16 |
| 400 | Select MIPS (big endian) core |
| 401 | Select BR2_SOFT_FLOAT |
| 402 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 403 | - MIPS32r2 - Big-Endian, Soft-Float, O32, microMIPS |
| 404 | Select MIPS (big endian) core |
| 405 | Select BR2_SOFT_FLOAT |
| 406 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 407 | - MIPS32r2 - Little-Endian, 2008 NaN, O32 |
| 408 | Select MIPS (little endian) core |
| 409 | Disable BR2_SOFT_FLOAT |
| 410 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 411 | - MIPS32r2 - Little-Endian, 2008 NaN, O32, MIPS16 |
| 412 | Select MIPS (little endian) core |
| 413 | Disable BR2_SOFT_FLOAT |
| 414 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 -mips16 |
| 415 | - MIPS32r2 - Little-Endian, O32 |
| 416 | Select MIPS (little endian) core |
| 417 | Disable BR2_SOFT_FLOAT |
| 418 | - MIPS32r2 - Little-Endian, O32, MIPS16 |
| 419 | Select MIPS (little endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 420 | Disable BR2_SOFT_FLOAT |
Markos Chandras | f3a2b80 | 2013-10-14 10:52:25 +0100 | [diff] [blame] | 421 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 422 | - MIPS32r2 - Little-Endian, O32, microMIPS |
| 423 | Select MIPS (little endian) core |
| 424 | Disable BR2_SOFT_FLOAT |
| 425 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 426 | - MIPS32r2 - Little-Endian, Soft-Float, O32 |
| 427 | Select MIPS (little endian) core |
| 428 | Select BR2_SOFT_FLOAT |
| 429 | - MIPS32r2 - Little-Endian, Soft-Float, O32, MIPS16 |
| 430 | Select MIPS (little endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 431 | Select BR2_SOFT_FLOAT |
| 432 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 433 | - MIPS32r2 - Little-Endian, Soft-Float, O32, microMIPS |
| 434 | Select MIPS (little endian) core |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 435 | Select BR2_SOFT_FLOAT |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 436 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 437 | - MIPS32r2 - uClibc, Big-Endian, 2008 NaN, O32 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 438 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 439 | - MIPS32r2 - uClibc, Big-Endian, O32 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 440 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 441 | - MIPS32r2 - uClibc, Big-Endian, Soft-Float, O32 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 442 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 443 | - MIPS32r2 - uClibc, Little-Endian, 2008 NaN, O32 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 444 | Not usable in Buildroot yet. |
Vicente Olivert Riera | 68218a7 | 2014-12-03 16:52:24 +0000 | [diff] [blame^] | 445 | - MIPS32r2 - uClibc, Little-Endian, O32 |
| 446 | Not usable in Buildroot yet. |
| 447 | - MIPS32r2 - uClibc, Little-Endian, Soft-Float, O32 |
| 448 | Not usable in Buildroot yet. |
| 449 | - MIPS64r2 - Big-Endian, N64 |
| 450 | Select MIPS64 (big endian) core |
| 451 | Select the n64 ABI |
| 452 | Disable BR2_SOFT_FLOAT |
| 453 | - MIPS64r2 - Big-Endian, Soft-Float, N64 |
| 454 | Select MIPS64 (big endian) core |
| 455 | Select the n64 ABI |
| 456 | Select BR2_SOFT_FLOAT |
| 457 | - MIPS64r2 - Little-Endian, N64 |
| 458 | Select MIPS64 (little endian) core |
| 459 | Select the n64 ABI |
| 460 | Disable BR2_SOFT_FLOAT |
| 461 | - MIPS64r2 - Little-Endian, Soft-Float, N64 |
| 462 | Select MIPS64 (little endian) core |
| 463 | Select the n64 ABI |
| 464 | Select BR2_SOFT_FLOAT |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 465 | |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 466 | comment "Sourcery CodeBench toolchains are only available for MIPS/MIPS64 o32 and n64" |
| 467 | depends on BR2_MIPS_NABI32 |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 468 | depends on !BR2_PREFER_STATIC_LIB |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 469 | |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 470 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 |
| 471 | bool "Sourcery CodeBench Nios-II 2014.05" |
| 472 | depends on BR2_nios2 |
| 473 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 474 | depends on !BR2_PREFER_STATIC_LIB |
| 475 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 476 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 477 | select BR2_INSTALL_LIBSTDCPP |
| 478 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 479 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 |
| 480 | help |
| 481 | Sourcery CodeBench toolchain for the Nios-II architecture, |
| 482 | from Mentor Graphics. It uses gcc 4.8.3, binutils 2.24.51, |
| 483 | glibc 2.19.90, gdb 7.7.50 and kernel headers 3.12. |
| 484 | |
Ezequiel Garcia | d1de1c0 | 2013-08-29 19:10:41 -0300 | [diff] [blame] | 485 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 |
| 486 | bool "Sourcery CodeBench Nios-II 2013.05" |
| 487 | depends on BR2_nios2 |
| 488 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 489 | depends on !BR2_PREFER_STATIC_LIB |
Ezequiel Garcia | d1de1c0 | 2013-08-29 19:10:41 -0300 | [diff] [blame] | 490 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 491 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 492 | select BR2_INSTALL_LIBSTDCPP |
| 493 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 494 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 |
Ezequiel Garcia | d1de1c0 | 2013-08-29 19:10:41 -0300 | [diff] [blame] | 495 | help |
| 496 | Sourcery CodeBench toolchain for the Nios-II architecture, |
| 497 | from Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, |
| 498 | glibc 2.17, gdb 7.4.50 and kernel headers 3.7.0. |
| 499 | |
Thomas Petazzoni | 20d4ba9 | 2014-06-01 12:47:47 +0200 | [diff] [blame] | 500 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201203 |
| 501 | bool "Sourcery CodeBench PowerPC 2012.03" |
| 502 | depends on BR2_powerpc |
| 503 | depends on BR2_powerpc_SPE |
| 504 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 505 | depends on !BR2_PREFER_STATIC_LIB |
| 506 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 507 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 508 | select BR2_INSTALL_LIBSTDCPP |
| 509 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 510 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 |
| 511 | help |
| 512 | Sourcery CodeBench toolchain for the PowerPC architecture, |
| 513 | from Mentor Graphics. It uses gcc 4.6.3, binutils 2.21.53, |
| 514 | glibc 2.15, gdb 7.2.50 and kernel headers 3.2.10. It has |
| 515 | support for the following variants: |
| 516 | - e500v2 glibc, SPE, 32 bits |
| 517 | |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 518 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 |
| 519 | bool "Sourcery CodeBench PowerPC 2011.03" |
| 520 | depends on BR2_powerpc |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 521 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 522 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 523 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 524 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 525 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 526 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 527 | # kernel headers: 2.6.38 |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 528 | help |
| 529 | Sourcery CodeBench toolchain for the PowerPC architecture, |
| 530 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20.51, |
| 531 | glibc 2.13, gdb 7.2.50 and kernel headers 2.6.38. It has |
| 532 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 533 | - 603 glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 534 | Select a generic PowerPC core |
| 535 | Disable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 536 | - 603 soft float glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 537 | Select a generic PowerPC core |
| 538 | Enable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 539 | - e600 altivec glibc, 32 bits |
| 540 | Set BR2_TARGET_OPTIMIZATION to -te600 |
| 541 | - e500v1 glibc, 32 bits |
| 542 | Set BR2_TARGET_OPTIMIZATION to -te500v1 |
| 543 | - e500v2 glibc, 32 bits |
| 544 | Set BR2_TARGET_OPTIMIZATION to -te500v2 |
| 545 | - e500mc glibc, 32 bits |
| 546 | Set BR2_TARGET_OPTIMIZATION to -te500mc |
| 547 | - 970 glibc hard-float, 64 bits |
| 548 | Set BR2_TARGET_OPTIMIZATION to -m64 |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 549 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 550 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 551 | bool "Sourcery CodeBench PowerPC 2010.09" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 552 | depends on BR2_powerpc |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 553 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 554 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 555 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 556 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 6b578c8 | 2010-12-13 17:27:41 +0100 | [diff] [blame] | 557 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 558 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 559 | # kernel headers: 2.6.35 |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 560 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 561 | Sourcery CodeBench toolchain for the PowerPC architecture, |
Thomas Petazzoni | 2ec3e6d | 2012-01-15 20:02:11 +0100 | [diff] [blame] | 562 | from Mentor Graphics. It uses gcc 4.5.1, binutils 2.20, |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 563 | glibc 2.11, gdb 7.2.50 and kernel headers 2.6.35.2. It has |
| 564 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 565 | - 603 glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 566 | Select a generic PowerPC core |
| 567 | Disable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 568 | - 603 soft float glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 569 | Select a generic PowerPC core |
| 570 | Enable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 571 | - e600 altivec glibc, 32 bits |
| 572 | Set BR2_TARGET_OPTIMIZATION to -te600 |
| 573 | - e500v1 glibc, 32 bits |
| 574 | Set BR2_TARGET_OPTIMIZATION to -te500v1 |
| 575 | - e500v2 glibc, 32 bits |
| 576 | Set BR2_TARGET_OPTIMIZATION to -te500v2 |
| 577 | - e500mc glibc, 32 bits |
| 578 | Set BR2_TARGET_OPTIMIZATION to -te500mc |
| 579 | - 970 glibc hard-float, 64 bits |
| 580 | Set BR2_TARGET_OPTIMIZATION to -m64 |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 581 | |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 582 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201209 |
| 583 | bool "Sourcery CodeBench SH 2012.09" |
| 584 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 585 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 586 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 587 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 588 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 589 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 590 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 591 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 592 | help |
| 593 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 594 | from Mentor Graphics. It uses gcc 4.7.2, binutils 2.23.51, |
| 595 | glibc 2.16, uClibc 0.9.30, gdb 7.4.50 and kernel headers |
| 596 | 3.5.4. It has support for the following variants: |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 597 | - SH4A, glibc, little endian |
| 598 | Default. |
| 599 | - SH4A, glibc, big endian |
| 600 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 601 | - SH4A, uClibc, little endian |
| 602 | Not usable in Buildroot yet. |
| 603 | - SH4A, uClibc, big endian |
| 604 | Not usable in Buildroot yet. |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 605 | |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 606 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201203 |
| 607 | bool "Sourcery CodeBench SH 2012.03" |
| 608 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 609 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 610 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 611 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 612 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 613 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 614 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 615 | help |
| 616 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 617 | from Mentor Graphics. It uses gcc 4.6.3, binutils 2.21.53, |
| 618 | glibc 2.15, uClibc 0.9.30, gdb 7.2.50 and kernel headers |
| 619 | 3.2.10. It has support for the following variants: |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 620 | - SH4A, glibc, little endian |
| 621 | Default. |
| 622 | - SH4A, glibc, big endian |
| 623 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 624 | - SH4A, uClibc, little endian |
| 625 | Not usable in Buildroot yet. |
| 626 | - SH4A, uClibc, big endian |
| 627 | Not usable in Buildroot yet. |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 628 | |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 629 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201103 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 630 | bool "Sourcery CodeBench SH 2011.03" |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 631 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 632 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 633 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 634 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 635 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 636 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 637 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 638 | # kernel headers: 2.6.38 |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 639 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 640 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 641 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20, |
| 642 | glibc 2.13, uClibc 0.9.30, gdb 7.2.50 and kernel headers |
| 643 | 2.6.38. It has support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 644 | - SH4A, glibc, little endian |
| 645 | Default. |
| 646 | - SH4A, glibc, big endian |
| 647 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 648 | - SH4A, uClibc, little endian |
| 649 | Not usable in Buildroot yet. |
| 650 | - SH4A, uClibc, big endian |
| 651 | Not usable in Buildroot yet. |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 652 | |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 653 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201103 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 654 | bool "Sourcery CodeBench SH 2011.03" |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 655 | depends on BR2_sh2a |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 656 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 657 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 658 | select BR2_LARGEFILE |
Thomas Petazzoni | 0858e00 | 2012-11-03 18:47:49 +0100 | [diff] [blame] | 659 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 660 | select BR2_USE_WCHAR |
| 661 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 662 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 663 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 664 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 665 | # kernel headers: 2.6.38 |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 666 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 667 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 668 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20, |
| 669 | uClibc 0.9.30, gdb 7.2.50 and kernel headers 2.6.38. It has |
| 670 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 671 | - SH2A, uClibc, big endian |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 672 | |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 673 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201009 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 674 | bool "Sourcery CodeBench SH 2010.09" |
Phil Edworthy | d5247aa | 2011-05-09 14:12:53 +0100 | [diff] [blame] | 675 | depends on BR2_sh2a |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 676 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 677 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
Thomas Petazzoni | d63a817 | 2011-07-30 00:00:37 +0200 | [diff] [blame] | 678 | select BR2_LARGEFILE |
Thomas Petazzoni | 0858e00 | 2012-11-03 18:47:49 +0100 | [diff] [blame] | 679 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | d63a817 | 2011-07-30 00:00:37 +0200 | [diff] [blame] | 680 | select BR2_USE_WCHAR |
| 681 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 682 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 683 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 684 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 685 | # kernel headers: 2.6.35 |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 686 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 687 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 688 | from Mentor Graphics. It uses gcc 4.5.1, binutils 2.20, |
| 689 | uClibc 0.9.30, gdb 7.2.50 and kernel headers 2.6.35.2. It |
| 690 | has support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 691 | - SH2A, uClibc, big endian |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 692 | |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 693 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201209 |
| 694 | bool "Sourcery CodeBench x86/x86_64 2012.09" |
| 695 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 696 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 697 | depends on !BR2_PREFER_STATIC_LIB |
Adrien Béraud | a20cb38 | 2014-01-15 17:17:10 -0500 | [diff] [blame] | 698 | depends on !BR2_x86_jaguar |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 699 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 700 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 701 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 702 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 703 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 704 | help |
| 705 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 706 | architectures, from Mentor Graphics. It uses gcc 4.7.2, |
| 707 | binutils 2.23.51, glibc 2.16, gdb 7.4.50 and kernel headers |
| 708 | 3.5.4. It has support for the following variants: |
| 709 | - Intel Pentium 4, glibc, 32 bits |
| 710 | Default for x86, nothing special to do. |
| 711 | - Intel Atom, glibc, 32 bits |
| 712 | Select an Atom core |
| 713 | - Intel Xeon, glibc, 64 bits |
| 714 | Default for x86_64, nothing special to do. |
| 715 | - Intel Core 2, glibc, 64 bits |
| 716 | Select a Core 2 core |
| 717 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 718 | supported as well, but glibc is not optimised for it. |
| 719 | |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 720 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201203 |
| 721 | bool "Sourcery CodeBench x86/x86_64 2012.03" |
| 722 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 723 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 724 | depends on !BR2_PREFER_STATIC_LIB |
Adrien Béraud | a20cb38 | 2014-01-15 17:17:10 -0500 | [diff] [blame] | 725 | depends on !BR2_x86_jaguar |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 726 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 727 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 728 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 729 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 730 | help |
| 731 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 732 | architectures, from Mentor Graphics. It uses gcc 4.6.3, |
| 733 | binutils 2.21.53, glibc 2.15, gdb 7.2.50 and kernel headers |
| 734 | 3.2.10. It has support for the following variants: |
| 735 | - Intel Pentium 4, glibc, 32 bits |
| 736 | Default for x86, nothing special to do. |
| 737 | - Intel Atom, glibc, 32 bits |
| 738 | Select an Atom core |
| 739 | - Intel Xeon, glibc, 64 bits |
| 740 | Default for x86_64, nothing special to do. |
| 741 | - Intel Core 2, glibc, 64 bits |
| 742 | Select a Core 2 core |
| 743 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 744 | supported as well, but glibc is not optimised for it. |
| 745 | |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 746 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201109 |
| 747 | bool "Sourcery CodeBench x86/x86_64 2011.09" |
| 748 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 749 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 750 | depends on !BR2_PREFER_STATIC_LIB |
Adrien Béraud | a20cb38 | 2014-01-15 17:17:10 -0500 | [diff] [blame] | 751 | depends on !BR2_x86_jaguar |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 752 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 753 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 754 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 755 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 756 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 757 | help |
| 758 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 759 | architectures, from Mentor Graphics. It uses gcc 4.6.1, |
| 760 | binutils 2.21.53, glibc 2.13, gdb 7.2.50 and kernel headers |
| 761 | 3.0.1. It has support for the following variants: |
| 762 | - Intel Pentium 4, glibc, 32 bits |
Arnout Vandecappelle (Essensium/Mind) | a22dc0f | 2012-03-13 23:30:00 +0100 | [diff] [blame] | 763 | Default for x86, nothing special to do. |
| 764 | - Intel Atom, glibc, 32 bits |
| 765 | Select an Atom core |
| 766 | - Intel Xeon, glibc, 64 bits |
| 767 | Default for x86_64, nothing special to do. |
| 768 | - Intel Core 2, glibc, 64 bits |
| 769 | Select a Core 2 core |
| 770 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 771 | supported as well, but glibc is not optimised for it. |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 772 | |
Thomas Petazzoni | 1cfeed1 | 2014-07-09 23:20:22 +0200 | [diff] [blame] | 773 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 |
| 774 | bool "Blackfin.uclinux.org 2014R1" |
Thomas Petazzoni | 5a65b8e | 2014-06-01 12:47:48 +0200 | [diff] [blame] | 775 | depends on BR2_bfin |
| 776 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 777 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 778 | select BR2_INSTALL_LIBSTDCPP |
| 779 | select BR2_LARGEFILE |
| 780 | select BR2_INET_IPV6 |
| 781 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 782 | select BR2_USE_WCHAR |
| 783 | select BR2_TOOLCHAIN_HAS_THREADS |
| 784 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 785 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 786 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 |
| 787 | help |
| 788 | Toolchain for the Blackfin architecture, from |
| 789 | http://blackfin.uclinux.org. |
| 790 | |
Thomas Petazzoni | 951fc4c | 2013-12-27 12:32:22 +0100 | [diff] [blame] | 791 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 |
| 792 | bool "Blackfin.uclinux.org 2013R1" |
| 793 | depends on BR2_bfin |
| 794 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 795 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 796 | select BR2_INSTALL_LIBSTDCPP |
| 797 | select BR2_LARGEFILE |
| 798 | select BR2_INET_IPV6 |
| 799 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 800 | select BR2_USE_WCHAR |
| 801 | select BR2_TOOLCHAIN_HAS_THREADS |
| 802 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 803 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 804 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 |
Thomas Petazzoni | 951fc4c | 2013-12-27 12:32:22 +0100 | [diff] [blame] | 805 | help |
| 806 | Toolchain for the Blackfin architecture, from |
| 807 | http://blackfin.uclinux.org. |
| 808 | |
Gustavo Zacarias | 82e39a2 | 2013-02-01 03:04:50 +0000 | [diff] [blame] | 809 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 |
| 810 | bool "Blackfin.uclinux.org 2012R2-RC2" |
| 811 | depends on BR2_bfin |
| 812 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 813 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 814 | select BR2_INSTALL_LIBSTDCPP |
| 815 | select BR2_LARGEFILE |
| 816 | select BR2_INET_IPV6 |
| 817 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 818 | select BR2_USE_WCHAR |
| 819 | select BR2_TOOLCHAIN_HAS_THREADS |
| 820 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 821 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 822 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
Gustavo Zacarias | 82e39a2 | 2013-02-01 03:04:50 +0000 | [diff] [blame] | 823 | help |
| 824 | Toolchain for the Blackfin architecture, from |
| 825 | http://blackfin.uclinux.org. |
| 826 | |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 827 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_14_3 |
Jan Viktorin | cd34446 | 2013-07-08 16:08:18 +0200 | [diff] [blame] | 828 | bool "Xilinx Little Endian Microblaze GNU Tools 14.3" |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 829 | depends on BR2_microblazeel |
| 830 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 831 | depends on !BR2_PREFER_STATIC_LIB |
Thomas De Schampheleire | ba4ad9d | 2014-01-03 17:02:50 +0100 | [diff] [blame] | 832 | depends on BR2_DEPRECATED_SINCE_2014_02 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 833 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 834 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 835 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 836 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 837 | help |
| 838 | Toolchain for the Microblaze architecture, from |
| 839 | http://git.xilinx.com/?p=microblaze-gnu.git;a=tree;f=binaries. It |
| 840 | uses gcc 4.6.2, binutils 2.21.53, glibc 2.14 and gdb 7.4.50. |
| 841 | |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 842 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2 |
Jan Viktorin | cd34446 | 2013-07-08 16:08:18 +0200 | [diff] [blame] | 843 | bool "Xilinx Little Endian Microblaze GNU Tools v2" |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 844 | depends on BR2_microblazeel |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 845 | depends on BR2_HOSTARCH = "x86_64" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 846 | depends on !BR2_PREFER_STATIC_LIB |
Thomas De Schampheleire | ba4ad9d | 2014-01-03 17:02:50 +0100 | [diff] [blame] | 847 | depends on BR2_DEPRECATED_SINCE_2014_02 |
Thomas Petazzoni | 1f6e2b4 | 2012-08-01 23:47:04 +0200 | [diff] [blame] | 848 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 849 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 850 | # kernel headers: 2.6.37 |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 851 | help |
| 852 | Toolchain for the Microblaze architecture, from |
| 853 | http://wiki.xilinx.com/mb-gnu-tools |
| 854 | |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 855 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_14_3 |
| 856 | bool "Xilinx Big Endian Microblaze GNU Tools" |
Peter Korsgaard | c1a6f68 | 2013-04-11 07:50:53 +0200 | [diff] [blame] | 857 | depends on BR2_microblazebe |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 858 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 859 | depends on !BR2_PREFER_STATIC_LIB |
Thomas De Schampheleire | ba4ad9d | 2014-01-03 17:02:50 +0100 | [diff] [blame] | 860 | depends on BR2_DEPRECATED_SINCE_2014_02 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 861 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 862 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 863 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 864 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 865 | help |
| 866 | Toolchain for the Microblaze architecture, from |
| 867 | http://git.xilinx.com/?p=microblaze-gnu.git;a=tree;f=binaries. It |
| 868 | uses gcc 4.6.2, binutils 2.21.53, glibc 2.14 and gdb 7.4.50. |
| 869 | |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 870 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2 |
| 871 | bool "Xilinx Big Endian Microblaze GNU Tools" |
| 872 | depends on BR2_microblazebe |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 873 | depends on BR2_HOSTARCH = "x86_64" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 874 | depends on !BR2_PREFER_STATIC_LIB |
Thomas De Schampheleire | ba4ad9d | 2014-01-03 17:02:50 +0100 | [diff] [blame] | 875 | depends on BR2_DEPRECATED_SINCE_2014_02 |
Thomas Petazzoni | 1f6e2b4 | 2012-08-01 23:47:04 +0200 | [diff] [blame] | 876 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 877 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 878 | # kernel headers: 2.6.37 |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 879 | help |
| 880 | Toolchain for the Microblaze architecture, from |
| 881 | http://wiki.xilinx.com/mb-gnu-tools |
| 882 | |
Thomas Petazzoni | d51025d | 2014-06-01 12:47:41 +0200 | [diff] [blame] | 883 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64 |
Thomas Petazzoni | 28bca1c | 2014-11-10 11:06:31 +0100 | [diff] [blame] | 884 | bool "Linaro AArch64 14.09" |
Thomas Petazzoni | 68b967a | 2013-12-27 12:32:20 +0100 | [diff] [blame] | 885 | depends on BR2_aarch64 |
| 886 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 887 | depends on !BR2_PREFER_STATIC_LIB |
| 888 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 889 | select BR2_INSTALL_LIBSTDCPP |
| 890 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 891 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 892 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 |
Thomas Petazzoni | 68b967a | 2013-12-27 12:32:20 +0100 | [diff] [blame] | 893 | help |
| 894 | Toolchain for the AArch64 architecture, from |
| 895 | http://www.linaro.org/engineering/armv8/ |
| 896 | |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 897 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 |
| 898 | bool "CodeSourcery AArch64 2014.05" |
| 899 | depends on BR2_aarch64 |
| 900 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 901 | depends on !BR2_PREFER_STATIC_LIB |
| 902 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 903 | select BR2_INSTALL_LIBSTDCPP |
| 904 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 905 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 906 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
| 907 | help |
| 908 | Sourcery CodeBench toolchain for the AArch64 architecture, |
| 909 | from Mentor Graphics. It uses gcc 4.8.3, binutils 2.24, |
| 910 | glibc 2.18, gdb 7.7.50 and kernel headers 3.13. |
| 911 | |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 912 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
Thomas Petazzoni | 5c85266 | 2014-06-01 12:47:45 +0200 | [diff] [blame] | 913 | bool "Musl 1.1.1 toolchain" |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 914 | depends on (BR2_arm && BR2_ARM_EABI) || (BR2_armeb && BR2_ARM_EABI) || \ |
Thomas Petazzoni | 77ef6a3 | 2014-05-30 22:24:39 +0200 | [diff] [blame] | 915 | (BR2_i386 && !BR2_x86_i386) || BR2_microblazebe || BR2_mips || \ |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 916 | BR2_mipsel || (BR2_powerpc && BR2_powerpc_CLASSIC) || BR2_x86_64 |
| 917 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 918 | select BR2_TOOLCHAIN_EXTERNAL_MUSL |
| 919 | select BR2_INSTALL_LIBSTDCPP |
| 920 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 5c85266 | 2014-06-01 12:47:45 +0200 | [diff] [blame] | 921 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 922 | help |
| 923 | Toolchain based on the Musl C library, provided by the |
Thomas Petazzoni | 5c85266 | 2014-06-01 12:47:45 +0200 | [diff] [blame] | 924 | musl-cross project. It uses gcc 4.8.3, binutils 2.24 and |
| 925 | musl 1.1.1. It does not have a cross debugger included. |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 926 | |
| 927 | The ARM toolchain is built for ARMv4t, soft-float. |
| 928 | The x86 toolchain is built for i486. |
| 929 | |
| 930 | http://musl.codu.org/ |
| 931 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 932 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 933 | bool "Custom toolchain" |
| 934 | help |
| 935 | Use this option to use a custom toolchain pre-installed on |
| 936 | your system. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 937 | |
| 938 | endchoice |
| 939 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 940 | choice |
| 941 | prompt "Toolchain origin" |
Thomas Petazzoni | 7019407 | 2012-07-22 20:57:26 +0200 | [diff] [blame] | 942 | # Keep compatibility with old defconfig files that are using |
| 943 | # custom toolchains, and which are therefore assuming that |
| 944 | # "preinstalled" in the default choice. |
| 945 | default BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 946 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 947 | config BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 948 | bool "Toolchain to be downloaded and installed" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 949 | help |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 950 | Select this option if you want Buildroot to download and install the |
| 951 | toolchain. If you have selected a custom toolchain, specify the URL |
| 952 | in BR2_TOOLCHAIN_EXTERNAL_URL. |
| 953 | |
| 954 | config BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
| 955 | bool "Pre-installed toolchain" |
| 956 | help |
| 957 | Select this option if you want to use a pre-installed toolchain. |
| 958 | Specify the path to this toolchain in BR2_TOOLCHAIN_EXTERNAL_PATH. |
| 959 | |
| 960 | endchoice |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 961 | |
| 962 | config BR2_TOOLCHAIN_EXTERNAL_PATH |
| 963 | string "Toolchain path" |
| 964 | default "/path/to/toolchain/usr" |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 965 | depends on BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 966 | help |
| 967 | Path to where the external toolchain is installed. |
| 968 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 969 | config BR2_TOOLCHAIN_EXTERNAL_URL |
| 970 | string "Toolchain URL" |
| 971 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM && BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
| 972 | help |
| 973 | URL of the custom toolchain tarball to download and install. |
| 974 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 975 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX |
| 976 | string "Toolchain prefix" |
| 977 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 978 | default "$(ARCH)-linux" |
| 979 | |
| 980 | config BR2_TOOLCHAIN_EXTERNAL_PREFIX |
| 981 | string |
Thomas Petazzoni | be2abf2 | 2014-06-01 12:47:40 +0200 | [diff] [blame] | 982 | default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_ARM |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 983 | default "armeb-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 984 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201305 |
Thomas Petazzoni | c525231 | 2013-12-27 12:32:17 +0100 | [diff] [blame] | 985 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201311 |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 986 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201405 |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 987 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A_201109 |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 988 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE_201109 |
Thomas Petazzoni | d51025d | 2014-06-01 12:47:41 +0200 | [diff] [blame] | 989 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64 |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 990 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 991 | default "microblazeel-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_14_3 |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 992 | default "microblazeel-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 993 | default "microblaze-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_14_3 |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 994 | default "microblaze-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 995 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201305 |
Thomas Petazzoni | 245686f | 2013-12-27 12:32:18 +0100 | [diff] [blame] | 996 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201311 |
Thomas Petazzoni | 8b83219 | 2014-06-01 12:47:46 +0200 | [diff] [blame] | 997 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201405 |
Ezequiel Garcia | d1de1c0 | 2013-08-29 19:10:41 -0300 | [diff] [blame] | 998 | default "nios2-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 999 | default "nios2-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1000 | default "powerpc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 1001 | default "powerpc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 |
Thomas Petazzoni | 20d4ba9 | 2014-06-01 12:47:47 +0200 | [diff] [blame] | 1002 | default "powerpc-mentor-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201203 |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 1003 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201103 |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 1004 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201203 |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 1005 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201209 |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 1006 | default "sh-uclinux" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201009 |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 1007 | default "sh-uclinux" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201103 |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 1008 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201109 |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 1009 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201203 |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 1010 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201209 |
Sonic Zhang | 5713382 | 2013-05-03 00:39:34 +0000 | [diff] [blame] | 1011 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && BR2_BINFMT_FLAT |
| 1012 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && BR2_BINFMT_FDPIC |
Thomas Petazzoni | 951fc4c | 2013-12-27 12:32:22 +0100 | [diff] [blame] | 1013 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 && BR2_BINFMT_FLAT |
| 1014 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2013R1 && BR2_BINFMT_FDPIC |
Thomas Petazzoni | 1cfeed1 | 2014-07-09 23:20:22 +0200 | [diff] [blame] | 1015 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 && BR2_BINFMT_FLAT |
| 1016 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2014R1 && BR2_BINFMT_FDPIC |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 1017 | default "arm-linux-musleabi" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_arm |
| 1018 | default "armeb-linux-musleabi" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_armeb |
| 1019 | default "i486-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_i386 |
Thomas Petazzoni | 77ef6a3 | 2014-05-30 22:24:39 +0200 | [diff] [blame] | 1020 | default "microblaze-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_microblazebe |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 1021 | default "mips-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mips && !BR2_SOFT_FLOAT) |
| 1022 | default "mips-sf-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mips && BR2_SOFT_FLOAT) |
| 1023 | default "mipsel-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mipsel && !BR2_SOFT_FLOAT) |
| 1024 | default "mipsel-sf-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mipsel && BR2_SOFT_FLOAT) |
| 1025 | default "powerpc-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_powerpc |
| 1026 | default "x86_64-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_x86_64 |
Thomas De Schampheleire | fbc2494 | 2013-09-02 22:07:53 +0200 | [diff] [blame] | 1027 | default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX \ |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1028 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 1029 | |
| 1030 | config BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1031 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 1032 | select BR2_TOOLCHAIN_USES_GLIBC |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 1033 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1034 | config BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 1035 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 1036 | select BR2_TOOLCHAIN_USES_UCLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1037 | |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 1038 | config BR2_TOOLCHAIN_EXTERNAL_MUSL |
| 1039 | bool |
| 1040 | select BR2_TOOLCHAIN_USES_MUSL |
| 1041 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1042 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 1043 | |
| 1044 | choice |
Yann E. MORIN | c58bcd5 | 2014-03-01 15:52:59 +0100 | [diff] [blame] | 1045 | bool "External toolchain kernel headers series" |
| 1046 | default BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD |
| 1047 | help |
| 1048 | Set to the kernel headers version that were used to build |
| 1049 | this external toolchain. |
| 1050 | |
| 1051 | This is used to hide/show some packages that have strict |
| 1052 | requirements on the version of kernel headers. |
| 1053 | |
| 1054 | If unsure what version your toolchain is using, you can look |
| 1055 | at the value of LINUX_VERSION_CODE in linux/version.h in your |
| 1056 | toolchain. The Linux version is M.m.p, with: |
| 1057 | M = ( LINUX_VERSION_CODE >> 16 ) & 0xFF |
| 1058 | m = ( LINUX_VERSION_CODE >> 8 ) & 0xFF |
| 1059 | p = ( LINUX_VERSION_CODE >> 0 ) & 0xFF |
| 1060 | |
Gustavo Zacarias | 2d312b7 | 2014-10-06 08:44:39 -0300 | [diff] [blame] | 1061 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_17 |
| 1062 | bool "3.17.x" |
Karoly Kasza | b8f9e57 | 2014-10-09 12:59:01 +0200 | [diff] [blame] | 1063 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 |
Gustavo Zacarias | 2d312b7 | 2014-10-06 08:44:39 -0300 | [diff] [blame] | 1064 | |
Gustavo Zacarias | 911516f | 2014-08-03 23:29:22 -0300 | [diff] [blame] | 1065 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16 |
| 1066 | bool "3.16.x" |
| 1067 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16 |
| 1068 | |
Gustavo Zacarias | fb29afe | 2014-06-09 08:30:33 -0300 | [diff] [blame] | 1069 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_15 |
| 1070 | bool "3.15.x" |
| 1071 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15 |
| 1072 | |
Samuel Martin | 11547ca | 2014-04-06 18:27:49 +0200 | [diff] [blame] | 1073 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_14 |
| 1074 | bool "3.14.x" |
| 1075 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14 |
| 1076 | |
Yann E. MORIN | c58bcd5 | 2014-03-01 15:52:59 +0100 | [diff] [blame] | 1077 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_13 |
| 1078 | bool "3.13.x" |
| 1079 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
| 1080 | |
| 1081 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_12 |
| 1082 | bool "3.12.x" |
| 1083 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 |
| 1084 | |
| 1085 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_11 |
| 1086 | bool "3.11.x" |
| 1087 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 |
| 1088 | |
| 1089 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_10 |
| 1090 | bool "3.10.x" |
| 1091 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 |
| 1092 | |
| 1093 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_9 |
| 1094 | bool "3.9.x" |
| 1095 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9 |
| 1096 | |
| 1097 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_8 |
| 1098 | bool "3.8.x" |
| 1099 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8 |
| 1100 | |
| 1101 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_7 |
| 1102 | bool "3.7.x" |
| 1103 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 |
| 1104 | |
| 1105 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_6 |
| 1106 | bool "3.6.x" |
| 1107 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6 |
| 1108 | |
| 1109 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_5 |
| 1110 | bool "3.5.x" |
| 1111 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
| 1112 | |
| 1113 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_4 |
| 1114 | bool "3.4.x" |
| 1115 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 |
| 1116 | |
| 1117 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_3 |
| 1118 | bool "3.3.x" |
| 1119 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 |
| 1120 | |
| 1121 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_2 |
| 1122 | bool "3.2.x" |
| 1123 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 |
| 1124 | |
| 1125 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_1 |
| 1126 | bool "3.1.x" |
| 1127 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1 |
| 1128 | |
| 1129 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_0 |
| 1130 | bool "3.0.x" |
| 1131 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 |
| 1132 | |
| 1133 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD |
| 1134 | bool "2.6.x" |
| 1135 | |
| 1136 | endchoice |
| 1137 | |
| 1138 | choice |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1139 | prompt "External toolchain C library" |
| 1140 | default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 1141 | |
| 1142 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 1143 | bool "uClibc" |
| 1144 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
Thomas Petazzoni | b988292 | 2011-05-30 23:56:57 +0200 | [diff] [blame] | 1145 | # For the time being, we assume that all custom external |
| 1146 | # toolchains have shadow password support. |
| 1147 | select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS |
Thomas Petazzoni | 692a585 | 2013-10-08 20:17:10 +0200 | [diff] [blame] | 1148 | help |
| 1149 | Select this option if your external toolchain uses the |
| 1150 | uClibc C library (available from http://www.uclibc.org/). |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1151 | |
| 1152 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 1153 | bool "glibc/eglibc" |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 1154 | depends on !BR2_PREFER_STATIC_LIB |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1155 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 1156 | help |
Thomas Petazzoni | 692a585 | 2013-10-08 20:17:10 +0200 | [diff] [blame] | 1157 | Select this option if your external toolchain uses the GNU C |
| 1158 | library (available from https://www.gnu.org/software/libc/) |
| 1159 | or its variant the eglibc library (http://www.eglibc.org/). |
| 1160 | |
| 1161 | Note: eglibc is a variant of glibc that (among other things) |
| 1162 | can be configured to exclude some of its features. Using a |
| 1163 | toolchain with eglibc configured to exclude key features may |
| 1164 | cause build failures to some packages. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1165 | |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 1166 | comment "(e)glibc only available with shared lib support" |
| 1167 | depends on BR2_PREFER_STATIC_LIB |
| 1168 | |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 1169 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_MUSL |
| 1170 | bool "musl" |
| 1171 | select BR2_TOOLCHAIN_EXTERNAL_MUSL |
| 1172 | help |
| 1173 | Select this option if your external toolchain uses the |
| 1174 | 'musl' C library, available from http://www.musl-libc.org/. |
| 1175 | |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 1176 | endchoice |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 1177 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1178 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 1179 | |
| 1180 | config BR2_TOOLCHAIN_EXTERNAL_LARGEFILE |
| 1181 | bool "Toolchain has large file support?" |
| 1182 | select BR2_LARGEFILE |
| 1183 | help |
| 1184 | Select this option if your external toolchain supports |
| 1185 | largefile. If you don't know, leave the default value, |
| 1186 | Buildroot will tell you if it's correct or not. |
| 1187 | |
| 1188 | config BR2_TOOLCHAIN_EXTERNAL_INET_IPV6 |
| 1189 | bool "Toolchain has IPv6 support?" |
| 1190 | select BR2_INET_IPV6 |
| 1191 | help |
| 1192 | Select this option if your external toolchain supports |
| 1193 | IPv6. If you don't know, leave the default value, Buildroot |
| 1194 | will tell you if it's correct or not. |
| 1195 | |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 1196 | config BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 1197 | bool "Toolchain has WCHAR support?" |
| 1198 | select BR2_USE_WCHAR |
| 1199 | help |
| 1200 | Select this option if your external toolchain supports |
| 1201 | WCHAR. If you don't know, leave the default value, Buildroot |
| 1202 | will tell you if it's correct or not. |
| 1203 | |
| 1204 | config BR2_TOOLCHAIN_EXTERNAL_LOCALE |
| 1205 | bool "Toolchain has locale support?" |
| 1206 | select BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 1207 | select BR2_ENABLE_LOCALE |
| 1208 | help |
| 1209 | Select this option if your external toolchain has locale |
| 1210 | support. If you don't know, leave the default value, |
| 1211 | Buildroot will tell you if it's correct or not. |
| 1212 | |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 1213 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 1214 | bool "Toolchain has threads support?" |
| 1215 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 04d0689 | 2011-07-26 15:28:19 +0200 | [diff] [blame] | 1216 | default y |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 1217 | help |
| 1218 | Select this option if your external toolchain has thread |
| 1219 | support. If you don't know, leave the default value, |
| 1220 | Buildroot will tell you if it's correct or not. |
| 1221 | |
Thomas Petazzoni | c64f948 | 2014-02-18 22:08:59 +0100 | [diff] [blame] | 1222 | if BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 1223 | |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 1224 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG |
| 1225 | bool "Toolchain has threads debugging support?" |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 1226 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 1227 | default y |
| 1228 | help |
| 1229 | Select this option if your external toolchain has thread |
| 1230 | debugging support. If you don't know, leave the default |
| 1231 | value, Buildroot will tell you if it's correct or not. |
| 1232 | |
Thomas Petazzoni | c64f948 | 2014-02-18 22:08:59 +0100 | [diff] [blame] | 1233 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_NPTL |
| 1234 | bool "Toolchain has NPTL threads support?" |
| 1235 | select BR2_TOOLCHAIN_HAS_THREADS_NPTL |
| 1236 | default y |
| 1237 | help |
| 1238 | Select this option if your external toolchain uses the NPTL |
| 1239 | (Native Posix Thread Library) implementation of Posix |
| 1240 | threads. If you don't know, leave the default value, |
| 1241 | Buildroot will tell you if it's correct or not. |
| 1242 | |
| 1243 | endif # BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 1244 | |
Thomas Petazzoni | c5866be | 2013-09-02 18:06:36 +0200 | [diff] [blame] | 1245 | config BR2_TOOLCHAIN_EXTERNAL_HAS_SSP |
| 1246 | bool "Toolchain has SSP support?" |
| 1247 | select BR2_TOOLCHAIN_HAS_SSP |
| 1248 | help |
| 1249 | Selection this option if your external toolchain has Stack |
| 1250 | Smashing Protection support enabled. If you don't know, |
| 1251 | leave the default value, Buildroot will tell you if it's |
| 1252 | correct or not. |
| 1253 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1254 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 1255 | |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 1256 | config BR2_TOOLCHAIN_EXTERNAL_INET_RPC |
| 1257 | bool "Toolchain has RPC support?" |
| 1258 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 1259 | depends on !BR2_TOOLCHAIN_EXTERNAL_MUSL |
Thomas Petazzoni | 3a843a3 | 2012-11-04 07:34:29 +0000 | [diff] [blame] | 1260 | default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 1261 | help |
| 1262 | Select this option if your external toolchain supports |
| 1263 | RPC. If you don't know, leave the default value, Buildroot |
| 1264 | will tell you if it's correct or not. |
| 1265 | |
Thomas Petazzoni | 6b578c8 | 2010-12-13 17:27:41 +0100 | [diff] [blame] | 1266 | config BR2_TOOLCHAIN_EXTERNAL_CXX |
| 1267 | bool "Toolchain has C++ support?" |
| 1268 | select BR2_INSTALL_LIBSTDCPP |
| 1269 | help |
| 1270 | Select this option if your external toolchain has C++ |
| 1271 | support. If you don't know, leave the default value, |
| 1272 | Buildroot will tell you if it's correct or not. |
| 1273 | |
Thomas De Schampheleire | c72f54b | 2011-10-02 21:20:10 +0200 | [diff] [blame] | 1274 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS |
| 1275 | string "Extra toolchain libraries to be copied to target" |
| 1276 | help |
| 1277 | If your external toolchain provides extra libraries that |
| 1278 | need to be copied to the target filesystem, enter them |
| 1279 | here, separated by spaces. They will be copied to the |
| 1280 | target's /lib directory. |
| 1281 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1282 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 1283 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 1284 | config BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY |
| 1285 | bool "Copy gdb server to the Target" |
| 1286 | depends on BR2_TOOLCHAIN_EXTERNAL |
| 1287 | help |
| 1288 | Copy the gdbserver provided by the external toolchain to the |
| 1289 | target. |
| 1290 | |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1291 | # When the FDPIC shared binary format is used, the corresponding libraries are |
| 1292 | # always installed. When a different binary format is used, we offer the option |
| 1293 | # of installing the FDPIC shared libraries. |
| 1294 | config BR2_BFIN_INSTALL_FDPIC_SHARED |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 1295 | bool "Install FDPIC shared libraries" |
| 1296 | depends on BR2_bfin && !BR2_BINFMT_FDPIC |
| 1297 | help |
| 1298 | The Linux kernel supports running both FDPIC and FLAT applications |
| 1299 | concurrently if the binary format specific libraries are installed |
| 1300 | properly. This option allows developer to install FDPIC libraries |
| 1301 | into a buildroot rootfs image built with binary format that is not |
| 1302 | FDPIC. |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1303 | |
| 1304 | # When the FLAT shared binary format is used, we force the installation |
| 1305 | # of the corresponding libraries. When a different binary format is |
| 1306 | # used, we offer the option of installing the FLAT shared libraries. |
| 1307 | config BR2_BFIN_INSTALL_FLAT_SHARED |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 1308 | bool "Install FLAT shared libraries" if !BR2_BINFMT_FLAT_SHARED |
| 1309 | depends on BR2_bfin |
| 1310 | default y if BR2_BINFMT_FLAT_SHARED |
| 1311 | help |
| 1312 | The Linux kernel supports running both FDPIC and FLAT applications |
| 1313 | concurrently if the binary format specific libraries are installed |
| 1314 | properly. This option allows developer to install FLAT libraries |
| 1315 | into a buildroot rootfs image built with binary format that is not |
| 1316 | shared FLAT. |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1317 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1318 | endif # BR2_TOOLCHAIN_EXTERNAL |