mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2e79e00ca7
This changes the prefix used for the symbols that reprensent modules (not the ones generated from USEMODULE). MOD_ => MODULE_
31 lines
706 B
Plaintext
31 lines
706 B
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
menuconfig MODULE_NEWLIB
|
|
bool "NewLib"
|
|
depends on TEST_KCONFIG
|
|
|
|
if MODULE_NEWLIB
|
|
|
|
config MODULE_NEWLIB_NANO
|
|
bool "NewLib Nano"
|
|
|
|
config MODULE_NEWLIB_GNU_SOURCE
|
|
bool "NewLib GNU source"
|
|
|
|
config MODULE_NEWLIB_SYSCALLS_DEFAULT
|
|
bool "NewLib Syscalls default implementation"
|
|
default y
|
|
depends on !HAVE_CUSTOM_NEWLIB_SYSCALLS
|
|
|
|
endif # MODULE_NEWLIB
|
|
|
|
config HAVE_CUSTOM_NEWLIB_SYSCALLS
|
|
bool
|
|
help
|
|
Indicates that a custom newlib syscalls implementation is present.
|