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