mirror of
https://github.com/apache/nuttx.git
synced 2026-06-01 07:45:16 +08:00
This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
Squashed commit of the following:
libs/libxx: Fix some confusing in naming. If the directory is called libxx, then the library must be libxx.a (unless perhaps LIBCXX is selected).
libs/: Fix paths in moved library directories.
libs: Brute force move of libc, libnx, and libxx to libs. Cannot yet build it in that configuration.
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
||||
|
||||
if ARCH_ARM7TDMI || ARCH_ARM920T || ARCH_ARM926EJS
|
||||
source libs/libc/machine/arm/arm/Kconfig
|
||||
endif
|
||||
|
||||
if ARCH_CORTEXA5 || ARCH_CORTEXA8 || ARCH_CORTEXA9
|
||||
source libs/libc/machine/arm/armv7-a/Kconfig
|
||||
endif
|
||||
|
||||
if ARCH_CORTEXR4 || ARCH_CORTEXR4F || ARCH_CORTEXR5 || ARCH_CORTEXR5F || ARCH_CORTEXR7 || ARCH_CORTEXR7F
|
||||
source libs/libc/machine/arm/armv7-r/Kconfig
|
||||
endif
|
||||
|
||||
if ARCH_CORTEXM0
|
||||
source libs/libc/machine/arm/armv6-m/Kconfig
|
||||
endif
|
||||
|
||||
if ARCH_CORTEXM3 || ARCH_CORTEXM4 || ARCH_CORTEXM7
|
||||
source libs/libc/machine/arm/armv7-m/Kconfig
|
||||
endif
|
||||
|
||||
if ARCH_CORTEXM33
|
||||
source libs/libc/machine/arm/armv8/Kconfig
|
||||
endif
|
||||
Reference in New Issue
Block a user