zephyr/cmake/toolchain/cross-compile/Kconfig
Pieter De Gendt a599ed13a1 kconfig: Add symbols for GNU C Extensions
Add a symbol to enable GNU C Extensions. And a hidden option for
toolchains to signal GNU Extensions support.

Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
2024-04-25 09:54:39 +00:00

17 lines
591 B
Plaintext

# Copyright © 2022 Keith Packard
# SPDX-License-Identifier: Apache-2.0
config TOOLCHAIN_CROSS_COMPILE_SUPPORTS_THREAD_LOCAL_STORAGE
bool "Cross-compile toolchain supports TLS"
select TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE
help
Set this if the cross-compile toolchain being used for the build
supports thread local storage.
config TOOLCHAIN_CROSS_COMPILE_SUPPORTS_GNU_EXTENSIONS
bool "Cross-compile toolchain supports GNU Extensions"
select TOOLCHAIN_SUPPORTS_GNU_EXTENSIONS
help
Set this if the cross-compile toolchain being used for the build
supports GNU Extensions.