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 | |
Petri Gynther | 8218ab8 | 2016-08-08 11:34:59 -0700 | [diff] [blame^] | 3 | comment "Toolchain External Options" |
| 4 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 5 | choice |
| 6 | prompt "Toolchain" |
| 7 | |
Thomas Petazzoni | 416fd9c | 2016-06-08 23:40:54 +0200 | [diff] [blame] | 8 | comment "glibc toolchains only available with shared lib support" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 9 | depends on BR2_STATIC_LIBS |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 10 | |
Yann E. MORIN | 87785ec | 2015-09-20 23:45:49 +0200 | [diff] [blame] | 11 | comment "Linaro toolchains available for Cortex-A + EABIhf" |
| 12 | depends on BR2_arm || BR2_armeb |
| 13 | depends on !BR2_ARM_CPU_ARMV7A || !BR2_ARM_EABIHF |
| 14 | depends on !BR2_STATIC_LIBS |
| 15 | |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 16 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_ARM |
Romain Naour | 227553b | 2016-09-24 11:37:51 +0200 | [diff] [blame] | 17 | bool "Linaro ARM 2016.05" |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 18 | depends on BR2_arm |
| 19 | depends on BR2_ARM_CPU_ARMV7A |
Romain Naour | 3411db0 | 2016-10-11 23:04:57 +0200 | [diff] [blame] | 20 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 21 | depends on BR2_ARM_EABIHF |
| 22 | depends on !BR2_STATIC_LIBS |
| 23 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 24 | select BR2_TOOLCHAIN_HAS_SSP |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 25 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 26 | select BR2_INSTALL_LIBSTDCPP |
| 27 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 28 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Samuel Martin | 0175684 | 2016-07-03 15:47:48 +0200 | [diff] [blame] | 29 | select BR2_TOOLCHAIN_HAS_FORTRAN |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 30 | help |
| 31 | Linaro toolchain for the ARM architecture. It uses Linaro |
Romain Naour | 227553b | 2016-09-24 11:37:51 +0200 | [diff] [blame] | 32 | GCC 2016.05 (based on gcc 5.3.1), Linaro GDB 2016.05 (based on |
| 33 | GDB 7.11.1), glibc 2.21, Binutils 2016.05 (based on 2.25). It |
Yann E. MORIN | 9b3b98b | 2015-10-27 00:49:39 +0100 | [diff] [blame] | 34 | generates code that runs on all Cortex-A profile devices, |
| 35 | but tuned for the Cortex-A9. The code generated is Thumb 2, |
| 36 | with the hard floating point calling convention, and uses |
| 37 | the VFPv3-D16 FPU instructions. |
| 38 | |
Yann E. MORIN | 997ef60 | 2015-10-27 00:49:40 +0100 | [diff] [blame] | 39 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB |
Romain Naour | 93e82b6 | 2016-09-24 11:37:52 +0200 | [diff] [blame] | 40 | bool "Linaro armeb 2016.05" |
Yann E. MORIN | 997ef60 | 2015-10-27 00:49:40 +0100 | [diff] [blame] | 41 | depends on BR2_armeb |
| 42 | depends on BR2_ARM_CPU_ARMV7A |
Romain Naour | 9c9ddc4 | 2016-10-11 23:04:58 +0200 | [diff] [blame] | 43 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Yann E. MORIN | 997ef60 | 2015-10-27 00:49:40 +0100 | [diff] [blame] | 44 | depends on BR2_ARM_EABIHF |
| 45 | depends on !BR2_STATIC_LIBS |
| 46 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 47 | select BR2_TOOLCHAIN_HAS_SSP |
Yann E. MORIN | 997ef60 | 2015-10-27 00:49:40 +0100 | [diff] [blame] | 48 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 49 | select BR2_INSTALL_LIBSTDCPP |
| 50 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 51 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
| 52 | help |
| 53 | Linaro toolchain for the ARM big endian architecture. It |
Romain Naour | 93e82b6 | 2016-09-24 11:37:52 +0200 | [diff] [blame] | 54 | uses Linaro GCC 2016.05 (based on gcc 5.3.1), Linaro GDB |
| 55 | 2016.05 (based on GDB 7.11.1), glibc 2.21, Binutils 2016.05 |
Yann E. MORIN | 997ef60 | 2015-10-27 00:49:40 +0100 | [diff] [blame] | 56 | (based on 2.25). It generates code that runs on all Cortex-A |
| 57 | profile devices, but tuned for the Cortex-A9. The code |
| 58 | generated is Thumb 2, with the hard floating point calling |
| 59 | convention, and uses the VFPv3-D16 FPU instructions. |
| 60 | |
Romain Naour | eb713cf | 2015-12-19 19:14:40 +0100 | [diff] [blame] | 61 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 62 | bool "Sourcery CodeBench ARM 2014.05" |
| 63 | depends on BR2_arm |
| 64 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 65 | depends on BR2_ARM_EABI |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 66 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 67 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 68 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 69 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 70 | select BR2_INSTALL_LIBSTDCPP |
| 71 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 72 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 73 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 |
Thomas Petazzoni | 93f3c04 | 2014-09-15 23:49:35 +0200 | [diff] [blame] | 74 | help |
| 75 | Sourcery CodeBench toolchain for the ARM architecture, from |
| 76 | Mentor Graphics. It uses gcc 4.8.3, binutils 2.24.51, glibc |
| 77 | 2.18 and gdb 7.7.50, kernel headers 3.13. It has support |
| 78 | for the following variants: |
| 79 | - ARMv5TE, little endian, soft-float, glibc |
| 80 | Select ARM926T, ARM10T, XScale or another ARMv5 core |
| 81 | Select BR2_SOFT_FLOAT |
| 82 | - ARMv4T, little endian, soft-float, glibc |
| 83 | Select ARM720T, ARM920T, ARM922T or another ARMv4 core |
| 84 | Select BR2_SOFT_FLOAT |
| 85 | - ARMv7-A, Thumb 2, little endian, soft-float, glibc |
| 86 | Select Cortex-A8, Cortex-A9 or another ARMv7-A core |
| 87 | Select BR2_SOFT_FLOAT |
| 88 | Set BR2_TARGET_OPTIMIZATION to -mthumb |
| 89 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 90 | comment "Sourcery CodeBench toolchains available for the EABI ABI" |
| 91 | depends on BR2_arm |
| 92 | depends on !BR2_ARM_EABI |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 93 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 94 | |
Romain Naour | 1820624 | 2015-12-19 19:14:46 +0100 | [diff] [blame] | 95 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 96 | bool "Arago ARMv7 2011.09" |
| 97 | depends on BR2_arm |
| 98 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 99 | depends on BR2_ARM_CPU_ARMV7A |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 100 | depends on BR2_ARM_EABI |
Yann E. MORIN | 08ce109 | 2015-12-26 17:05:45 +0100 | [diff] [blame] | 101 | depends on BR2_ARM_CPU_HAS_VFPV3 |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 102 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 103 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 104 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 105 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 106 | select BR2_INSTALL_LIBSTDCPP |
| 107 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 108 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_5 |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 109 | # kernel headers: 2.6.31 |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 110 | help |
| 111 | Texas Instruments Arago 2011.09 toolchain, with gcc 4.5.3, |
| 112 | binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 113 | |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 114 | This toolchain uses -mfloat-abi=softfp (i.e can use FPU |
| 115 | instructions, but passes floating point function arguments |
| 116 | in integer registers), and requires a VFPv3 floating point |
| 117 | unit to work properly. This unit is available on most |
| 118 | Cortex-A ARM processors, but not all. |
Thomas Petazzoni | 93d2b24 | 2013-06-08 11:14:17 +0200 | [diff] [blame] | 119 | |
Romain Naour | 1820624 | 2015-12-19 19:14:46 +0100 | [diff] [blame] | 120 | config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 121 | bool "Arago ARMv5 2011.09" |
| 122 | depends on BR2_arm |
| 123 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 29f6806 | 2014-10-21 22:27:06 +0200 | [diff] [blame] | 124 | depends on !BR2_ARM_CPU_ARMV4 |
Thomas Petazzoni | ea6b277 | 2013-07-16 10:03:20 +0200 | [diff] [blame] | 125 | depends on BR2_ARM_EABI |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 126 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 127 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 128 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 129 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 130 | select BR2_INSTALL_LIBSTDCPP |
| 131 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 132 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_5 |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 133 | # kernel headers: 2.6.31 |
Thomas Petazzoni | 2592f25 | 2013-06-08 11:14:18 +0200 | [diff] [blame] | 134 | help |
| 135 | Texas Instruments Arago ARMv5 2011.09 toolchain, with gcc |
| 136 | 4.5.3, binutils 2.20.1, glibc 2.12, gdb 7.2. |
| 137 | |
| 138 | This toolchain uses software-floating point. |
| 139 | |
Romain Naour | d9306ad | 2015-11-21 17:36:19 +0100 | [diff] [blame] | 140 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS |
Romain Naour | 230cfce | 2016-04-30 23:10:25 +0200 | [diff] [blame] | 141 | bool "Sourcery CodeBench MIPS 2016.05" |
Vicente Olivert Riera | 9f4ec37 | 2015-06-04 17:03:43 +0100 | [diff] [blame] | 142 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
Vicente Olivert Riera | 45c92c6 | 2016-09-30 10:36:49 +0100 | [diff] [blame] | 143 | depends on BR2_MIPS_CPU_MIPS32R2 || BR2_MIPS_CPU_MIPS64R2 |
Vicente Olivert Riera | ef3e732 | 2016-09-30 10:36:54 +0100 | [diff] [blame] | 144 | # Unsupported MIPS cores |
| 145 | depends on !BR2_mips_interaptiv |
Vicente Olivert Riera | 9f4ec37 | 2015-06-04 17:03:43 +0100 | [diff] [blame] | 146 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 147 | depends on !BR2_MIPS_NABI32 |
| 148 | depends on !BR2_STATIC_LIBS |
| 149 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 150 | select BR2_TOOLCHAIN_HAS_SSP |
Vicente Olivert Riera | 9f4ec37 | 2015-06-04 17:03:43 +0100 | [diff] [blame] | 151 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 152 | select BR2_INSTALL_LIBSTDCPP |
| 153 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Romain Naour | 230cfce | 2016-04-30 23:10:25 +0200 | [diff] [blame] | 154 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4 |
Romain Naour | 6278da1 | 2015-11-21 17:36:20 +0100 | [diff] [blame] | 155 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Vicente Olivert Riera | 9f4ec37 | 2015-06-04 17:03:43 +0100 | [diff] [blame] | 156 | help |
| 157 | Sourcery CodeBench toolchain for the MIPS architecture, from |
Romain Naour | 230cfce | 2016-04-30 23:10:25 +0200 | [diff] [blame] | 158 | Mentor Graphics. It uses gcc 5.3, binutils 2.25.51, glibc |
| 159 | 2.23, uClibc 0.9.30 and gdb 7.10.50, kernel headers 4.4.1. It |
Vicente Olivert Riera | 9f4ec37 | 2015-06-04 17:03:43 +0100 | [diff] [blame] | 160 | has support for the following variants: |
| 161 | - MIPS32r2 - Big-Endian, 2008 NaN, O32 |
| 162 | Select MIPS (big endian) core |
| 163 | Disable BR2_SOFT_FLOAT |
| 164 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 165 | - MIPS32r2 - Big-Endian, O32 |
| 166 | Select MIPS (big endian) core |
| 167 | Disable BR2_SOFT_FLOAT |
| 168 | - MIPS32r2 - Big-Endian, O32, MIPS16 |
| 169 | Select MIPS (big endian) core |
| 170 | Disable BR2_SOFT_FLOAT |
| 171 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 172 | - MIPS32r2 - Big-Endian, Soft-Float, O32 |
| 173 | Select MIPS (big endian) core |
| 174 | Select BR2_SOFT_FLOAT |
| 175 | - MIPS32r2 - Big-Endian, Soft-Float, O32, MIPS16 |
| 176 | Select MIPS (big endian) core |
| 177 | Select BR2_SOFT_FLOAT |
| 178 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 179 | - MIPS32r2 - Little-Endian, 2008 NaN, O32 |
| 180 | Select MIPS (little endian) core |
| 181 | Disable BR2_SOFT_FLOAT |
| 182 | Set BR2_TARGET_OPTIMIZATION to -mnan=2008 |
| 183 | - MIPS32r2 - Little-Endian, O32 |
| 184 | Select MIPS (little endian) core |
| 185 | Disable BR2_SOFT_FLOAT |
| 186 | - MIPS32r2 - Little-Endian, O32, MIPS16 |
| 187 | Select MIPS (little endian) core |
| 188 | Disable BR2_SOFT_FLOAT |
| 189 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 190 | - MIPS32r2 - Little-Endian, Soft-Float, O32 |
| 191 | Select MIPS (little endian) core |
| 192 | Select BR2_SOFT_FLOAT |
| 193 | - MIPS32r2 - Little-Endian, Soft-Float, O32, MIPS16 |
| 194 | Select MIPS (little endian) core |
| 195 | Select BR2_SOFT_FLOAT |
| 196 | Set BR2_TARGET_OPTIMIZATION to -mips16 |
| 197 | - MIPS32r2 - Little-Endian, Soft-Float, O32, microMIPS |
| 198 | Select MIPS (little endian) core |
| 199 | Select BR2_SOFT_FLOAT |
| 200 | Set BR2_TARGET_OPTIMIZATION to -mmicromips |
| 201 | - MIPS32r2 - uClibc, Big-Endian, 2008 NaN, O32 |
| 202 | Not usable in Buildroot yet. |
| 203 | - MIPS32r2 - uClibc, Big-Endian, O32 |
| 204 | Not usable in Buildroot yet. |
| 205 | - MIPS32r2 - uClibc, Big-Endian, Soft-Float, O32 |
| 206 | Not usable in Buildroot yet. |
| 207 | - MIPS32r2 - uClibc, Little-Endian, 2008 NaN, O32 |
| 208 | Not usable in Buildroot yet. |
| 209 | - MIPS32r2 - uClibc, Little-Endian, O32 |
| 210 | Not usable in Buildroot yet. |
| 211 | - MIPS32r2 - uClibc, Little-Endian, Soft-Float, O32 |
| 212 | Not usable in Buildroot yet. |
| 213 | - MIPS64r2 - Big-Endian, N64 |
| 214 | Select MIPS64 (big endian) core |
| 215 | Select the n64 ABI |
| 216 | Disable BR2_SOFT_FLOAT |
| 217 | - MIPS64r2 - Big-Endian, Soft-Float, N64 |
| 218 | Select MIPS64 (big endian) core |
| 219 | Select the n64 ABI |
| 220 | Select BR2_SOFT_FLOAT |
| 221 | - MIPS64r2 - Little-Endian, N64 |
| 222 | Select MIPS64 (little endian) core |
| 223 | Select the n64 ABI |
| 224 | Disable BR2_SOFT_FLOAT |
| 225 | - MIPS64r2 - Little-Endian, Soft-Float, N64 |
| 226 | Select MIPS64 (little endian) core |
| 227 | Select the n64 ABI |
| 228 | Select BR2_SOFT_FLOAT |
| 229 | |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 230 | comment "Sourcery CodeBench toolchains are only available for MIPS/MIPS64 o32 and n64" |
| 231 | depends on BR2_MIPS_NABI32 |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 232 | depends on !BR2_STATIC_LIBS |
Markos Chandras | 6f70ba3 | 2013-08-13 09:45:44 +0100 | [diff] [blame] | 233 | |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 234 | config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS |
Vicente Olivert Riera | ddf2867 | 2016-07-04 11:17:40 +0100 | [diff] [blame] | 235 | bool "Codescape IMG GNU Linux Toolchain 2016.05" |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 236 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 237 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Vicente Olivert Riera | 45c92c6 | 2016-09-30 10:36:49 +0100 | [diff] [blame] | 238 | depends on BR2_MIPS_CPU_MIPS32R6 || (BR2_MIPS_CPU_MIPS64R6 && !BR2_MIPS_SOFT_FLOAT) |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 239 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 240 | select BR2_INSTALL_LIBSTDCPP |
| 241 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 242 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 243 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 |
Vicente Olivert Riera | ddf2867 | 2016-07-04 11:17:40 +0100 | [diff] [blame] | 244 | select BR2_TOOLCHAIN_HAS_FORTRAN |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 245 | help |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 246 | Codescape IMG GNU Linux Toolchain 2015.10 for the MIPS |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 247 | architecture, from Imagination Technologies. It uses gcc |
| 248 | 4.9.2, binutils 2.24.90, glibc 2.20, gdb 7.9.1 and kernel |
| 249 | headers 4.0. It has support for the following variants: |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 250 | - MIPS32r6 - Big-Endian, Hard-Float, 2008 NaN, o32 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 251 | Select 'MIPS (big endian)' Target Architecture |
| 252 | Select 'mips 32r6' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 253 | Disable 'Use soft-float' |
| 254 | - MIPS32r6 - Big-Endian, Soft-Float, 2008 NaN, o32 ABI |
| 255 | Select 'MIPS (big endian)' Target Architecture |
| 256 | Select 'mips 32r6' Target Architecture Variant |
| 257 | Enable 'Use soft-float' |
| 258 | - MIPS32r6 - Little-Endian, Hard-Float, 2008 NaN, o32 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 259 | Select 'MIPS (little endian)' Target Architecture |
| 260 | Select 'mips 32r6' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 261 | Disable 'Use soft-float' |
| 262 | - MIPS32r6 - Little-Endian, Soft-Float, 2008 NaN, o32 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 263 | Select 'MIPS (little endian)' Target Architecture |
| 264 | Select 'mips 32r6' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 265 | Enable 'Use soft-float' |
| 266 | - MIPS32r6 - Little-Endian, Hard-Float, 2008 NaN, o32 ABI, microMIPS |
| 267 | Select 'MIPS (little endian)' Target Architecture |
| 268 | Select 'mips 32r6' Target Architecture Variant |
| 269 | Disable 'Use soft-float' |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 270 | Set BR2_TARGET_OPTIMIZATION to '-mmicromips' |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 271 | - MIPS32r6 - Little-Endian, Soft-Float, 2008 NaN, o32 ABI, microMIPS |
| 272 | Select 'MIPS (little endian)' Target Architecture |
| 273 | Select 'mips 32r6' Target Architecture Variant |
| 274 | Enable 'Use soft-float' |
| 275 | Set BR2_TARGET_OPTIMIZATION to '-mmicromips' |
| 276 | - MIPS64r6 - Big-Endian, Hard-Float, 2008 NaN, n32 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 277 | Select 'MIPS64 (big endian)' Target Architecture |
| 278 | Select 'mips 64r6' Target Architecture Variant |
| 279 | Select 'n32' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 280 | Disable 'Use soft-float' |
| 281 | - MIPS64r6 - Little-Endian, Hard-Float, 2008 NaN, n32 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 282 | Select 'MIPS64 (little endian)' Target Architecture |
| 283 | Select 'mips 64r6' Target Architecture Variant |
| 284 | Select 'n32' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 285 | Disable 'Use soft-float' |
| 286 | - MIPS64r6 - Big-Endian, Hard-Float, 2008 NaN, n64 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 287 | Select 'MIPS64 (big endian)' Target Architecture |
| 288 | Select 'mips 64r6' Target Architecture Variant |
| 289 | Select 'n64' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 290 | Disable 'Use soft-float' |
| 291 | - MIPS64r6 - Little-Endian, Hard-Float, 2008 NaN, n64 ABI |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 292 | Select 'MIPS64 (little endian)' Target Architecture |
| 293 | Select 'mips 64r6' Target Architecture Variant |
| 294 | Select 'n64' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 295 | Disable 'Use soft-float' |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 296 | |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 297 | config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS |
Vicente Olivert Riera | ddf2867 | 2016-07-04 11:17:40 +0100 | [diff] [blame] | 298 | bool "Codescape MTI GNU Linux Toolchain 2016.05" |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 299 | depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el |
| 300 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Vicente Olivert Riera | 2373ce2 | 2016-09-30 10:36:53 +0100 | [diff] [blame] | 301 | depends on BR2_MIPS_CPU_MIPS32R2 || (BR2_MIPS_CPU_MIPS64R2 && !BR2_MIPS_SOFT_FLOAT) || \ |
| 302 | BR2_MIPS_CPU_MIPS32R5 || (BR2_MIPS_CPU_MIPS64R5 && !BR2_MIPS_SOFT_FLOAT) |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 303 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 304 | select BR2_INSTALL_LIBSTDCPP |
| 305 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 306 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 307 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 |
Vicente Olivert Riera | ddf2867 | 2016-07-04 11:17:40 +0100 | [diff] [blame] | 308 | select BR2_TOOLCHAIN_HAS_FORTRAN |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 309 | help |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 310 | Codescape MTI GNU Linux Toolchain 2015.10 for the MIPS |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 311 | architecture, from Imagination Technologies. It uses gcc |
| 312 | 4.9.2, binutils 2.24.90, glibc 2.20, gdb 7.9.1 and kernel |
| 313 | headers 4.0. It has support for the following variants: |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 314 | - MIPS32r2 - Big-Endian, Hard-Float, Legacy NaN, o32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 315 | Select 'MIPS (big endian)' Target Architecture |
| 316 | Select 'mips 32r2' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 317 | Disable 'Use soft-float' |
| 318 | - MIPS32r2 - Big-Endian, Hard-Float, 2008 NaN, o32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 319 | Select 'MIPS (big endian)' Target Architecture |
| 320 | Select 'mips 32r2' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 321 | Disable 'Use soft-float' |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 322 | Set BR2_TARGET_OPTIMIZATION to '-mnan=2008' |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 323 | - MIPS32r2 - Big-Endian, Soft-Float, Legacy NaN, o32 ABI |
| 324 | Select 'MIPS (big endian)' Target Architecture |
| 325 | Select 'mips 32r2' Target Architecture Variant |
| 326 | Enable 'Use soft-float' |
| 327 | - MIPS32r2 - Little-Endian, Hard-Float, Legacy NaN, o32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 328 | Select 'MIPS (little endian)' Target Architecture |
| 329 | Select 'mips 32r2' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 330 | Disable 'Use soft-float' |
| 331 | - MIPS32r2 - Little-Endian, Hard-Float, 2008 NaN, o32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 332 | Select 'MIPS (little endian)' Target Architecture |
| 333 | Select 'mips 32r2' Target Architecture Variant |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 334 | Disable 'Use soft-float' |
| 335 | Set BR2_TARGET_OPTIMIZATION to '-mnan=2008' |
| 336 | - MIPS32r2 - Little-Endian, Soft-Float, Legacy NaN, o32 ABI |
| 337 | Select 'MIPS (little endian)' Target Architecture |
| 338 | Select 'mips 32r2' Target Architecture Variant |
| 339 | Enable 'Use soft-float' |
| 340 | - MIPS32r2 - Little-Endian, Hard-Float, 2008 NaN, o32 ABI, microMIPS |
| 341 | Select 'MIPS (little endian)' Target Architecture |
| 342 | Select 'mips 32r2' Target Architecture Variant |
| 343 | Enable 'Use soft-float' |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 344 | Set BR2_TARGET_OPTIMIZATION to '-mmicromips' |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 345 | - MIPS32r2 - Little-Endian, Soft-Float, Legacy NaN, o32 ABI, microMIPS |
| 346 | Select 'MIPS (little endian)' Target Architecture |
| 347 | Select 'mips 32r2' Target Architecture Variant |
| 348 | Disable 'Use soft-float' |
| 349 | Set BR2_TARGET_OPTIMIZATION to '-mmicromips' |
| 350 | - MIPS64r2 - Big-Endian, Hard-Float, Legacy NaN, n32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 351 | Select 'MIPS64 (big endian)' Target Architecture |
| 352 | Select 'mips 64r2' Target Architecture Variant |
| 353 | Select 'n32' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 354 | Disable 'Use soft-float' |
| 355 | - MIPS64r2 - Little-Endian, Hard-Float, Legacy NaN, n32 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 356 | Select 'MIPS64 (little endian)' Target Architecture |
| 357 | Select 'mips 64r2' Target Architecture Variant |
| 358 | Select 'n32' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 359 | Disable 'Use soft-float' |
| 360 | - MIPS64r2 - Big-Endian, Hard-Float, Legacy NaN, n64 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 361 | Select 'MIPS64 (big endian)' Target Architecture |
| 362 | Select 'mips 64r2' Target Architecture Variant |
| 363 | Select 'n64' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 364 | Disable 'Use soft-float' |
| 365 | - MIPS64r2 - Little-Endian, Hard-Float, Legacy NaN, n64 ABI |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 366 | Select 'MIPS64 (little endian)' Target Architecture |
| 367 | Select 'mips 64r2' Target Architecture Variant |
| 368 | Select 'n64' Target ABI |
Vicente Olivert Riera | 2b3fa6b | 2016-03-08 09:46:09 +0000 | [diff] [blame] | 369 | Disable 'Use soft-float' |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 370 | |
Romain Naour | c785b1b | 2015-11-21 17:36:16 +0100 | [diff] [blame] | 371 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII |
Romain Naour | 04c9d65 | 2016-05-19 00:23:30 +0200 | [diff] [blame] | 372 | bool "Sourcery CodeBench Nios-II 2016.05" |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 373 | depends on BR2_nios2 |
| 374 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 375 | depends on !BR2_STATIC_LIBS |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 376 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 377 | select BR2_TOOLCHAIN_HAS_SSP |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 378 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 379 | select BR2_INSTALL_LIBSTDCPP |
| 380 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Romain Naour | 04c9d65 | 2016-05-19 00:23:30 +0200 | [diff] [blame] | 381 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4 |
Romain Naour | e7e5a76 | 2015-11-21 17:36:17 +0100 | [diff] [blame] | 382 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Romain Naour | 5dce3c0 | 2016-02-20 13:42:46 +0100 | [diff] [blame] | 383 | select BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19405 # based-on binutils-2.25.1 |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 384 | help |
| 385 | Sourcery CodeBench toolchain for the Nios-II architecture, |
Romain Naour | 04c9d65 | 2016-05-19 00:23:30 +0200 | [diff] [blame] | 386 | from Mentor Graphics. It uses gcc 5.3, binutils 2.25.51, |
| 387 | glibc 2.23, gdb 7.10.50 and kernel headers 4.4. |
Ezequiel GarcÃa | 3ca5f0b | 2014-08-31 18:33:39 -0300 | [diff] [blame] | 388 | |
Romain Naour | 3e1ae89 | 2015-12-19 19:14:42 +0100 | [diff] [blame] | 389 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 390 | bool "Sourcery CodeBench SH 2012.09" |
| 391 | depends on BR2_sh4a || BR2_sh4aeb |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 392 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 393 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 394 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 395 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 396 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 397 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 398 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 399 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 400 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 401 | help |
| 402 | Sourcery CodeBench toolchain for the SuperH architecture, |
| 403 | from Mentor Graphics. It uses gcc 4.7.2, binutils 2.23.51, |
| 404 | glibc 2.16, uClibc 0.9.30, gdb 7.4.50 and kernel headers |
| 405 | 3.5.4. It has support for the following variants: |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 406 | - SH4A, glibc, little endian |
| 407 | Default. |
| 408 | - SH4A, glibc, big endian |
| 409 | Add -mb to BR2_TARGET_OPTIMIZATION |
| 410 | - SH4A, uClibc, little endian |
| 411 | Not usable in Buildroot yet. |
| 412 | - SH4A, uClibc, big endian |
| 413 | Not usable in Buildroot yet. |
Thomas Petazzoni | e067a44 | 2012-11-04 07:34:21 +0000 | [diff] [blame] | 414 | |
Romain Naour | 23ba818 | 2015-11-21 17:36:14 +0100 | [diff] [blame] | 415 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64 |
Romain Naour | 09f1a3b | 2015-11-21 17:36:15 +0100 | [diff] [blame] | 416 | bool "Sourcery CodeBench AMD64 2015.11" |
Gustavo Zacarias | d6fbd85 | 2015-03-03 12:52:31 -0300 | [diff] [blame] | 417 | depends on BR2_x86_64 |
| 418 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 419 | depends on !BR2_STATIC_LIBS |
| 420 | depends on BR2_x86_jaguar || BR2_x86_steamroller |
| 421 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 422 | select BR2_TOOLCHAIN_HAS_SSP |
Gustavo Zacarias | d6fbd85 | 2015-03-03 12:52:31 -0300 | [diff] [blame] | 423 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 424 | select BR2_INSTALL_LIBSTDCPP |
| 425 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Romain Naour | 09f1a3b | 2015-11-21 17:36:15 +0100 | [diff] [blame] | 426 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2 |
| 427 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Gustavo Zacarias | d6fbd85 | 2015-03-03 12:52:31 -0300 | [diff] [blame] | 428 | help |
| 429 | Sourcery CodeBench toolchain for the amd64 (x86_64) |
Romain Naour | 09f1a3b | 2015-11-21 17:36:15 +0100 | [diff] [blame] | 430 | architectures, from Mentor Graphics. It uses gcc 5.2, |
| 431 | binutils 2.25.51, glibc 2.22, gdb 7.10.50 and kernel headers |
| 432 | 4.2. It has support for the following variants: |
Gustavo Zacarias | d6fbd85 | 2015-03-03 12:52:31 -0300 | [diff] [blame] | 433 | - AMD Puma/Jaguar (family 16h), glibc |
| 434 | Default for x86_64, nothing special to do. |
| 435 | - AMD Steamroller (family 15h), glibc |
| 436 | Select a steamroller core. |
| 437 | No other architecture variants are supported since glibc |
| 438 | is optimized for one of these two baselines. |
| 439 | |
Romain Naour | f4da09e | 2015-12-19 19:14:43 +0100 | [diff] [blame] | 440 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 441 | bool "Sourcery CodeBench x86/x86_64 2012.09" |
| 442 | depends on BR2_i386 || BR2_x86_64 |
Thomas Petazzoni | 4eff1f2 | 2012-12-29 06:14:48 +0000 | [diff] [blame] | 443 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 444 | depends on !BR2_STATIC_LIBS |
Adrien Béraud | a20cb38 | 2014-01-15 17:17:10 -0500 | [diff] [blame] | 445 | depends on !BR2_x86_jaguar |
Gustavo Zacarias | 5045199 | 2015-03-03 12:52:30 -0300 | [diff] [blame] | 446 | depends on !BR2_x86_steamroller |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 447 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 448 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 449 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 450 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 2d16ba9 | 2012-12-29 06:14:50 +0000 | [diff] [blame] | 451 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Yann E. MORIN | b6f321b | 2014-03-01 15:52:58 +0100 | [diff] [blame] | 452 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 453 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 |
Thomas Petazzoni | 1c81123 | 2012-11-04 07:34:22 +0000 | [diff] [blame] | 454 | help |
| 455 | Sourcery CodeBench toolchain for the x86/x86_64 |
| 456 | architectures, from Mentor Graphics. It uses gcc 4.7.2, |
| 457 | binutils 2.23.51, glibc 2.16, gdb 7.4.50 and kernel headers |
| 458 | 3.5.4. It has support for the following variants: |
| 459 | - Intel Pentium 4, glibc, 32 bits |
| 460 | Default for x86, nothing special to do. |
| 461 | - Intel Atom, glibc, 32 bits |
| 462 | Select an Atom core |
| 463 | - Intel Xeon, glibc, 64 bits |
| 464 | Default for x86_64, nothing special to do. |
| 465 | - Intel Core 2, glibc, 64 bits |
| 466 | Select a Core 2 core |
| 467 | Other architecture variants (beyond Pentium-4/Xeon) are |
| 468 | supported as well, but glibc is not optimised for it. |
| 469 | |
Romain Naour | 063593b | 2015-12-19 19:14:44 +0100 | [diff] [blame] | 470 | config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX |
Thomas Petazzoni | 1cfeed1 | 2014-07-09 23:20:22 +0200 | [diff] [blame] | 471 | bool "Blackfin.uclinux.org 2014R1" |
Thomas Petazzoni | 5a65b8e | 2014-06-01 12:47:48 +0200 | [diff] [blame] | 472 | depends on BR2_bfin |
| 473 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
| 474 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 475 | select BR2_INSTALL_LIBSTDCPP |
Thomas Petazzoni | 5a65b8e | 2014-06-01 12:47:48 +0200 | [diff] [blame] | 476 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 477 | select BR2_USE_WCHAR |
| 478 | select BR2_TOOLCHAIN_HAS_THREADS |
| 479 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 480 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 481 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 482 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_3 |
Samuel Martin | 0175684 | 2016-07-03 15:47:48 +0200 | [diff] [blame] | 483 | select BR2_TOOLCHAIN_HAS_FORTRAN |
Thomas Petazzoni | 5a65b8e | 2014-06-01 12:47:48 +0200 | [diff] [blame] | 484 | help |
| 485 | Toolchain for the Blackfin architecture, from |
| 486 | http://blackfin.uclinux.org. |
| 487 | |
Yann E. MORIN | 24bfce0 | 2015-10-27 00:49:41 +0100 | [diff] [blame] | 488 | config BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64 |
Romain Naour | 62658cf | 2016-09-24 11:37:53 +0200 | [diff] [blame] | 489 | bool "Linaro AArch64 2016.05" |
Yann E. MORIN | 24bfce0 | 2015-10-27 00:49:41 +0100 | [diff] [blame] | 490 | depends on BR2_aarch64 |
Romain Naour | fe3f9ec | 2016-10-11 23:04:59 +0200 | [diff] [blame] | 491 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Yann E. MORIN | 24bfce0 | 2015-10-27 00:49:41 +0100 | [diff] [blame] | 492 | depends on !BR2_STATIC_LIBS |
| 493 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 494 | select BR2_TOOLCHAIN_HAS_SSP |
Yann E. MORIN | 24bfce0 | 2015-10-27 00:49:41 +0100 | [diff] [blame] | 495 | select BR2_INSTALL_LIBSTDCPP |
| 496 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 497 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 498 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Samuel Martin | 0175684 | 2016-07-03 15:47:48 +0200 | [diff] [blame] | 499 | select BR2_TOOLCHAIN_HAS_FORTRAN |
Yann E. MORIN | 24bfce0 | 2015-10-27 00:49:41 +0100 | [diff] [blame] | 500 | help |
| 501 | Toolchain for the AArch64 architecture, from |
| 502 | http://www.linaro.org/engineering/armv8/ |
| 503 | |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 504 | config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 |
Romain Naour | e7a682b | 2015-12-30 15:30:16 +0100 | [diff] [blame] | 505 | bool "CodeSourcery AArch64 2014.11" |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 506 | depends on BR2_aarch64 |
| 507 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 508 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 509 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 510 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 511 | select BR2_INSTALL_LIBSTDCPP |
| 512 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
| 513 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Romain Naour | e7a682b | 2015-12-30 15:30:16 +0100 | [diff] [blame] | 514 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16 |
| 515 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 516 | help |
| 517 | Sourcery CodeBench toolchain for the AArch64 architecture, |
Romain Naour | e7a682b | 2015-12-30 15:30:16 +0100 | [diff] [blame] | 518 | from Mentor Graphics. It uses gcc 4.9.1, binutils |
| 519 | 2.24.51.20140217, glibc 2.20, gdb 7.7.50 and kernel headers |
| 520 | 3.16.2. |
Thomas Petazzoni | bab8f27 | 2014-09-15 23:49:34 +0200 | [diff] [blame] | 521 | |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 522 | config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS |
Thomas Petazzoni | a8e6f52 | 2016-05-17 00:13:02 +0200 | [diff] [blame] | 523 | bool "Musl 1.1.12 toolchain" |
Thomas Petazzoni | e9f6ef8 | 2016-07-28 15:39:14 +0200 | [diff] [blame] | 524 | depends on (BR2_arm && BR2_ARM_EABI && BR2_USE_MMU) || \ |
| 525 | (BR2_arm && BR2_ARM_EABIHF && !BR2_ARM_CPU_ARMV4 && BR2_USE_MMU) || \ |
| 526 | (BR2_armeb && BR2_ARM_EABI && !BR2_ARM_CPU_ARMV7A && BR2_USE_MMU) || \ |
| 527 | BR2_i386 || (BR2_mips && !BR2_SOFT_FLOAT) || \ |
Thomas Petazzoni | df4d908 | 2016-03-04 23:50:07 +0100 | [diff] [blame] | 528 | BR2_mipsel || (BR2_powerpc && BR2_powerpc_CLASSIC) || \ |
| 529 | BR2_sh4 || BR2_sh4eb || \ |
| 530 | BR2_x86_64 |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 531 | depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" |
Vicente Olivert Riera | ef3e732 | 2016-09-30 10:36:54 +0100 | [diff] [blame] | 532 | # Unsupported MIPS cores |
Vicente Olivert Riera | 55a37ea | 2016-09-30 10:36:56 +0100 | [diff] [blame] | 533 | depends on !BR2_mips_interaptiv && !BR2_mips_m5100 && !BR2_mips_m5101 |
Vicente Olivert Riera | 99122d6 | 2015-10-12 11:08:06 +0100 | [diff] [blame] | 534 | # Unsupported for MIPS R6 |
Vicente Olivert Riera | 45c92c6 | 2016-09-30 10:36:49 +0100 | [diff] [blame] | 535 | depends on !BR2_MIPS_CPU_MIPS32R6 && !BR2_MIPS_CPU_MIPS64R6 |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 536 | select BR2_TOOLCHAIN_EXTERNAL_MUSL |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 537 | select BR2_TOOLCHAIN_HAS_SSP |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 538 | select BR2_INSTALL_LIBSTDCPP |
| 539 | select BR2_HOSTARCH_NEEDS_IA32_LIBS |
Thomas Petazzoni | 5c85266 | 2014-06-01 12:47:45 +0200 | [diff] [blame] | 540 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 |
Thomas Petazzoni | df4d908 | 2016-03-04 23:50:07 +0100 | [diff] [blame] | 541 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 542 | help |
| 543 | Toolchain based on the Musl C library, provided by the |
Thomas Petazzoni | df4d908 | 2016-03-04 23:50:07 +0100 | [diff] [blame] | 544 | musl-cross project. It uses gcc 5.3, binutils 2.25.1 and |
| 545 | musl 1.1.12. It does not have a cross debugger included. |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 546 | |
Thomas Petazzoni | b2ec783 | 2015-10-09 11:14:48 +0200 | [diff] [blame] | 547 | The ARM soft-float toolchain is built for ARMv4t, while the |
| 548 | ARM hard-float toolchain is built for ARMv5t. |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 549 | The x86 toolchain is built for i486. |
| 550 | |
| 551 | http://musl.codu.org/ |
| 552 | |
Romain Naour | d02fa92 | 2015-12-19 19:14:45 +0100 | [diff] [blame] | 553 | config BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC |
Alexey Brodkin | 2b93fe5 | 2015-03-10 14:50:24 +0300 | [diff] [blame] | 554 | bool "Synopsys ARC 2014.12 toolchain" |
| 555 | depends on BR2_arc |
| 556 | depends on BR2_HOSTARCH = "x86_64" |
Thomas Petazzoni | cd3c00f | 2015-05-01 11:13:54 +0200 | [diff] [blame] | 557 | # does not provide IPv6, and lacks many uClibc features |
| 558 | # expected by Buildroot. The next Synopsys toolchain version |
| 559 | # should fix those problems. |
| 560 | depends on BROKEN |
Alexey Brodkin | 2b93fe5 | 2015-03-10 14:50:24 +0300 | [diff] [blame] | 561 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 562 | select BR2_INSTALL_LIBSTDCPP |
Alexey Brodkin | 2b93fe5 | 2015-03-10 14:50:24 +0300 | [diff] [blame] | 563 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
| 564 | select BR2_ENABLE_LOCALE |
| 565 | select BR2_USE_WCHAR |
| 566 | select BR2_TOOLCHAIN_HAS_THREADS |
| 567 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 568 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 569 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 |
Alexey Brodkin | 2b93fe5 | 2015-03-10 14:50:24 +0300 | [diff] [blame] | 570 | help |
| 571 | Toolchain for the ARC cores, from |
| 572 | https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases |
| 573 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 574 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | 5022fa8 | 2012-06-22 07:42:37 +0200 | [diff] [blame] | 575 | bool "Custom toolchain" |
| 576 | help |
| 577 | Use this option to use a custom toolchain pre-installed on |
| 578 | your system. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 579 | |
| 580 | endchoice |
| 581 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 582 | choice |
| 583 | prompt "Toolchain origin" |
Thomas Petazzoni | 7019407 | 2012-07-22 20:57:26 +0200 | [diff] [blame] | 584 | # Keep compatibility with old defconfig files that are using |
| 585 | # custom toolchains, and which are therefore assuming that |
| 586 | # "preinstalled" in the default choice. |
| 587 | default BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 588 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 589 | config BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 590 | bool "Toolchain to be downloaded and installed" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 591 | help |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 592 | Select this option if you want Buildroot to download and install the |
| 593 | toolchain. If you have selected a custom toolchain, specify the URL |
| 594 | in BR2_TOOLCHAIN_EXTERNAL_URL. |
| 595 | |
| 596 | config BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
| 597 | bool "Pre-installed toolchain" |
| 598 | help |
| 599 | Select this option if you want to use a pre-installed toolchain. |
| 600 | Specify the path to this toolchain in BR2_TOOLCHAIN_EXTERNAL_PATH. |
| 601 | |
| 602 | endchoice |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 603 | |
| 604 | config BR2_TOOLCHAIN_EXTERNAL_PATH |
| 605 | string "Toolchain path" |
| 606 | default "/path/to/toolchain/usr" |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 607 | depends on BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 608 | help |
| 609 | Path to where the external toolchain is installed. |
| 610 | |
Thomas De Schampheleire | df0c125 | 2012-06-22 07:42:38 +0200 | [diff] [blame] | 611 | config BR2_TOOLCHAIN_EXTERNAL_URL |
| 612 | string "Toolchain URL" |
| 613 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM && BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD |
| 614 | help |
| 615 | URL of the custom toolchain tarball to download and install. |
| 616 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 617 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX |
| 618 | string "Toolchain prefix" |
| 619 | depends on BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 620 | default "$(ARCH)-linux" |
| 621 | |
| 622 | config BR2_TOOLCHAIN_EXTERNAL_PREFIX |
| 623 | string |
Romain Naour | d02fa92 | 2015-12-19 19:14:45 +0100 | [diff] [blame] | 624 | default "arc-linux" if BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC && BR2_arcle |
| 625 | default "arceb-linux" if BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC && BR2_arceb |
Thomas Petazzoni | be2abf2 | 2014-06-01 12:47:40 +0200 | [diff] [blame] | 626 | default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_ARM |
Thomas Petazzoni | cd32da8 | 2014-03-05 23:23:40 +0100 | [diff] [blame] | 627 | default "armeb-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB |
Romain Naour | eb713cf | 2015-12-19 19:14:40 +0100 | [diff] [blame] | 628 | default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM |
Romain Naour | 1820624 | 2015-12-19 19:14:46 +0100 | [diff] [blame] | 629 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A |
| 630 | default "arm-arago-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE |
Thomas Petazzoni | d51025d | 2014-06-01 12:47:41 +0200 | [diff] [blame] | 631 | default "aarch64-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64 |
Romain Naour | e7a682b | 2015-12-30 15:30:16 +0100 | [diff] [blame] | 632 | default "aarch64-amd-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 |
Romain Naour | d9306ad | 2015-11-21 17:36:19 +0100 | [diff] [blame] | 633 | default "mips-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS |
Romain Naour | c785b1b | 2015-11-21 17:36:16 +0100 | [diff] [blame] | 634 | default "nios2-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII |
Romain Naour | 3e1ae89 | 2015-12-19 19:14:42 +0100 | [diff] [blame] | 635 | default "sh-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH |
Romain Naour | f4da09e | 2015-12-19 19:14:43 +0100 | [diff] [blame] | 636 | default "i686-pc-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86 |
Romain Naour | 23ba818 | 2015-11-21 17:36:14 +0100 | [diff] [blame] | 637 | default "x86_64-amd-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AMD64 |
Romain Naour | 063593b | 2015-12-19 19:14:44 +0100 | [diff] [blame] | 638 | default "bfin-uclinux" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX && BR2_BINFMT_FLAT |
| 639 | default "bfin-linux-uclibc" if BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX && BR2_BINFMT_FDPIC |
Thomas Petazzoni | b2ec783 | 2015-10-09 11:14:48 +0200 | [diff] [blame] | 640 | default "arm-linux-musleabi" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_arm && BR2_ARM_EABI |
| 641 | default "arm-linux-musleabihf" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_arm && BR2_ARM_EABIHF |
Vicente Olivert Riera | e424c13 | 2015-12-15 16:21:25 +0000 | [diff] [blame] | 642 | default "mips-img-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS |
Vicente Olivert Riera | c65c728 | 2015-12-15 16:21:24 +0000 | [diff] [blame] | 643 | default "mips-mti-linux-gnu" if BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 644 | default "armeb-linux-musleabi" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_armeb |
| 645 | default "i486-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_i386 |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 646 | default "mips-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mips && !BR2_SOFT_FLOAT) |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 647 | default "mipsel-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mipsel && !BR2_SOFT_FLOAT) |
| 648 | default "mipsel-sf-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && (BR2_mipsel && BR2_SOFT_FLOAT) |
| 649 | default "powerpc-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_powerpc |
Thomas Petazzoni | df4d908 | 2016-03-04 23:50:07 +0100 | [diff] [blame] | 650 | default "sh4-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_sh4 |
| 651 | default "sh4eb-linux-musl" if BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS && BR2_sh4eb |
Thomas Petazzoni | 2d71c12 | 2014-05-05 23:17:10 +0200 | [diff] [blame] | 652 | 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] | 653 | default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX \ |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 654 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 655 | |
| 656 | config BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 657 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 658 | select BR2_TOOLCHAIN_USES_GLIBC |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 659 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 660 | config BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
| 661 | bool |
Thomas Petazzoni | 381616e | 2013-06-30 21:29:09 +0200 | [diff] [blame] | 662 | select BR2_TOOLCHAIN_USES_UCLIBC |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 663 | |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 664 | config BR2_TOOLCHAIN_EXTERNAL_MUSL |
| 665 | bool |
| 666 | select BR2_TOOLCHAIN_USES_MUSL |
Yann E. MORIN | e31eb72 | 2016-08-18 23:50:13 +0200 | [diff] [blame] | 667 | # Compatibility headers: cdefs.h, queue.h |
| 668 | select BR2_PACKAGE_MUSL_COMPAT_HEADERS |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 669 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 670 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
| 671 | |
| 672 | choice |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 673 | bool "External toolchain gcc version" |
| 674 | default BR2_TOOLCHAIN_EXTERNAL_GCC_4_3 |
| 675 | help |
| 676 | Set to the gcc version that is used by your external |
| 677 | toolchain. |
| 678 | |
Jörg Krause | 8f972c2 | 2016-05-01 09:29:35 +0200 | [diff] [blame] | 679 | config BR2_TOOLCHAIN_EXTERNAL_GCC_6 |
| 680 | bool "6.x" |
| 681 | select BR2_TOOLCHAIN_GCC_AT_LEAST_6 |
| 682 | |
Thomas Petazzoni | bd760c3 | 2015-08-04 20:00:35 +0200 | [diff] [blame] | 683 | config BR2_TOOLCHAIN_EXTERNAL_GCC_5 |
| 684 | bool "5.x" |
| 685 | select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |
| 686 | |
| 687 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_9 |
| 688 | bool "4.9.x" |
| 689 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 |
| 690 | |
| 691 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_8 |
| 692 | bool "4.8.x" |
| 693 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 |
| 694 | |
| 695 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_7 |
| 696 | bool "4.7.x" |
| 697 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 |
| 698 | |
| 699 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_6 |
| 700 | bool "4.6.x" |
| 701 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_6 |
| 702 | |
| 703 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_5 |
| 704 | bool "4.5.x" |
| 705 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_5 |
| 706 | |
| 707 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_4 |
| 708 | bool "4.4.x" |
| 709 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_4 |
| 710 | |
| 711 | config BR2_TOOLCHAIN_EXTERNAL_GCC_4_3 |
| 712 | bool "4.3.x" |
| 713 | select BR2_TOOLCHAIN_GCC_AT_LEAST_4_3 |
| 714 | |
| 715 | endchoice |
| 716 | |
| 717 | choice |
Yann E. MORIN | c58bcd5 | 2014-03-01 15:52:59 +0100 | [diff] [blame] | 718 | bool "External toolchain kernel headers series" |
| 719 | default BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD |
| 720 | help |
| 721 | Set to the kernel headers version that were used to build |
| 722 | this external toolchain. |
| 723 | |
| 724 | This is used to hide/show some packages that have strict |
| 725 | requirements on the version of kernel headers. |
| 726 | |
| 727 | If unsure what version your toolchain is using, you can look |
| 728 | at the value of LINUX_VERSION_CODE in linux/version.h in your |
| 729 | toolchain. The Linux version is M.m.p, with: |
| 730 | M = ( LINUX_VERSION_CODE >> 16 ) & 0xFF |
| 731 | m = ( LINUX_VERSION_CODE >> 8 ) & 0xFF |
| 732 | p = ( LINUX_VERSION_CODE >> 0 ) & 0xFF |
| 733 | |
Fabio Estevam | d3ac2bc | 2016-09-12 13:15:54 -0300 | [diff] [blame] | 734 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_8 |
| 735 | bool "4.8.x" |
| 736 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8 |
| 737 | |
Fabio Estevam | e36bf63 | 2016-07-24 20:56:09 -0300 | [diff] [blame] | 738 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_7 |
| 739 | bool "4.7.x" |
| 740 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7 |
| 741 | |
Gustavo Zacarias | 51800d2 | 2016-05-16 08:58:12 -0300 | [diff] [blame] | 742 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_6 |
| 743 | bool "4.6.x" |
| 744 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6 |
| 745 | |
Gustavo Zacarias | 3ece3fa | 2016-03-14 07:14:10 -0300 | [diff] [blame] | 746 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_5 |
| 747 | bool "4.5.x" |
| 748 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5 |
| 749 | |
Gustavo Zacarias | df2ad61 | 2016-01-11 07:52:36 -0300 | [diff] [blame] | 750 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_4 |
| 751 | bool "4.4.x" |
| 752 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4 |
| 753 | |
Vicente Olivert Riera | aef2df8 | 2015-11-02 15:56:51 +0100 | [diff] [blame] | 754 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_3 |
| 755 | bool "4.3.x" |
| 756 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3 |
| 757 | |
Peter Korsgaard | 8dc6829 | 2015-09-01 10:05:20 +0200 | [diff] [blame] | 758 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_2 |
| 759 | bool "4.2.x" |
| 760 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2 |
| 761 | |
Gustavo Zacarias | dae7d8a | 2015-06-22 10:11:03 -0300 | [diff] [blame] | 762 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_1 |
| 763 | bool "4.1.x" |
| 764 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1 |
| 765 | |
Gustavo Zacarias | e714ee9 | 2015-04-13 10:00:23 -0300 | [diff] [blame] | 766 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_0 |
| 767 | bool "4.0.x" |
| 768 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 |
| 769 | |
Peter Korsgaard | 81366ed | 2015-02-09 13:31:23 +0100 | [diff] [blame] | 770 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_19 |
| 771 | bool "3.19.x" |
| 772 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19 |
| 773 | |
Gustavo Zacarias | bf6f74d | 2014-12-08 08:10:39 -0300 | [diff] [blame] | 774 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_18 |
| 775 | bool "3.18.x" |
| 776 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 |
| 777 | |
Gustavo Zacarias | 2d312b7 | 2014-10-06 08:44:39 -0300 | [diff] [blame] | 778 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_17 |
| 779 | bool "3.17.x" |
Karoly Kasza | b8f9e57 | 2014-10-09 12:59:01 +0200 | [diff] [blame] | 780 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 |
Gustavo Zacarias | 2d312b7 | 2014-10-06 08:44:39 -0300 | [diff] [blame] | 781 | |
Gustavo Zacarias | 911516f | 2014-08-03 23:29:22 -0300 | [diff] [blame] | 782 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16 |
| 783 | bool "3.16.x" |
| 784 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16 |
| 785 | |
Gustavo Zacarias | fb29afe | 2014-06-09 08:30:33 -0300 | [diff] [blame] | 786 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_15 |
| 787 | bool "3.15.x" |
| 788 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15 |
| 789 | |
Samuel Martin | 11547ca | 2014-04-06 18:27:49 +0200 | [diff] [blame] | 790 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_14 |
| 791 | bool "3.14.x" |
| 792 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14 |
| 793 | |
Yann E. MORIN | c58bcd5 | 2014-03-01 15:52:59 +0100 | [diff] [blame] | 794 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_13 |
| 795 | bool "3.13.x" |
| 796 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13 |
| 797 | |
| 798 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_12 |
| 799 | bool "3.12.x" |
| 800 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 |
| 801 | |
| 802 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_11 |
| 803 | bool "3.11.x" |
| 804 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11 |
| 805 | |
| 806 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_10 |
| 807 | bool "3.10.x" |
| 808 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 |
| 809 | |
| 810 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_9 |
| 811 | bool "3.9.x" |
| 812 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9 |
| 813 | |
| 814 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_8 |
| 815 | bool "3.8.x" |
| 816 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8 |
| 817 | |
| 818 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_7 |
| 819 | bool "3.7.x" |
| 820 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 |
| 821 | |
| 822 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_6 |
| 823 | bool "3.6.x" |
| 824 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6 |
| 825 | |
| 826 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_5 |
| 827 | bool "3.5.x" |
| 828 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5 |
| 829 | |
| 830 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_4 |
| 831 | bool "3.4.x" |
| 832 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 |
| 833 | |
| 834 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_3 |
| 835 | bool "3.3.x" |
| 836 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 |
| 837 | |
| 838 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_2 |
| 839 | bool "3.2.x" |
| 840 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 |
| 841 | |
| 842 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_1 |
| 843 | bool "3.1.x" |
| 844 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1 |
| 845 | |
| 846 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_0 |
| 847 | bool "3.0.x" |
| 848 | select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 |
| 849 | |
| 850 | config BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD |
| 851 | bool "2.6.x" |
| 852 | |
| 853 | endchoice |
| 854 | |
| 855 | choice |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 856 | prompt "External toolchain C library" |
| 857 | default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 858 | |
| 859 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
Waldemar Brodkorb | 9f4483f | 2016-10-15 10:13:58 +0200 | [diff] [blame] | 860 | bool "uClibc/uClibc-ng" |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 861 | select BR2_TOOLCHAIN_EXTERNAL_UCLIBC |
Thomas Petazzoni | b988292 | 2011-05-30 23:56:57 +0200 | [diff] [blame] | 862 | # For the time being, we assume that all custom external |
| 863 | # toolchains have shadow password support. |
| 864 | select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS |
Thomas Petazzoni | 692a585 | 2013-10-08 20:17:10 +0200 | [diff] [blame] | 865 | help |
| 866 | Select this option if your external toolchain uses the |
Waldemar Brodkorb | 9f4483f | 2016-10-15 10:13:58 +0200 | [diff] [blame] | 867 | uClibc (available from http://www.uclibc.org/) |
| 868 | or uClibc-ng (available from http://www.uclibc-ng.org) |
| 869 | C library. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 870 | |
| 871 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 872 | bool "glibc/eglibc" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 873 | depends on !BR2_STATIC_LIBS |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 874 | select BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Baruch Siach | 9668893 | 2012-09-27 09:27:42 +0000 | [diff] [blame] | 875 | help |
Thomas Petazzoni | 692a585 | 2013-10-08 20:17:10 +0200 | [diff] [blame] | 876 | Select this option if your external toolchain uses the GNU C |
| 877 | library (available from https://www.gnu.org/software/libc/) |
| 878 | or its variant the eglibc library (http://www.eglibc.org/). |
| 879 | |
| 880 | Note: eglibc is a variant of glibc that (among other things) |
| 881 | can be configured to exclude some of its features. Using a |
| 882 | toolchain with eglibc configured to exclude key features may |
| 883 | cause build failures to some packages. |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 884 | |
Thomas Petazzoni | 416fd9c | 2016-06-08 23:40:54 +0200 | [diff] [blame] | 885 | comment "glibc only available with shared lib support" |
Thomas Petazzoni | 665e13c | 2014-12-03 22:41:29 +0100 | [diff] [blame] | 886 | depends on BR2_STATIC_LIBS |
Thomas Petazzoni | ed3f3e4 | 2013-11-11 18:57:32 +0100 | [diff] [blame] | 887 | |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 888 | config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_MUSL |
Thomas Petazzoni | a8e6f52 | 2016-05-17 00:13:02 +0200 | [diff] [blame] | 889 | bool "musl" |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 890 | select BR2_TOOLCHAIN_EXTERNAL_MUSL |
| 891 | help |
| 892 | Select this option if your external toolchain uses the |
| 893 | 'musl' C library, available from http://www.musl-libc.org/. |
| 894 | |
Thomas Petazzoni | 643aa23 | 2009-05-29 18:37:41 +0200 | [diff] [blame] | 895 | endchoice |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 896 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 897 | if BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 898 | |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 899 | config BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 900 | bool "Toolchain has WCHAR support?" |
| 901 | select BR2_USE_WCHAR |
| 902 | help |
| 903 | Select this option if your external toolchain supports |
| 904 | WCHAR. If you don't know, leave the default value, Buildroot |
| 905 | will tell you if it's correct or not. |
| 906 | |
| 907 | config BR2_TOOLCHAIN_EXTERNAL_LOCALE |
| 908 | bool "Toolchain has locale support?" |
| 909 | select BR2_TOOLCHAIN_EXTERNAL_WCHAR |
| 910 | select BR2_ENABLE_LOCALE |
| 911 | help |
| 912 | Select this option if your external toolchain has locale |
| 913 | support. If you don't know, leave the default value, |
| 914 | Buildroot will tell you if it's correct or not. |
| 915 | |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 916 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 917 | bool "Toolchain has threads support?" |
| 918 | select BR2_TOOLCHAIN_HAS_THREADS |
Peter Korsgaard | 04d0689 | 2011-07-26 15:28:19 +0200 | [diff] [blame] | 919 | default y |
Thomas Petazzoni | 9eaad20 | 2010-12-13 17:27:44 +0100 | [diff] [blame] | 920 | help |
| 921 | Select this option if your external toolchain has thread |
| 922 | support. If you don't know, leave the default value, |
| 923 | Buildroot will tell you if it's correct or not. |
| 924 | |
Thomas Petazzoni | c64f948 | 2014-02-18 22:08:59 +0100 | [diff] [blame] | 925 | if BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 926 | |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 927 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG |
| 928 | bool "Toolchain has threads debugging support?" |
Peter Korsgaard | 5931db0 | 2011-11-24 14:26:52 +0100 | [diff] [blame] | 929 | select BR2_TOOLCHAIN_HAS_THREADS_DEBUG |
| 930 | default y |
| 931 | help |
| 932 | Select this option if your external toolchain has thread |
| 933 | debugging support. If you don't know, leave the default |
| 934 | value, Buildroot will tell you if it's correct or not. |
| 935 | |
Thomas Petazzoni | c64f948 | 2014-02-18 22:08:59 +0100 | [diff] [blame] | 936 | config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_NPTL |
| 937 | bool "Toolchain has NPTL threads support?" |
| 938 | select BR2_TOOLCHAIN_HAS_THREADS_NPTL |
| 939 | default y |
| 940 | help |
| 941 | Select this option if your external toolchain uses the NPTL |
| 942 | (Native Posix Thread Library) implementation of Posix |
| 943 | threads. If you don't know, leave the default value, |
| 944 | Buildroot will tell you if it's correct or not. |
| 945 | |
| 946 | endif # BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS |
| 947 | |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 948 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC |
| 949 | |
Thomas Petazzoni | c5866be | 2013-09-02 18:06:36 +0200 | [diff] [blame] | 950 | config BR2_TOOLCHAIN_EXTERNAL_HAS_SSP |
| 951 | bool "Toolchain has SSP support?" |
| 952 | select BR2_TOOLCHAIN_HAS_SSP |
Vicente Olivert Riera | 7949350 | 2016-03-15 16:40:38 +0000 | [diff] [blame] | 953 | default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC |
| 954 | default y if BR2_TOOLCHAIN_EXTERNAL_MUSL |
Thomas Petazzoni | c5866be | 2013-09-02 18:06:36 +0200 | [diff] [blame] | 955 | help |
| 956 | Selection this option if your external toolchain has Stack |
| 957 | Smashing Protection support enabled. If you don't know, |
| 958 | leave the default value, Buildroot will tell you if it's |
| 959 | correct or not. |
| 960 | |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 961 | config BR2_TOOLCHAIN_EXTERNAL_INET_RPC |
| 962 | bool "Toolchain has RPC support?" |
| 963 | select BR2_TOOLCHAIN_HAS_NATIVE_RPC |
Thomas Petazzoni | a1d94aa | 2013-10-08 20:17:09 +0200 | [diff] [blame] | 964 | depends on !BR2_TOOLCHAIN_EXTERNAL_MUSL |
Thomas Petazzoni | 3a843a3 | 2012-11-04 07:34:29 +0000 | [diff] [blame] | 965 | default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC |
Thomas Petazzoni | 9fbdf06 | 2012-11-03 18:47:50 +0100 | [diff] [blame] | 966 | help |
| 967 | Select this option if your external toolchain supports |
| 968 | RPC. If you don't know, leave the default value, Buildroot |
| 969 | will tell you if it's correct or not. |
| 970 | |
Thomas Petazzoni | 6b578c8 | 2010-12-13 17:27:41 +0100 | [diff] [blame] | 971 | config BR2_TOOLCHAIN_EXTERNAL_CXX |
| 972 | bool "Toolchain has C++ support?" |
| 973 | select BR2_INSTALL_LIBSTDCPP |
| 974 | help |
| 975 | Select this option if your external toolchain has C++ |
| 976 | support. If you don't know, leave the default value, |
| 977 | Buildroot will tell you if it's correct or not. |
| 978 | |
Samuel Martin | a650438 | 2016-07-03 15:47:47 +0200 | [diff] [blame] | 979 | config BR2_TOOLCHAIN_EXTERNAL_FORTRAN |
| 980 | bool "Toolchain has Fortran support?" |
| 981 | select BR2_TOOLCHAIN_HAS_FORTRAN |
| 982 | help |
| 983 | Select this option if your external toolchain has Fortran |
| 984 | support. If you don't know, leave the default value, |
| 985 | Buildroot will tell you if it's correct or not. |
| 986 | |
Thomas De Schampheleire | c72f54b | 2011-10-02 21:20:10 +0200 | [diff] [blame] | 987 | config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS |
| 988 | string "Extra toolchain libraries to be copied to target" |
| 989 | help |
| 990 | If your external toolchain provides extra libraries that |
| 991 | need to be copied to the target filesystem, enter them |
Thomas De Schampheleire | 919b4f9 | 2016-02-12 20:20:26 +0100 | [diff] [blame] | 992 | here, separated by spaces. |
Thomas De Schampheleire | c72f54b | 2011-10-02 21:20:10 +0200 | [diff] [blame] | 993 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 994 | endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM |
Thomas Petazzoni | fff7117 | 2010-12-13 17:27:37 +0100 | [diff] [blame] | 995 | |
Thomas Petazzoni | a0b6faa | 2013-04-07 00:04:33 +0000 | [diff] [blame] | 996 | config BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY |
| 997 | bool "Copy gdb server to the Target" |
| 998 | depends on BR2_TOOLCHAIN_EXTERNAL |
| 999 | help |
| 1000 | Copy the gdbserver provided by the external toolchain to the |
| 1001 | target. |
| 1002 | |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1003 | # When the FDPIC shared binary format is used, the corresponding libraries are |
| 1004 | # always installed. When a different binary format is used, we offer the option |
| 1005 | # of installing the FDPIC shared libraries. |
| 1006 | config BR2_BFIN_INSTALL_FDPIC_SHARED |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 1007 | bool "Install FDPIC shared libraries" |
| 1008 | depends on BR2_bfin && !BR2_BINFMT_FDPIC |
| 1009 | help |
| 1010 | The Linux kernel supports running both FDPIC and FLAT applications |
| 1011 | concurrently if the binary format specific libraries are installed |
| 1012 | properly. This option allows developer to install FDPIC libraries |
| 1013 | into a buildroot rootfs image built with binary format that is not |
| 1014 | FDPIC. |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1015 | |
| 1016 | # When the FLAT shared binary format is used, we force the installation |
| 1017 | # of the corresponding libraries. When a different binary format is |
| 1018 | # used, we offer the option of installing the FLAT shared libraries. |
| 1019 | config BR2_BFIN_INSTALL_FLAT_SHARED |
Thomas De Schampheleire | bed4e27 | 2013-11-11 17:23:23 +0100 | [diff] [blame] | 1020 | bool "Install FLAT shared libraries" if !BR2_BINFMT_FLAT_SHARED |
| 1021 | depends on BR2_bfin |
| 1022 | default y if BR2_BINFMT_FLAT_SHARED |
| 1023 | help |
| 1024 | The Linux kernel supports running both FDPIC and FLAT applications |
| 1025 | concurrently if the binary format specific libraries are installed |
| 1026 | properly. This option allows developer to install FLAT libraries |
| 1027 | into a buildroot rootfs image built with binary format that is not |
| 1028 | shared FLAT. |
Sonic Zhang | 8b4ade8 | 2013-06-08 11:14:22 +0200 | [diff] [blame] | 1029 | |
Thomas Petazzoni | 6c492d5 | 2010-12-13 17:27:39 +0100 | [diff] [blame] | 1030 | endif # BR2_TOOLCHAIN_EXTERNAL |