2007-09-26 23:12:38 +02:00
|
|
|
if BR2_TOOLCHAIN_EXTERNAL
|
2010-12-13 17:27:39 +01:00
|
|
|
|
2016-08-08 20:34:59 +02:00
|
|
|
comment "Toolchain External Options"
|
|
|
|
|
2009-05-29 18:37:41 +02:00
|
|
|
choice
|
2010-12-13 17:27:39 +01:00
|
|
|
prompt "Toolchain"
|
2007-02-06 19:19:38 +01:00
|
|
|
|
2016-11-07 02:20:00 +01:00
|
|
|
# Kept toolchains sorted by architecture in order to use some toolchain
|
|
|
|
# as default choice
|
|
|
|
|
2018-10-09 22:07:01 +02:00
|
|
|
# Aarch64 (use ARM toolchain by default)
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-aarch64/Config.in"
|
2016-11-07 02:20:00 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-aarch64/Config.in"
|
2016-11-07 02:20:01 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-aarch64/Config.in"
|
2016-11-07 02:20:00 +01:00
|
|
|
|
2018-06-28 09:24:22 +02:00
|
|
|
# Aarch64 big-endian
|
2018-10-09 22:07:02 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-aarch64-be/Config.in"
|
2018-06-28 09:24:22 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-aarch64-be/Config.in"
|
|
|
|
|
2016-11-07 02:20:16 +01:00
|
|
|
# ARC
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-synopsys-arc/Config.in"
|
|
|
|
|
2018-10-09 22:07:00 +02:00
|
|
|
# ARM (use ARM toolchain by default)
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-arm/Config.in"
|
2016-11-07 02:20:02 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-arm/Config.in"
|
2016-11-07 02:20:03 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-arm/Config.in"
|
2016-11-07 02:20:02 +01:00
|
|
|
|
2016-11-07 02:20:05 +01:00
|
|
|
# ARM big-endian
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-armeb/Config.in"
|
2015-10-27 00:49:40 +01:00
|
|
|
|
2016-11-07 02:20:07 +01:00
|
|
|
# MIPS (use codesourcery toolchain by default)
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-mips/Config.in"
|
2016-11-07 02:20:08 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in"
|
2016-11-07 02:20:09 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in"
|
2016-11-07 02:20:07 +01:00
|
|
|
|
2016-11-07 02:20:10 +01:00
|
|
|
# NIOSII
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-niosII/Config.in"
|
|
|
|
|
2020-08-14 21:52:34 +02:00
|
|
|
# Bootlin toolchains, available for virtually all architectures
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-bootlin/Config.in"
|
|
|
|
|
2016-11-07 02:20:15 +01:00
|
|
|
# Kept last, so it remains the non-default choice, unless there isn't
|
|
|
|
# any available toolchain profile for the currently selected
|
2019-07-29 22:20:00 +02:00
|
|
|
# architecture, but before toolchains from br2-external trees.
|
2016-11-07 02:20:15 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-custom/Config.in"
|
|
|
|
|
2019-07-29 22:20:00 +02:00
|
|
|
# Toolchains from br2-external trees, if any
|
|
|
|
source "$BR2_BASE_DIR/.br2-external.in.toolchains"
|
|
|
|
|
2010-12-13 17:27:39 +01:00
|
|
|
endchoice
|
|
|
|
|
2012-06-22 07:42:38 +02:00
|
|
|
choice
|
|
|
|
prompt "Toolchain origin"
|
2012-07-22 20:57:26 +02:00
|
|
|
# Keep compatibility with old defconfig files that are using
|
|
|
|
# custom toolchains, and which are therefore assuming that
|
|
|
|
# "preinstalled" in the default choice.
|
|
|
|
default BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED if BR2_TOOLCHAIN_EXTERNAL_CUSTOM
|
2012-06-22 07:42:38 +02:00
|
|
|
|
2010-12-13 17:27:39 +01:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD
|
2012-06-22 07:42:38 +02:00
|
|
|
bool "Toolchain to be downloaded and installed"
|
|
|
|
help
|
2018-04-01 07:08:45 +02:00
|
|
|
Select this option if you want Buildroot to download and
|
|
|
|
install the toolchain. If you have selected a custom
|
|
|
|
toolchain, specify the URL in BR2_TOOLCHAIN_EXTERNAL_URL.
|
2012-06-22 07:42:38 +02:00
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED
|
|
|
|
bool "Pre-installed toolchain"
|
2010-12-13 17:27:39 +01:00
|
|
|
help
|
2018-04-01 07:08:45 +02:00
|
|
|
Select this option if you want to use a pre-installed
|
|
|
|
toolchain. Specify the path to this toolchain in
|
|
|
|
BR2_TOOLCHAIN_EXTERNAL_PATH.
|
2012-06-22 07:42:38 +02:00
|
|
|
|
|
|
|
endchoice
|
2010-12-13 17:27:39 +01:00
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_PATH
|
|
|
|
string "Toolchain path"
|
2017-07-10 01:21:23 +02:00
|
|
|
default ""
|
2012-06-22 07:42:38 +02:00
|
|
|
depends on BR2_TOOLCHAIN_EXTERNAL_PREINSTALLED
|
2010-12-13 17:27:39 +01:00
|
|
|
help
|
2017-07-10 01:21:23 +02:00
|
|
|
Path to where the external toolchain is installed. The
|
|
|
|
compiler itself is expected to be in the "bin" subdirectory
|
|
|
|
of this path.
|
|
|
|
|
|
|
|
If empty, the compiler will be searched in $PATH.
|
2010-12-13 17:27:39 +01:00
|
|
|
|
2009-05-29 18:37:41 +02:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_GLIBC
|
2010-12-13 17:27:39 +01:00
|
|
|
bool
|
2013-06-30 21:29:09 +02:00
|
|
|
select BR2_TOOLCHAIN_USES_GLIBC
|
2009-05-29 18:37:41 +02:00
|
|
|
|
2010-12-13 17:27:39 +01:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_UCLIBC
|
|
|
|
bool
|
2013-06-30 21:29:09 +02:00
|
|
|
select BR2_TOOLCHAIN_USES_UCLIBC
|
2010-12-13 17:27:39 +01:00
|
|
|
|
2013-10-08 20:17:09 +02:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_MUSL
|
|
|
|
bool
|
|
|
|
select BR2_TOOLCHAIN_USES_MUSL
|
2016-08-18 23:50:13 +02:00
|
|
|
# Compatibility headers: cdefs.h, queue.h
|
|
|
|
select BR2_PACKAGE_MUSL_COMPAT_HEADERS
|
2013-10-08 20:17:09 +02:00
|
|
|
|
2016-11-07 02:19:59 +01:00
|
|
|
# Make sure the virtual-package infra checks the provider
|
|
|
|
config BR2_PACKAGE_HAS_TOOLCHAIN_EXTERNAL
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
|
|
|
config BR2_PACKAGE_PROVIDES_TOOLCHAIN_EXTERNAL
|
|
|
|
string
|
|
|
|
|
2016-11-07 02:20:17 +01:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_PREFIX
|
|
|
|
string
|
|
|
|
|
2016-11-07 02:20:00 +01:00
|
|
|
# Kept toolchains sorted as in the choice above
|
|
|
|
# The toolchain Config.in.options must define
|
|
|
|
# BR2_PACKAGE_PROVIDES_TOOLCHAIN_EXTERNAL and BR2_TOOLCHAIN_EXTERNAL_PREFIX
|
|
|
|
|
|
|
|
# Aarch64
|
2018-10-09 22:07:01 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-aarch64/Config.in.options"
|
2016-11-07 02:20:00 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-aarch64/Config.in.options"
|
2016-11-07 02:20:01 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-aarch64/Config.in.options"
|
2016-11-07 02:20:00 +01:00
|
|
|
|
2018-06-28 09:24:22 +02:00
|
|
|
# Aarch64 big-endian
|
2018-10-09 22:07:02 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-aarch64-be/Config.in.options"
|
2018-06-28 09:24:22 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-aarch64-be/Config.in.options"
|
|
|
|
|
2016-11-07 02:20:16 +01:00
|
|
|
# ARC
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-synopsys-arc/Config.in.options"
|
|
|
|
|
2016-11-07 02:20:02 +01:00
|
|
|
# ARM
|
2018-10-09 22:07:00 +02:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-arm-arm/Config.in.options"
|
2016-11-07 02:20:02 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-arm/Config.in.options"
|
2016-11-07 02:20:03 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-arm/Config.in.options"
|
2016-11-07 02:20:02 +01:00
|
|
|
|
2016-11-07 02:20:05 +01:00
|
|
|
# ARM big-endian
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-linaro-armeb/Config.in.options"
|
|
|
|
|
2016-11-07 02:20:07 +01:00
|
|
|
# MIPS
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-mips/Config.in.options"
|
2016-11-07 02:20:08 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in.options"
|
2016-11-07 02:20:09 +01:00
|
|
|
source "toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in.options"
|
2016-11-07 02:20:07 +01:00
|
|
|
|
2016-11-07 02:20:10 +01:00
|
|
|
# NIOSII
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-codesourcery-niosII/Config.in.options"
|
|
|
|
|
2020-08-14 21:52:34 +02:00
|
|
|
# Bootlin toolchains
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-bootlin/Config.in.options"
|
|
|
|
|
2016-11-07 02:20:15 +01:00
|
|
|
# Custom toolchains
|
|
|
|
source "toolchain/toolchain-external/toolchain-external-custom/Config.in.options"
|
toolchain: Improve C library option selection
Turn BR2_LARGEFILE, BR2_INET_IPV6, BR2_INET_RPC, BR2_USE_WCHAR,
BR2_ENABLE_LOCALE and BR2_PROGRAM_INVOCATION into hidden options.
Then, for Buildroot toolchains, external toolchains and Crosstool-NG
toolchains, provide visible options that selects the hidden options.
This allows :
* To show a different label and help text in the case of Buildroot
toolchain (do you want to enable feature X ?) and in the case of
external toolchain (is feature X available in your toolchain ?)
* To not show any option when a glibc external toolchain is selected
(since glibc is assumed to support all of largefile, IPv6, RPC,
WCHAR, locale and program invocation) and have them all selected in
that case.
There is some amount of duplication between Buildroot toolchain config
options and Crosstool-NG toolchain config options, because kconfig
doesn't allow to source the same Config.in file twice (even if under
mutually exclusive conditions). This duplication is more readable that
the hack that consists in splitting files in multiple pieces.
However, this commit changes the name of the options visible in the
configuration interface, so existing .config files will have to be
updated accordingly.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-12-13 17:27:37 +01:00
|
|
|
|
toolchain/toolchain-external: add BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER option
Some external toolchains do not have gdbserver available, but the
option BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY is always visible. And
when enabled, this option aborts with an error when gdbserver cannot
be found:
Could not find gdbserver in external toolchain
Due to that, some random configurations fail to build when
BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY=y, for example with the Bootlin
toolchains for Microblaze or OpenRISC (because there's no GDB support
for those architectures).
One solution could be to make "Could not find gdbserver in external
toolchain" a warning instead of a hard error, but then nobody would
notice about this issue, in cases where it should legitimately abort
with a hard error.
So, the clean solution would be to add a
BR2_TOOLCHAIN_EXTERNAL_HAS_GDBSERVER. But that means all existing
external toolchains would have to be modified to select this option.
Instead, and as an exception, we chose to use inverted logic, and
create an option that is the opposite:
BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER. By default, we assume
external toolchains have gdbserver. If
BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER is enabled, we disallow the
BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY option.
Note that the case of custom external toolchain does not matter: by
definition they are not tested by the autobuilders, and by definition,
we cannot know in menuconfig if the custom toolchain has or does not
have gdbserver. We could make a user-visible option for it, but that
adds no value over simply erroring out because the gdbserver binary
can't be found.
Similarly, we could add
default y if BR2_PACKAGE_GDB_ARCH_SUPPORTS
but that would make it impossible for someone to include a custom
gdbserver in their external toolchain, and gives no benefit at all.
This will help fixing:
http://autobuild.buildroot.net/results/6315ef7b66ee4ae8f870c92186bc674d65f62f2c/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-06-08 09:10:19 +02:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER
|
|
|
|
bool
|
|
|
|
|
gdb: convert to the package infrastructure
This commit converts gdb to the package infrastructure, and therefore
moves it from toolchain/gdb to package/gdb.
The target package is now visible in "Package selection for the
target" => "Debugging, profiling and benchmark". The main option,
"gdb", forcefully selects the "gdbserver" sub-option by
default. Another sub-option, "full debugger" allows to install the
complete gdb on the target. When this option is enabled, then
"gdbserver" is no longer forcefully selected. This ensures that at
least gdbserver or the full debugger gets built/installed, so that the
package is not a no-op.
The host debugger is still enabled through a configuration option in
"Toolchain". It is now visible regardless of the toolchain type (it
used to be hidden for External Toolchains). The configuration options
relative to the host debugger are now in package/gdb/Config.in.host,
similar to how we have package/binutils/Config.in.host.
Since gdb is now a proper package, it is no longer allowed to 'select
BR2_PTHREADS_DEBUG' to ensure thread debugging is available when
needed. Instead, it now 'depends on
BR2_TOOLCHAIN_HAS_THREADS_DEBUG'. This option, in turn, is selected by
the different toolchain backends when appropriate. The
'BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED' option is removed, since
we no longer need to know when it is allowed to 'select
BR2_PTHREADS_DEBUG'. Also, the 'BR2_PTHREADS_DEBUG' option is moved to
appear right below the thread implementation selection (in the case of
the Buildroot toolchain backend).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-04-07 02:04:33 +02:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY
|
|
|
|
bool "Copy gdb server to the Target"
|
|
|
|
depends on BR2_TOOLCHAIN_EXTERNAL
|
toolchain/toolchain-external: add BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER option
Some external toolchains do not have gdbserver available, but the
option BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY is always visible. And
when enabled, this option aborts with an error when gdbserver cannot
be found:
Could not find gdbserver in external toolchain
Due to that, some random configurations fail to build when
BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY=y, for example with the Bootlin
toolchains for Microblaze or OpenRISC (because there's no GDB support
for those architectures).
One solution could be to make "Could not find gdbserver in external
toolchain" a warning instead of a hard error, but then nobody would
notice about this issue, in cases where it should legitimately abort
with a hard error.
So, the clean solution would be to add a
BR2_TOOLCHAIN_EXTERNAL_HAS_GDBSERVER. But that means all existing
external toolchains would have to be modified to select this option.
Instead, and as an exception, we chose to use inverted logic, and
create an option that is the opposite:
BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER. By default, we assume
external toolchains have gdbserver. If
BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER is enabled, we disallow the
BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY option.
Note that the case of custom external toolchain does not matter: by
definition they are not tested by the autobuilders, and by definition,
we cannot know in menuconfig if the custom toolchain has or does not
have gdbserver. We could make a user-visible option for it, but that
adds no value over simply erroring out because the gdbserver binary
can't be found.
Similarly, we could add
default y if BR2_PACKAGE_GDB_ARCH_SUPPORTS
but that would make it impossible for someone to include a custom
gdbserver in their external toolchain, and gives no benefit at all.
This will help fixing:
http://autobuild.buildroot.net/results/6315ef7b66ee4ae8f870c92186bc674d65f62f2c/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-06-08 09:10:19 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER
|
gdb: convert to the package infrastructure
This commit converts gdb to the package infrastructure, and therefore
moves it from toolchain/gdb to package/gdb.
The target package is now visible in "Package selection for the
target" => "Debugging, profiling and benchmark". The main option,
"gdb", forcefully selects the "gdbserver" sub-option by
default. Another sub-option, "full debugger" allows to install the
complete gdb on the target. When this option is enabled, then
"gdbserver" is no longer forcefully selected. This ensures that at
least gdbserver or the full debugger gets built/installed, so that the
package is not a no-op.
The host debugger is still enabled through a configuration option in
"Toolchain". It is now visible regardless of the toolchain type (it
used to be hidden for External Toolchains). The configuration options
relative to the host debugger are now in package/gdb/Config.in.host,
similar to how we have package/binutils/Config.in.host.
Since gdb is now a proper package, it is no longer allowed to 'select
BR2_PTHREADS_DEBUG' to ensure thread debugging is available when
needed. Instead, it now 'depends on
BR2_TOOLCHAIN_HAS_THREADS_DEBUG'. This option, in turn, is selected by
the different toolchain backends when appropriate. The
'BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED' option is removed, since
we no longer need to know when it is allowed to 'select
BR2_PTHREADS_DEBUG'. Also, the 'BR2_PTHREADS_DEBUG' option is moved to
appear right below the thread implementation selection (in the case of
the Buildroot toolchain backend).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-04-07 02:04:33 +02:00
|
|
|
help
|
|
|
|
Copy the gdbserver provided by the external toolchain to the
|
|
|
|
target.
|
|
|
|
|
2010-12-13 17:27:39 +01:00
|
|
|
endif # BR2_TOOLCHAIN_EXTERNAL
|