2012-04-06 12:49:35 -03:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 13:45:52 -03:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 12:49:35 -03:00
|
|
|
#
|
2012-04-10 20:49:13 -03:00
|
|
|
|
2012-04-07 11:50:57 -03:00
|
|
|
config HAVE_CXX
|
2012-04-10 20:49:13 -03:00
|
|
|
bool "Have C++ compiler"
|
2012-04-07 11:50:57 -03:00
|
|
|
default n
|
|
|
|
---help---
|
2012-04-10 20:49:13 -03:00
|
|
|
Toolchain supports C++ and CXX, CXXFLAGS, and COMPILEXX have been
|
|
|
|
defined in the configurations Make.defs file.
|
2012-04-07 11:50:57 -03:00
|
|
|
|
|
|
|
config HAVE_CXXINITIALIZE
|
2012-04-10 20:49:13 -03:00
|
|
|
bool "Have C++ initialization"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
The platform-specific logic includes support for initialization
|
|
|
|
of static C++ instances for this architecture and for the selected
|
|
|
|
toolchain (via up_cxxinitialize()).
|
|
|
|
|
|
|
|
config CXX_NEWLONG
|
|
|
|
bool "size_t is type long"
|
2012-04-07 11:50:57 -03:00
|
|
|
default n
|
|
|
|
---help---
|
2012-04-10 20:49:13 -03:00
|
|
|
size_t may be type long or type int. This matters for some
|
|
|
|
C++ library routines because the NuttX size_t might not have
|
|
|
|
the same underlying type as your toolchain's size_t.
|