summaryrefslogtreecommitdiff
path: root/core/toolchain/compiler-options.kconfig
blob: c4118deaa43ccb16e26013b2bf7c6ceab2fedc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
################################################################################
# Embtoolkit
# Copyright(C) 2012-2013 Abdoulaye Walsimou GAYE <awg@embtoolkit.org>.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
#
# \file         gcc-options.kconfig
# \brief	gcc-options.kconfig of Embtoolkit
# \author       Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
# \date         February 2012
################################################################################

config EMBTK_GCC_LANGUAGE_CPP
	bool "Support C++"
	default y
	select EMBTK_GCC1_LANGUAGE_CPP
	select EMBTK_GCC2_LANGUAGE_CPP
	select EMBTK_GCC3_LANGUAGE_CPP
	select KEMBTK_UCLIBC_UCLIBC_HAS_FLOATS if EMBTK_CLIB_UCLIBC
	select KEMBTK_UCLIBC_UCLIBC_SUSV3_LEGACY if EMBTK_CLIB_UCLIBC
	select KEMBTK_UCLIBC_UCLIBC_CTOR_DTOR if EMBTK_CLIB_UCLIBC
	select KEMBTK_UCLIBC_UCLIBC_DYNAMIC_ATEXIT if EMBTK_CLIB_UCLIBC
	select KEMBTK_EGLIBC_OPTION_EGLIBC_LIBM if EMBTK_CLIB_EGLIBC
	select KEMBTK_EGLIBC_OPTION_POSIX_C_LANG_WIDE_CHAR if EMBTK_CLIB_EGLIBC
	select KEMBTK_EGLIBC_OPTION_POSIX_WIDE_CHAR_DEVICE_IO if EMBTK_CLIB_EGLIBC
	help
	 Your toolchain will be able to build C++ source code
choice
	prompt "C++ standard library implementation"
	depends on EMBTK_GCC_LANGUAGE_CPP
	help
	 Here you can choose which GCC series you want to use.

	config EMBTK_CXXLIB_GCC_LIBSTDCXX
		bool "GCC libstdc++"
		help
		 GCC C++ standard library implementation, under GPLv3 with
		 runtime exception (see http://gcc.gnu.org/onlinedocs for more
		 details).

endchoice

config EMBTK_CXXLIB_LLVM_LIBCXX
	bool
	depends on (EMBTK_LLVM_ONLY_TOOLCHAIN || EMBTK_GCC_AND_LLVM_TOOLCHAIN) && (EMBTK_ARCH_MIPS && EMBTK_TARGET_ARCH_32BITS)
	help
	 LLVM C++ standard library implementation, under
	 the MIT license and the UIUC License (a BSD-like license).
	 See http://libcxx.llvm.org

source "core/toolchain/llvm/libc++/libcxx.kconfig"
source "core/toolchain/libcxxrt/libcxxrt.kconfig"

#config EMBTK_GCC_LANGUAGE_JAVA
#	bool "Support Java"
#	help
#	 Your toolchain will be able to build Java source code

config EMBTK_GCC_LANGUAGE_OBJECTIVEC
	bool "Support Objective-C"
	depends on !EMBTK_CLIB_UCLIBC
	select EMBTK_GCC1_LANGUAGE_OBJECTIVEC
	select EMBTK_GCC2_LANGUAGE_OBJECTIVEC
	select EMBTK_GCC3_LANGUAGE_OBJECTIVEC
	help
	 Your toolchain will be able to build Objective-C source code

config EMBTK_GCC_LANGUAGE_OBJECTIVECPP
	bool "Support Objective-C++"
	depends on !EMBTK_CLIB_UCLIBC
	select EMBTK_GCC1_LANGUAGE_OBJECTIVECPP
	select EMBTK_GCC2_LANGUAGE_OBJECTIVECPP
	select EMBTK_GCC3_LANGUAGE_OBJECTIVECPP
	help
	 Your toolchain will be able to build Objective-C source code

if EMBTK_GCC_ONLY_TOOLCHAIN || EMBTK_GCC_AND_LLVM_TOOLCHAIN
config EMBTK_GCC_LANGUAGE_FORTRAN
	bool "Support Fortran"
	help
	 Your toolchain will be able to build fortran source code
endif

#config EMBTK_GCC_LANGUAGE_ADA
#	bool "Support Ada"
#	help
#	 Your toolchain will be able to build Ada source code