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 | 88d9d17 | 2013-06-23 16:20:02 +0200 | [diff] [blame] | 6 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_06 |
| 7 | bool "Linaro 2013.06" |
| 8 | depends on BR2_arm |
| 9 | depends on BR2_GCC_TARGET_ARCH = "armv7-a" |
| 10 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 11 | depends on BR2_ARM_EABIHF |
Thomas Petazzoni | 88d9d17 | 2013-06-23 16:20:02 +0200 | [diff] [blame] | 12 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 13 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 14 | select BR2_INSTALL_LIBSTDCPP |
| 15 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 16 | help |
| 17 | Linaro toolchain for the ARM architecture. It uses Linaro |
| 18 | GCC 2013.06 (based on gcc 4.8), Linaro GDB 2013.06 (based on |
| 19 | GDB 7.6), eglibc 2.15. It generates code that runs on all |
| 20 | Cortex-A profile devices, but tuned for the Cortex-A9. The |
| 21 | code generated is Thumb 2, with the hard floating point |
| 22 | calling convention, and uses the VFPv3-D16 FPU instructions. |
| 23 | |
| 24 | To use this toolchain, you must disable soft float usage. |
| 25 | |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 26 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_05 |
| 27 | bool "Linaro 2013.05" |
| 28 | depends on BR2_arm |
Thomas Petazzoni | c5f87f7 | 2013-06-08 11:14:19 +0200 | [diff] [blame] | 29 | depends on BR2_GCC_TARGET_ARCH = "armv7-a" |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 30 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 31 | depends on BR2_ARM_EABIHF |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 32 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 33 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 34 | select BR2_INSTALL_LIBSTDCPP |
| 35 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 36 | help |
| 37 | Linaro toolchain for the ARM architecture. It uses Linaro |
| 38 | GCC 2013.05 (based on gcc 4.8), Linaro GDB 2013.05 (based on |
| 39 | GDB 7.6), eglibc 2.15. It generates code that runs on all |
| 40 | Cortex-A profile devices, but tuned for the Cortex-A9. The |
| 41 | code generated is Thumb 2, with the hard floating point |
| 42 | calling convention, and uses the VFPv3-D16 FPU instructions. |
| 43 | |
| 44 | To use this toolchain, you must disable soft float usage. |
| 45 | |
| 46 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_04 |
| 47 | bool "Linaro 2013.04" |
| 48 | depends on BR2_arm |
Thomas Petazzoni | c5f87f7 | 2013-06-08 11:14:19 +0200 | [diff] [blame] | 49 | depends on BR2_GCC_TARGET_ARCH = "armv7-a" |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 50 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 51 | depends on BR2_ARM_EABIHF |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 52 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 53 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 54 | select BR2_INSTALL_LIBSTDCPP |
| 55 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 56 | help |
| 57 | Linaro toolchain for the ARM architecture. It uses Linaro |
| 58 | GCC 2013.04 (based on gcc 4.7), Linaro GDB 2012.12 (based on |
| 59 | GDB 7.5), eglibc 2.15. It generates code that runs on all |
| 60 | Cortex-A profile devices, but tuned for the Cortex-A9. The |
| 61 | code generated is Thumb 2, with the hard floating point |
| 62 | calling convention, and uses the VFPv3-D16 FPU instructions. |
| 63 | |
| 64 | To use this toolchain, you must disable soft float usage. |
| 65 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 66 | comment "Linaro toolchains available for Cortex-A{5,7,8,9,15} and the EABIhf ABI" |
Thomas Petazzoni | 90f763c | 2012-11-27 04:07:03 +0000 | [diff] [blame] | 67 | depends on BR2_arm |
Thomas Petazzoni | c5f87f7 | 2013-06-08 11:14:19 +0200 | [diff] [blame] | 68 | depends on BR2_GCC_TARGET_ARCH != "armv7-a" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 69 | depends on !BR2_ARM_EABIHF |
Thomas Petazzoni | 90f763c | 2012-11-27 04:07:03 +0000 | [diff] [blame] | 70 | |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 71 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201305 |
| 72 | bool "Sourcery CodeBench ARM 2013.05" |
| 73 | depends on BR2_arm |
| 74 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 75 | depends on BR2_ARM_EABI |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 76 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 77 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 78 | select BR2_INSTALL_LIBSTDCPP |
| 79 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 80 | help |
| 81 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 82 | Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, glibc |
| 83 | 2.17 and gdb 7.4.50, kernel headers 3.8.2. It has support |
| 84 | for the following variants: |
| 85 | - ARMv5TE, little endian, soft-float, glibc |
| 86 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 87 | Select BR2_SOFT_FLOAT |
| 88 | - ARMv4T, little endian, soft-float, glibc |
| 89 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 90 | Select BR2_SOFT_FLOAT |
| 91 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 92 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 93 | Select BR2_SOFT_FLOAT |
| 94 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 95 | |
Fabio Porcedda | 7bcb494 | 2012-09-10 00:02:57 +0000 | [diff] [blame] | 96 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203 |
| 97 | bool "Sourcery CodeBench ARM 2012.03" |
| 98 | depends on BR2_arm |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 99 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 100 | depends on BR2_ARM_EABI |
Fabio Porcedda | 7bcb494 | 2012-09-10 00:02:57 +0000 | [diff] [blame] | 101 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 78f136a | 2012-11-04 07:34:09 +0000 | [diff] [blame] | 102 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Fabio Porcedda | 7bcb494 | 2012-09-10 00:02:57 +0000 | [diff] [blame] | 103 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 104 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Fabio Porcedda | 7bcb494 | 2012-09-10 00:02:57 +0000 | [diff] [blame] | 105 | help |
| 106 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 107 | Mentor Graphics. It uses gcc 4.6.3, binutils 2.21.53, glibc |
| 108 | 2.15 and gdb 7.2.50, kernel headers 3.2.10. It has support |
| 109 | for the following variants: |
| 110 | - ARMv5TE, little endian, soft-float, glibc |
| 111 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 112 | Select BR2_SOFT_FLOAT |
| 113 | - ARMv4T, little endian, soft-float, glibc |
| 114 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 115 | Select BR2_SOFT_FLOAT |
| 116 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 117 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 118 | Select BR2_SOFT_FLOAT |
| 119 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 120 | |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 121 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201109 |
| 122 | bool "Sourcery CodeBench ARM 2011.09" |
| 123 | depends on BR2_arm |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 124 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 125 | depends on BR2_ARM_EABI |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 126 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 127 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 128 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 129 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 130 | help |
| 131 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 132 | Mentor Graphics. It uses gcc 4.6.1, binutils 2.21.53, glibc |
| 133 | 2.13 and gdb 7.2.50, kernel headers 3.0.1. It has support |
| 134 | for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 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 |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 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 |
| 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 | c5f87f7 | 2013-06-08 11:14:19 +0200 | [diff] [blame] | 154 | depends on BR2_GCC_TARGET_ARCH = "armv7-a" |
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 | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 157 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 158 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 159 | select BR2_INSTALL_LIBSTDCPP |
| 160 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 161 | help |
| 162 | Texas Instruments Arago 2011.09 toolchain, with gcc 4.5.3, |
| 163 | binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 164 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 165 | This toolchain uses -mfloat-abi=softfp (i.e can use FPU |
| 166 | instructions, but passes floating point function arguments |
| 167 | in integer registers), and requires a VFPv3 floating point |
| 168 | unit to work properly. This unit is available on most |
| 169 | Cortex-A ARM processors, but not all. |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 170 | |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 171 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE_201109 |
| 172 | bool "Arago ARMv5 2011.09" |
| 173 | depends on BR2_arm |
| 174 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | f3d6e6c | 2013-06-08 11:14:20 +0200 | [diff] [blame] | 175 | depends on BR2_GCC_TARGET_ARCH != "armv4t" && \ |
| 176 | BR2_GCC_TARGET_ARCH != "armv4" && \ |
| 177 | BR2_GCC_TARGET_ARCH != "armv5t" |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 178 | depends on BR2_ARM_EABI |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 179 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 180 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 181 | select BR2_INSTALL_LIBSTDCPP |
| 182 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 183 | help |
| 184 | Texas Instruments Arago ARMv5 2011.09 toolchain, with gcc |
| 185 | 4.5.3, binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 186 | |
| 187 | This toolchain uses software-floating point. |
| 188 | |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 189 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201305 |
| 190 | bool "Sourcery CodeBench MIPS 2013.05" |
| 191 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 192 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 193 | depends on !BR2_MIPS_NABI32 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 194 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 195 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 196 | select BR2_INSTALL_LIBSTDCPP |
| 197 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 198 | help |
| 199 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 200 | Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, glibc |
| 201 | 2.17, uClibc 0.9.30 and gdb 7.4.50, kernel headers |
| 202 | 3.8.2. It has support for the following variants: |
| 203 | - MIPS32 O32 big endian glibc |
| 204 | Select a MIPS generic core |
| 205 | Disable BR2_SOFT_FLOAT |
| 206 | - MIPS64 big endian glibc |
| 207 | Select a MIPS64 generic core |
| 208 | Select the n64 ABI |
| 209 | Disable BR2_SOFT_FLOAT |
| 210 | - MIPS32 O32 little endian glibc |
| 211 | Select a MIPS generic core |
| 212 | Disable BR2_SOFT_FLOAT |
| 213 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 214 | - MIPS64 little endian glibc |
| 215 | Select a MIPS64 generic core |
| 216 | Select the n64 ABI |
| 217 | Disable BR2_SOFT_FLOAT |
| 218 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 219 | - MIPS32 big endian soft float glibc |
| 220 | Select a MIPS generic core |
| 221 | Select BR2_SOFT_FLOAT |
| 222 | - MIPS64 big endian soft float glibc |
| 223 | Select a MIPS64 generic core |
| 224 | Select the n64 ABI |
| 225 | Select BR2_SOFT_FLOAT |
| 226 | - MIPS32 little endian soft float glibc |
| 227 | Select a MIPS generic core |
| 228 | Select BR2_SOFT_FLOAT |
| 229 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 230 | - MIPS64 little endian soft float glibc |
| 231 | Select a MIPS64 generic core |
| 232 | Select the n64 ABI |
| 233 | Select BR2_SOFT_FLOAT |
| 234 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 235 | - MIPS32 big endian microMIPS glibc |
| 236 | Select a MIPS generic core |
| 237 | Disable BR2_SOFT_FLOAT |
| 238 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 239 | - MIPS32 little endian microMIPS glibc |
| 240 | Select a MIPS generic core |
| 241 | Disable BR2_SOFT_FLOAT |
| 242 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 243 | - MIPS32 big endian soft float microMIPS glibc |
| 244 | Select a MIPS generic core |
| 245 | Select BR2_SOFT_FLOAT |
| 246 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 247 | - MIPS32 little endian soft float microMIPS glibc |
| 248 | Select a MIPS generic core |
| 249 | Select BR2_SOFT_FLOAT |
| 250 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 251 | - MIPS32 big endian uclibc |
| 252 | Not usable in Buildroot yet. |
| 253 | - MIPS32 little endian uclibc |
| 254 | Not usable in Buildroot yet. |
| 255 | - MIPS32 big endian soft float uclibc |
| 256 | Not usable in Buildroot yet. |
| 257 | - MIPS32 little endian soft float uclibc |
| 258 | Not usable in Buildroot yet. |
| 259 | |
Thomas Petazzoni | 8de1f57 | 2012-12-20 13:23:21 +0000 | [diff] [blame] | 260 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201209 |
| 261 | bool "Sourcery CodeBench MIPS 2012.09" |
| 262 | depends on BR2_mips || BR2_mipsel |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 263 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 264 | depends on !BR2_MIPS_NABI32 |
Thomas Petazzoni | 8de1f57 | 2012-12-20 13:23:21 +0000 | [diff] [blame] | 265 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 266 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 267 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 268 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 8de1f57 | 2012-12-20 13:23:21 +0000 | [diff] [blame] | 269 | help |
| 270 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 271 | Mentor Graphics. It uses gcc 4.7.2, binutils 2.23.51, glibc |
| 272 | 2.16, uClibc 0.9.30 and gdb 7.4.50, kernel headers |
| 273 | 3.5.4. It has support for the following variants: |
| 274 | - MIPS32 O32 big endian glibc |
| 275 | Select a MIPS generic core |
| 276 | Disable BR2_SOFT_FLOAT |
| 277 | - MIPS64 big endian glibc |
| 278 | Select a MIPS generic core |
| 279 | Select the n64 ABI |
| 280 | Disable BR2_SOFT_FLOAT |
| 281 | - MIPS32 O32 little endian glibc |
| 282 | Select a MIPS generic core |
| 283 | Disable BR2_SOFT_FLOAT |
| 284 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 285 | - MIPS64 little endian glibc |
| 286 | Select a MIPS generic core |
| 287 | Select the n64 ABI |
| 288 | Disable BR2_SOFT_FLOAT |
| 289 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 290 | - MIPS32 big endian soft float glibc |
| 291 | Select a MIPS generic core |
| 292 | Select BR2_SOFT_FLOAT |
| 293 | - MIPS64 big endian soft float glibc |
| 294 | Select a MIPS generic core |
| 295 | Select the n64 ABI |
| 296 | Select BR2_SOFT_FLOAT |
| 297 | - MIPS32 little endian soft float glibc |
| 298 | Select a MIPS generic core |
| 299 | Select BR2_SOFT_FLOAT |
| 300 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 301 | - MIPS64 little endian soft float glibc |
| 302 | Select a MIPS generic core |
| 303 | Select the n64 ABI |
| 304 | Select BR2_SOFT_FLOAT |
| 305 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 306 | - MIPS32 big endian microMIPS glibc |
| 307 | Select a MIPS generic core |
| 308 | Disable BR2_SOFT_FLOAT |
| 309 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 310 | - MIPS32 little endian microMIPS glibc |
| 311 | Select a MIPS generic core |
| 312 | Disable BR2_SOFT_FLOAT |
| 313 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 314 | - MIPS32 big endian soft float microMIPS glibc |
| 315 | Select a MIPS generic core |
| 316 | Select BR2_SOFT_FLOAT |
| 317 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 318 | - MIPS32 little endian soft float microMIPS glibc |
| 319 | Select a MIPS generic core |
| 320 | Select BR2_SOFT_FLOAT |
| 321 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 322 | - MIPS32 big endian uclibc |
| 323 | Not usable in Buildroot yet. |
| 324 | - MIPS32 little endian uclibc |
| 325 | Not usable in Buildroot yet. |
| 326 | - MIPS32 big endian soft float uclibc |
| 327 | Not usable in Buildroot yet. |
| 328 | - MIPS32 little endian soft float uclibc |
| 329 | Not usable in Buildroot yet. |
| 330 | |
Thomas Petazzoni | 60e26e3 | 2012-12-20 13:23:20 +0000 | [diff] [blame] | 331 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201203 |
| 332 | bool "Sourcery CodeBench MIPS 2012.03" |
| 333 | depends on BR2_mips || BR2_mipsel |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 334 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 335 | depends on !BR2_MIPS_NABI32 |
Thomas Petazzoni | 60e26e3 | 2012-12-20 13:23:20 +0000 | [diff] [blame] | 336 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 337 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 338 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 339 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 60e26e3 | 2012-12-20 13:23:20 +0000 | [diff] [blame] | 340 | help |
| 341 | Sourcery CodeBench toolchain for the MIPS architecture, from |
| 342 | Mentor Graphics. It uses gcc 4.6.3, binutils 2.21.53, glibc |
| 343 | 2.15, uClibc 0.9.30 and gdb 7.2.50, kernel headers |
| 344 | 3.2.10. It has support for the following variants: |
| 345 | - MIPS32 O32 big endian glibc |
| 346 | Select a MIPS generic core |
| 347 | Disable BR2_SOFT_FLOAT |
| 348 | - MIPS64 big endian glibc |
| 349 | Select a MIPS generic core |
| 350 | Select the n64 ABI |
| 351 | Disable BR2_SOFT_FLOAT |
| 352 | - MIPS32 O32 little endian glibc |
| 353 | Select a MIPS generic core |
| 354 | Disable BR2_SOFT_FLOAT |
| 355 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 356 | - MIPS64 little endian glibc |
| 357 | Select a MIPS generic core |
| 358 | Select the n64 ABI |
| 359 | Disable BR2_SOFT_FLOAT |
| 360 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 361 | - MIPS32 big endian soft float glibc |
| 362 | Select a MIPS generic core |
| 363 | Select BR2_SOFT_FLOAT |
| 364 | - MIPS64 big endian soft float glibc |
| 365 | Select a MIPS generic core |
| 366 | Select the n64 ABI |
| 367 | Select BR2_SOFT_FLOAT |
| 368 | - MIPS32 little endian soft float glibc |
| 369 | Select a MIPS generic core |
| 370 | Select BR2_SOFT_FLOAT |
| 371 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 372 | - MIPS64 little endian soft float glibc |
| 373 | Select a MIPS generic core |
| 374 | Select the n64 ABI |
| 375 | Select BR2_SOFT_FLOAT |
| 376 | Set BR2_TARGET_OPTIMIZATION to -EL |
| 377 | - MIPS32 big endian microMIPS glibc |
| 378 | Select a MIPS generic core |
| 379 | Disable BR2_SOFT_FLOAT |
| 380 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 381 | - MIPS32 little endian microMIPS glibc |
| 382 | Select a MIPS generic core |
| 383 | Disable BR2_SOFT_FLOAT |
| 384 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 385 | - MIPS32 big endian soft float microMIPS glibc |
| 386 | Select a MIPS generic core |
| 387 | Select BR2_SOFT_FLOAT |
| 388 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 389 | - MIPS32 little endian soft float microMIPS glibc |
| 390 | Select a MIPS generic core |
| 391 | Select BR2_SOFT_FLOAT |
| 392 | Set BR2_TARGET_OPTIMIZATION to -EL -mips16 |
| 393 | - MIPS32 big endian uclibc |
| 394 | Not usable in Buildroot yet. |
| 395 | - MIPS32 little endian uclibc |
| 396 | Not usable in Buildroot yet. |
| 397 | - MIPS32 big endian soft float uclibc |
| 398 | Not usable in Buildroot yet. |
| 399 | - MIPS32 little endian soft float uclibc |
| 400 | Not usable in Buildroot yet. |
| 401 | |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 402 | comment "Sourcery CodeBench toolchains are only available for MIPS/MIPS64 o32 and n64" |
| 403 | depends on BR2_MIPS_NABI32 |
| 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" |
| 409 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 410 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 411 | select BR2_INSTALL_LIBSTDCPP |
| 412 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 413 | help |
| 414 | Sourcery CodeBench toolchain for the Nios-II architecture, |
| 415 | from Mentor Graphics. It uses gcc 4.7.3, binutils 2.23.52, |
| 416 | glibc 2.17, gdb 7.4.50 and kernel headers 3.7.0. |
| 417 | |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 418 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 |
| 419 | bool "Sourcery CodeBench PowerPC 2011.03" |
| 420 | depends on BR2_powerpc |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 421 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 422 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 423 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 424 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 425 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 426 | help |
| 427 | Sourcery CodeBench toolchain for the PowerPC architecture, |
| 428 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20.51, |
| 429 | glibc 2.13, gdb 7.2.50 and kernel headers 2.6.38. It has |
| 430 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 431 | - 603 glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 432 | Select a generic PowerPC core |
| 433 | Disable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 434 | - 603 soft float glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 435 | Select a generic PowerPC core |
| 436 | Enable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 437 | - e600 altivec glibc, 32 bits |
| 438 | Set BR2_TARGET_OPTIMIZATION to -te600 |
| 439 | - e500v1 glibc, 32 bits |
| 440 | Set BR2_TARGET_OPTIMIZATION to -te500v1 |
| 441 | - e500v2 glibc, 32 bits |
| 442 | Set BR2_TARGET_OPTIMIZATION to -te500v2 |
| 443 | - e500mc glibc, 32 bits |
| 444 | Set BR2_TARGET_OPTIMIZATION to -te500mc |
| 445 | - 970 glibc hard-float, 64 bits |
| 446 | Set BR2_TARGET_OPTIMIZATION to -m64 |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 447 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 448 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 449 | bool "Sourcery CodeBench PowerPC 2010.09" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 450 | depends on BR2_powerpc |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 451 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 452 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 453 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 6b578c8 | 2010-12-13 17:27:41 +0100 | [diff] [blame] | 454 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 455 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 456 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 457 | Sourcery CodeBench toolchain for the PowerPC architecture, |
Thomas Petazzoni | 2ec3e6d | 2012-01-15 20:02:11 +0100 | [diff] [blame] | 458 | from Mentor Graphics. It uses gcc 4.5.1, binutils 2.20, |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 459 | glibc 2.11, gdb 7.2.50 and kernel headers 2.6.35.2. It has |
| 460 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 461 | - 603 glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 462 | Select a generic PowerPC core |
| 463 | Disable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 464 | - 603 soft float glibc, 32 bits |
Thomas Petazzoni | c5c1064 | 2011-12-31 15:38:22 +0100 | [diff] [blame] | 465 | Select a generic PowerPC core |
| 466 | Enable BR2_SOFT_FLOAT |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 467 | - e600 altivec glibc, 32 bits |
| 468 | Set BR2_TARGET_OPTIMIZATION to -te600 |
| 469 | - e500v1 glibc, 32 bits |
| 470 | Set BR2_TARGET_OPTIMIZATION to -te500v1 |
| 471 | - e500v2 glibc, 32 bits |
| 472 | Set BR2_TARGET_OPTIMIZATION to -te500v2 |
| 473 | - e500mc glibc, 32 bits |
| 474 | Set BR2_TARGET_OPTIMIZATION to -te500mc |
| 475 | - 970 glibc hard-float, 64 bits |
| 476 | Set BR2_TARGET_OPTIMIZATION to -m64 |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 477 | |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 478 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201209 |
| 479 | bool "Sourcery CodeBench SH 2012.09" |
| 480 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 481 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 482 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 483 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 484 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 485 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 486 | help |
| 487 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 488 | from Mentor Graphics. It uses gcc 4.7.2, binutils 2.23.51, |
| 489 | glibc 2.16, uClibc 0.9.30, gdb 7.4.50 and kernel headers |
| 490 | 3.5.4. It has support for the following variants: |
| 491 | - SH4A, glibc, little endian |
| 492 | Default. |
| 493 | - SH4A, glibc, big endian |
| 494 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 495 | - SH4A, uClibc, little endian |
| 496 | Not usable in Buildroot yet. |
| 497 | - SH4A, uClibc, big endian |
| 498 | Not usable in Buildroot yet. |
| 499 | |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 500 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201203 |
| 501 | bool "Sourcery CodeBench SH 2012.03" |
| 502 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 503 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 504 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 505 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 506 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 507 | help |
| 508 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 509 | from Mentor Graphics. It uses gcc 4.6.3, binutils 2.21.53, |
| 510 | glibc 2.15, uClibc 0.9.30, gdb 7.2.50 and kernel headers |
| 511 | 3.2.10. It has support for the following variants: |
| 512 | - SH4A, glibc, little endian |
| 513 | Default. |
| 514 | - SH4A, glibc, big endian |
| 515 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 516 | - SH4A, uClibc, little endian |
| 517 | Not usable in Buildroot yet. |
| 518 | - SH4A, uClibc, big endian |
| 519 | Not usable in Buildroot yet. |
| 520 | |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 521 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201103 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 522 | bool "Sourcery CodeBench SH 2011.03" |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 523 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 524 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 525 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 526 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 527 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 528 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 529 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 530 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 531 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20, |
| 532 | glibc 2.13, uClibc 0.9.30, gdb 7.2.50 and kernel headers |
| 533 | 2.6.38. It has support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 534 | - SH4A, glibc, little endian |
| 535 | Default. |
| 536 | - SH4A, glibc, big endian |
| 537 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 538 | - SH4A, uClibc, little endian |
| 539 | Not usable in Buildroot yet. |
| 540 | - SH4A, uClibc, big endian |
| 541 | Not usable in Buildroot yet. |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 542 | |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 543 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201103 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 544 | bool "Sourcery CodeBench SH 2011.03" |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 545 | depends on BR2_sh2a |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 546 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 547 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 548 | select BR2_LARGEFILE |
Thomas Petazzoni | 0858e00 | 2012-11-03 18:47:49 +0100 | [diff] [blame] | 549 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 550 | select BR2_USE_WCHAR |
| 551 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 552 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 553 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 554 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 555 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 556 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 557 | from Mentor Graphics. It uses gcc 4.5.2, binutils 2.20, |
| 558 | uClibc 0.9.30, gdb 7.2.50 and kernel headers 2.6.38. It has |
| 559 | support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 560 | - SH2A, uClibc, big endian |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 561 | |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 562 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201009 |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 563 | bool "Sourcery CodeBench SH 2010.09" |
Phil Edworthy | d5247aa | 2011-05-09 14:12:53 +0100 | [diff] [blame] | 564 | depends on BR2_sh2a |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 565 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 566 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
Thomas Petazzoni | d63a817 | 2011-07-30 00:00:37 +0200 | [diff] [blame] | 567 | select BR2_LARGEFILE |
Thomas Petazzoni | 0858e00 | 2012-11-03 18:47:49 +0100 | [diff] [blame] | 568 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | d63a817 | 2011-07-30 00:00:37 +0200 | [diff] [blame] | 569 | select BR2_USE_WCHAR |
| 570 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 571 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 572 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 573 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 574 | help |
Thomas Petazzoni | 3a71493 | 2011-10-02 21:20:15 +0200 | [diff] [blame] | 575 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 576 | from Mentor Graphics. It uses gcc 4.5.1, binutils 2.20, |
| 577 | uClibc 0.9.30, gdb 7.2.50 and kernel headers 2.6.35.2. It |
| 578 | has support for the following variants: |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 579 | - SH2A, uClibc, big endian |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 580 | |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 581 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201209 |
| 582 | bool "Sourcery CodeBench x86/x86_64 2012.09" |
| 583 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 584 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 585 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 586 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 587 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 588 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 589 | help |
| 590 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 591 | architectures, from Mentor Graphics. It uses gcc 4.7.2, |
| 592 | binutils 2.23.51, glibc 2.16, gdb 7.4.50 and kernel headers |
| 593 | 3.5.4. It has support for the following variants: |
| 594 | - Intel Pentium 4, glibc, 32 bits |
| 595 | Default for x86, nothing special to do. |
| 596 | - Intel Atom, glibc, 32 bits |
| 597 | Select an Atom core |
| 598 | - Intel Xeon, glibc, 64 bits |
| 599 | Default for x86_64, nothing special to do. |
| 600 | - Intel Core 2, glibc, 64 bits |
| 601 | Select a Core 2 core |
| 602 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 603 | supported as well, but glibc is not optimised for it. |
| 604 | |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 605 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201203 |
| 606 | bool "Sourcery CodeBench x86/x86_64 2012.03" |
| 607 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 608 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 609 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 610 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 611 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 612 | help |
| 613 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 614 | architectures, from Mentor Graphics. It uses gcc 4.6.3, |
| 615 | binutils 2.21.53, glibc 2.15, gdb 7.2.50 and kernel headers |
| 616 | 3.2.10. It has support for the following variants: |
| 617 | - Intel Pentium 4, glibc, 32 bits |
| 618 | Default for x86, nothing special to do. |
| 619 | - Intel Atom, glibc, 32 bits |
| 620 | Select an Atom core |
| 621 | - Intel Xeon, glibc, 64 bits |
| 622 | Default for x86_64, nothing special to do. |
| 623 | - Intel Core 2, glibc, 64 bits |
| 624 | Select a Core 2 core |
| 625 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 626 | supported as well, but glibc is not optimised for it. |
| 627 | |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 628 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201109 |
| 629 | bool "Sourcery CodeBench x86/x86_64 2011.09" |
| 630 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 631 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 632 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 633 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 634 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 635 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 636 | help |
| 637 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 638 | architectures, from Mentor Graphics. It uses gcc 4.6.1, |
| 639 | binutils 2.21.53, glibc 2.13, gdb 7.2.50 and kernel headers |
| 640 | 3.0.1. It has support for the following variants: |
| 641 | - Intel Pentium 4, glibc, 32 bits |
Arnout Vandecappelle (Essensium/Mind) | a22dc0f | 2012-03-13 23:30:00 +0100 | [diff] [blame] | 642 | Default for x86, nothing special to do. |
| 643 | - Intel Atom, glibc, 32 bits |
| 644 | Select an Atom core |
| 645 | - Intel Xeon, glibc, 64 bits |
| 646 | Default for x86_64, nothing special to do. |
| 647 | - Intel Core 2, glibc, 64 bits |
| 648 | Select a Core 2 core |
| 649 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 650 | supported as well, but glibc is not optimised for it. |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 651 | |
Gustavo Zacarias | 82e39a2 | 2013-02-01 03:04:50 +0000 | [diff] [blame] | 652 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 |
| 653 | bool "Blackfin.uclinux.org 2012R2-RC2" |
| 654 | depends on BR2_bfin |
| 655 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 656 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 657 | select BR2_INSTALL_LIBSTDCPP |
| 658 | select BR2_LARGEFILE |
| 659 | select BR2_INET_IPV6 |
| 660 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 661 | select BR2_USE_WCHAR |
| 662 | select BR2_TOOLCHAIN_HAS_THREADS |
| 663 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 664 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 665 | help |
| 666 | Toolchain for the Blackfin architecture, from |
| 667 | http://blackfin.uclinux.org. |
| 668 | |
Thomas Petazzoni | 8d8a73f | 2013-04-07 08:01:01 +0000 | [diff] [blame] | 669 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1 |
Gustavo Zacarias | 82e39a2 | 2013-02-01 03:04:50 +0000 | [diff] [blame] | 670 | bool "Blackfin.uclinux.org 2012R1-RC2" |
Thomas Petazzoni | adf586e | 2012-06-03 16:04:39 +0200 | [diff] [blame] | 671 | depends on BR2_bfin |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 672 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | adf586e | 2012-06-03 16:04:39 +0200 | [diff] [blame] | 673 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 674 | select BR2_INSTALL_LIBSTDCPP |
| 675 | select BR2_LARGEFILE |
| 676 | select BR2_INET_IPV6 |
Thomas Petazzoni | 0858e00 | 2012-11-03 18:47:49 +0100 | [diff] [blame] | 677 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | adf586e | 2012-06-03 16:04:39 +0200 | [diff] [blame] | 678 | select BR2_USE_WCHAR |
| 679 | select BR2_TOOLCHAIN_HAS_THREADS |
| 680 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 681 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | adf586e | 2012-06-03 16:04:39 +0200 | [diff] [blame] | 682 | help |
| 683 | Toolchain for the Blackfin architecture, from |
| 684 | http://blackfin.uclinux.org. |
| 685 | |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 686 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_14_3 |
Jan Viktorin | cd34446 | 2013-07-08 16:08:18 +0200 | [diff] [blame] | 687 | bool "Xilinx Little Endian Microblaze GNU Tools 14.3" |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 688 | depends on BR2_microblazeel |
| 689 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 690 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 691 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 692 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 693 | help |
| 694 | Toolchain for the Microblaze architecture, from |
| 695 | http://git.xilinx.com/?p=microblaze-gnu.git;a=tree;f=binaries. It |
| 696 | uses gcc 4.6.2, binutils 2.21.53, glibc 2.14 and gdb 7.4.50. |
| 697 | |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 698 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2 |
Jan Viktorin | cd34446 | 2013-07-08 16:08:18 +0200 | [diff] [blame] | 699 | bool "Xilinx Little Endian Microblaze GNU Tools v2" |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 700 | depends on BR2_microblazeel |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 701 | depends on BR2_HOSTARCH = "x86_64" |
Thomas Petazzoni | 1f6e2b4 | 2012-08-01 23:47:04 +0200 | [diff] [blame] | 702 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 703 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 704 | help |
| 705 | Toolchain for the Microblaze architecture, from |
| 706 | http://wiki.xilinx.com/mb-gnu-tools |
| 707 | |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 708 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_14_3 |
| 709 | bool "Xilinx Big Endian Microblaze GNU Tools" |
Peter Korsgaard | c1a6f68 | 2013-04-11 07:50:53 +0200 | [diff] [blame] | 710 | depends on BR2_microblazebe |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 711 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 712 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 713 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 714 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 715 | help |
| 716 | Toolchain for the Microblaze architecture, from |
| 717 | http://git.xilinx.com/?p=microblaze-gnu.git;a=tree;f=binaries. It |
| 718 | uses gcc 4.6.2, binutils 2.21.53, glibc 2.14 and gdb 7.4.50. |
| 719 | |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 720 | config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2 |
| 721 | bool "Xilinx Big Endian Microblaze GNU Tools" |
| 722 | depends on BR2_microblazebe |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 723 | depends on BR2_HOSTARCH = "x86_64" |
Thomas Petazzoni | 1f6e2b4 | 2012-08-01 23:47:04 +0200 | [diff] [blame] | 724 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 725 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Alvaro G. M | bb7788f | 2012-03-16 14:42:55 +0100 | [diff] [blame] | 726 | help |
| 727 | Toolchain for the Microblaze architecture, from |
| 728 | http://wiki.xilinx.com/mb-gnu-tools |
| 729 | |
Thomas Petazzoni | 164f9fe | 2013-06-23 16:20:03 +0200 | [diff] [blame] | 730 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_06 |
| 731 | bool "Linaro AArch64 13.06" |
| 732 | depends on BR2_aarch64 |
| 733 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 734 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 735 | select BR2_INSTALL_LIBSTDCPP |
| 736 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 737 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 738 | help |
| 739 | Toolchain for the AArch64 architecture, from |
| 740 | http://www.linaro.org/engineering/armv8/ |
| 741 | |
Thomas Petazzoni | 405127d | 2013-06-08 11:14:16 +0200 | [diff] [blame] | 742 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_05 |
| 743 | bool "Linaro AArch64 13.05" |
| 744 | depends on BR2_aarch64 |
| 745 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 746 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 747 | select BR2_INSTALL_LIBSTDCPP |
| 748 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 749 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 750 | help |
| 751 | Toolchain for the AArch64 architecture, from |
| 752 | http://www.linaro.org/engineering/armv8/ |
| 753 | |
| 754 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_04 |
| 755 | bool "Linaro AArch64 13.04" |
| 756 | depends on BR2_aarch64 |
| 757 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 758 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 759 | select BR2_INSTALL_LIBSTDCPP |
| 760 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 761 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 762 | help |
| 763 | Toolchain for the AArch64 architecture, from |
| 764 | http://www.linaro.org/engineering/armv8/ |
| 765 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 766 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 767 | bool "Custom toolchain" |
| 768 | help |
| 769 | Use this option to use a custom toolchain pre-installed on |
| 770 | your system. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 771 | |
| 772 | endchoice |
| 773 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 774 | choice |
| 775 | prompt "Toolchain origin" |
Thomas Petazzoni | 7019407 | 2012-07-22 20:57:26 +0200 | [diff] [blame] | 776 | # Keep compatibility with old defconfig files that are using |
| 777 | # custom toolchains, and which are therefore assuming that |
| 778 | # "preinstalled" in the default choice. |
| 779 | default BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 780 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 781 | config BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 782 | bool "Toolchain to be downloaded and installed" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 783 | help |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 784 | Select this option if you want Buildroot to download and install the |
| 785 | toolchain. If you have selected a custom toolchain, specify the URL |
| 786 | in BR2_TOOLCHAIN_EXTERNAL_URL. |
| 787 | |
| 788 | config BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
| 789 | bool "Pre-installed toolchain" |
| 790 | help |
| 791 | Select this option if you want to use a pre-installed toolchain. |
| 792 | Specify the path to this toolchain in BR2_TOOLCHAIN_EXTERNAL_PATH. |
| 793 | |
| 794 | endchoice |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 795 | |
| 796 | config BR2_TOOLCHAIN_EXTERNAL_PATH |
| 797 | string "Toolchain path" |
| 798 | default "/path/to/toolchain/usr" |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 799 | depends on BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 800 | help |
| 801 | Path to where the external toolchain is installed. |
| 802 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 803 | config BR2_TOOLCHAIN_EXTERNAL_URL |
| 804 | string "Toolchain URL" |
| 805 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM && BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
| 806 | help |
| 807 | URL of the custom toolchain tarball to download and install. |
| 808 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 809 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX |
| 810 | string "Toolchain prefix" |
| 811 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 812 | default "$(ARCH)-linux" |
| 813 | |
| 814 | config BR2_TOOLCHAIN_EXTERNAL_PREFIX |
| 815 | string |
Thomas Petazzoni | 88d9d17 | 2013-06-23 16:20:02 +0200 | [diff] [blame] | 816 | default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_06 |
Thomas Petazzoni | ea25177 | 2013-06-08 11:14:15 +0200 | [diff] [blame] | 817 | default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_05 |
| 818 | default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_04 |
Thomas Petazzoni | 102c6b5 | 2011-12-31 12:18:23 +0100 | [diff] [blame] | 819 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201109 |
Fabio Porcedda | 7bcb494 | 2012-09-10 00:02:57 +0000 | [diff] [blame] | 820 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203 |
Fabio Porcedda | 786700e | 2013-05-26 12:08:19 +0000 | [diff] [blame] | 821 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201305 |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 822 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A_201109 |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 823 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE_201109 |
Thomas Petazzoni | 164f9fe | 2013-06-23 16:20:03 +0200 | [diff] [blame] | 824 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_06 |
Thomas Petazzoni | 405127d | 2013-06-08 11:14:16 +0200 | [diff] [blame] | 825 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_05 |
| 826 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64_13_04 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 827 | 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] | 828 | default "microblazeel-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2 |
Thomas Petazzoni | 313094d | 2013-02-04 22:37:29 +0000 | [diff] [blame] | 829 | 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] | 830 | default "microblaze-unknown-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2 |
Thomas Petazzoni | 60e26e3 | 2012-12-20 13:23:20 +0000 | [diff] [blame] | 831 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201203 |
Thomas Petazzoni | 8de1f57 | 2012-12-20 13:23:21 +0000 | [diff] [blame] | 832 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201209 |
Markos Chandras | 4d34fb7 | 2013-06-08 11:14:14 +0200 | [diff] [blame] | 833 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201305 |
Ezequiel Garcia | d1de1c0 | 2013-08-29 19:10:41 -0300 | [diff] [blame^] | 834 | default "nios2-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 835 | default "powerpc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 |
Thomas Petazzoni | 22e0698 | 2011-12-31 12:28:34 +0100 | [diff] [blame] | 836 | default "powerpc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 |
Thomas Petazzoni | 42c0fb4 | 2011-10-02 21:20:13 +0200 | [diff] [blame] | 837 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201103 |
Thomas Petazzoni | 41d85c0 | 2012-11-04 07:34:19 +0000 | [diff] [blame] | 838 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201203 |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 839 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH201209 |
Phil Edworthy | 9515745 | 2011-05-06 15:23:04 +0100 | [diff] [blame] | 840 | default "sh-uclinux" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201009 |
Thomas Petazzoni | ae23646 | 2011-10-02 21:20:11 +0200 | [diff] [blame] | 841 | default "sh-uclinux" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH2A_201103 |
Thomas Petazzoni | d00bd2a | 2011-12-31 12:34:33 +0100 | [diff] [blame] | 842 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201109 |
Thomas Petazzoni | 363cb60 | 2012-11-04 07:34:20 +0000 | [diff] [blame] | 843 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201203 |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 844 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86_201209 |
Sonic Zhang | 5713382 | 2013-05-03 00:39:34 +0000 | [diff] [blame] | 845 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1 && BR2_BINFMT_FLAT |
| 846 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1 && BR2_BINFMT_FDPIC |
| 847 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && BR2_BINFMT_FLAT |
| 848 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && BR2_BINFMT_FDPIC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 849 | default $(BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX) \ |
| 850 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 851 | |
| 852 | config BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 853 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 854 | select BR2_TOOLCHAIN_USES_GLIBC |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 855 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 856 | config BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 857 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 858 | select BR2_TOOLCHAIN_USES_UCLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 859 | |
| 860 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 861 | |
| 862 | choice |
| 863 | prompt "External toolchain C library" |
| 864 | default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 865 | |
| 866 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 867 | bool "uClibc" |
| 868 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
Thomas Petazzoni | b988292 | 2011-05-30 23:56:57 +0200 | [diff] [blame] | 869 | # For the time being, we assume that all custom external |
| 870 | # toolchains have shadow password support. |
| 871 | select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 872 | |
| 873 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 874 | bool "glibc/eglibc" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 875 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 876 | help |
| 877 | Note: eglibc is a variant of glibc that (among other things) can be |
| 878 | configured to exclude some of its features. Using a toolchain with |
| 879 | eglibc configured to exclude key features may cause build failures to |
| 880 | some packages. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 881 | |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 882 | endchoice |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 883 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 884 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 885 | |
| 886 | config BR2_TOOLCHAIN_EXTERNAL_LARGEFILE |
| 887 | bool "Toolchain has large file support?" |
| 888 | select BR2_LARGEFILE |
| 889 | help |
| 890 | Select this option if your external toolchain supports |
| 891 | largefile. If you don't know, leave the default value, |
| 892 | Buildroot will tell you if it's correct or not. |
| 893 | |
| 894 | config BR2_TOOLCHAIN_EXTERNAL_INET_IPV6 |
| 895 | bool "Toolchain has IPv6 support?" |
| 896 | select BR2_INET_IPV6 |
| 897 | help |
| 898 | Select this option if your external toolchain supports |
| 899 | IPv6. If you don't know, leave the default value, Buildroot |
| 900 | will tell you if it's correct or not. |
| 901 | |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 902 | config BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 903 | bool "Toolchain has WCHAR support?" |
| 904 | select BR2_USE_WCHAR |
| 905 | help |
| 906 | Select this option if your external toolchain supports |
| 907 | WCHAR. If you don't know, leave the default value, Buildroot |
| 908 | will tell you if it's correct or not. |
| 909 | |
| 910 | config BR2_TOOLCHAIN_EXTERNAL_LOCALE |
| 911 | bool "Toolchain has locale support?" |
| 912 | select BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 913 | select BR2_ENABLE_LOCALE |
| 914 | help |
| 915 | Select this option if your external toolchain has locale |
| 916 | support. If you don't know, leave the default value, |
| 917 | Buildroot will tell you if it's correct or not. |
| 918 | |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 919 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 920 | bool "Toolchain has threads support?" |
| 921 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 04d0689 | 2011-07-26 15:28:19 +0200 | [diff] [blame] | 922 | default y |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 923 | help |
| 924 | Select this option if your external toolchain has thread |
| 925 | support. If you don't know, leave the default value, |
| 926 | Buildroot will tell you if it's correct or not. |
| 927 | |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 928 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG |
| 929 | bool "Toolchain has threads debugging support?" |
| 930 | depends on BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 931 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 932 | default y |
| 933 | help |
| 934 | Select this option if your external toolchain has thread |
| 935 | debugging support. If you don't know, leave the default |
| 936 | value, Buildroot will tell you if it's correct or not. |
| 937 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 938 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 939 | |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 940 | config BR2_TOOLCHAIN_EXTERNAL_INET_RPC |
| 941 | bool "Toolchain has RPC support?" |
| 942 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | 3a843a3 | 2012-11-04 07:34:29 +0000 | [diff] [blame] | 943 | default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 944 | help |
| 945 | Select this option if your external toolchain supports |
| 946 | RPC. If you don't know, leave the default value, Buildroot |
| 947 | will tell you if it's correct or not. |
| 948 | |
Thomas Petazzoni | 6b578c8 | 2010-12-13 17:27:41 +0100 | [diff] [blame] | 949 | config BR2_TOOLCHAIN_EXTERNAL_CXX |
| 950 | bool "Toolchain has C++ support?" |
| 951 | select BR2_INSTALL_LIBSTDCPP |
| 952 | help |
| 953 | Select this option if your external toolchain has C++ |
| 954 | support. If you don't know, leave the default value, |
| 955 | Buildroot will tell you if it's correct or not. |
| 956 | |
Thomas De Schampheleire | c72f54b | 2011-10-02 21:20:10 +0200 | [diff] [blame] | 957 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS |
| 958 | string "Extra toolchain libraries to be copied to target" |
| 959 | help |
| 960 | If your external toolchain provides extra libraries that |
| 961 | need to be copied to the target filesystem, enter them |
| 962 | here, separated by spaces. They will be copied to the |
| 963 | target's /lib directory. |
| 964 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 965 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 966 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 967 | config BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY |
| 968 | bool "Copy gdb server to the Target" |
| 969 | depends on BR2_TOOLCHAIN_EXTERNAL |
| 970 | help |
| 971 | Copy the gdbserver provided by the external toolchain to the |
| 972 | target. |
| 973 | |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 974 | # When the FDPIC shared binary format is used, the corresponding libraries are |
| 975 | # always installed. When a different binary format is used, we offer the option |
| 976 | # of installing the FDPIC shared libraries. |
| 977 | config BR2_BFIN_INSTALL_FDPIC_SHARED |
| 978 | bool "Install FDPIC shared libraries" |
| 979 | depends on BR2_bfin && !BR2_BINFMT_FDPIC |
| 980 | help |
| 981 | The Linux kernel supports running both FDPIC and FLAT applications |
| 982 | concurrently if the binary format specific libraries are installed |
| 983 | properly. This option allows developer to install FDPIC libraries |
| 984 | into a buildroot rootfs image built with binary format that is not |
| 985 | FDPIC. |
| 986 | |
| 987 | # When the FLAT shared binary format is used, we force the installation |
| 988 | # of the corresponding libraries. When a different binary format is |
| 989 | # used, we offer the option of installing the FLAT shared libraries. |
| 990 | config BR2_BFIN_INSTALL_FLAT_SHARED |
| 991 | bool "Install FLAT shared libraries" if !BR2_BINFMT_FLAT_SHARED |
| 992 | depends on BR2_bfin |
| 993 | default y if BR2_BINFMT_FLAT_SHARED |
| 994 | help |
| 995 | The Linux kernel supports running both FDPIC and FLAT applications |
| 996 | concurrently if the binary format specific libraries are installed |
| 997 | properly. This option allows developer to install FLAT libraries |
| 998 | into a buildroot rootfs image built with binary format that is not |
| 999 | shared FLAT. |
| 1000 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1001 | endif # BR2_TOOLCHAIN_EXTERNAL |
| 1002 | |