diff options
author | 2019-10-24 20:16:19 +0200 | |
---|---|---|
committer | 2019-10-25 19:27:44 +0200 | |
commit | 4fb9f80cc56031f3129d852493ffcfb6c818619f (patch) | |
tree | c44079d3205ff422fad1e84f860c45aa1ec676a4 /toolchain | |
parent | abbe6c68e0af87b0d24e9a744b7f9dee386377e5 (diff) | |
download | buildroot-4fb9f80cc56031f3129d852493ffcfb6c818619f.tar.gz buildroot-4fb9f80cc56031f3129d852493ffcfb6c818619f.tar.bz2 |
toolchain: add support for D language
Since version 9.1, GCC provides support for the D programming language [1].
So add an option to indicate the selected toolchain supports this
language.
[1] https://dlang.org/
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 3bc3b1b4b0..c9aa95985f 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -171,6 +171,9 @@ config BR2_ENABLE_LOCALE config BR2_INSTALL_LIBSTDCPP bool +config BR2_TOOLCHAIN_HAS_DLANG + bool + config BR2_TOOLCHAIN_HAS_FORTRAN bool |