blob: bf70dfb5620be26c7ab7184c978aef6397933aae [file] [log] [blame]
yang.lib06e0a82022-01-10 17:35:09 +08001# Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
2
3# SPDX-License-Identifier: MIT
4
xiaohu.huang45c38e12022-08-31 11:37:37 +08005menuconfig LIBC
6 bool "Generic_C_lib"
7 select LIBC_AML if RISCV
8 select LIBC_STD if ARM64 || ARM
9 select QLIBC if ARM64
10 help
11 Select generic C library
12
13if LIBC
14if RISCV
15 rsource "aml/Kconfig"
16endif
17if ARM || ARM64
18 rsource "newlib/Kconfig"
19 rsource "qlibc/Kconfig"
20endif
21endif