zephyr/subsys/Kconfig
Benoit Leforestier 26e0f9a9e1 Build: Improve C++ support
Can choose the C++ standard (C++98/11/14/17/2a)
Can link with standard C++ library (libstdc++)
Add support of C++ exceptions
Add support of C++ RTTI
Add C++ options to subsys/cpp/Kconfig
Implements new and delete using k_malloc and k_free
if CONFIG_HEAP_MEM_POOL_SIZE is defined

Signed-off-by: Benoit Leforestier <benoit.leforestier@gmail.com>
2018-10-29 09:15:04 -04:00

43 lines
693 B
Plaintext

# Kconfig - Subsystem configuration options
#
# Copyright (c) 2016-2017 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
source "subsys/bluetooth/Kconfig"
source "subsys/console/Kconfig"
source "subsys/cpp/Kconfig"
source "subsys/debug/Kconfig"
source "subsys/disk/Kconfig"
source "subsys/fs/Kconfig"
source "subsys/logging/Kconfig"
source "subsys/mgmt/Kconfig"
source "subsys/net/Kconfig"
source "subsys/shell/Kconfig"
source "subsys/usb/Kconfig"
source "subsys/dfu/Kconfig"
source "subsys/random/Kconfig"
source "subsys/storage/Kconfig"
source "subsys/settings/Kconfig"
source "subsys/app_memory/Kconfig"
source "subsys/power/Kconfig"
source "subsys/fb/Kconfig"