mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
build system: Initial cmake support, work in progress
This commit is contained in:

committed by
Angus Gratton

parent
a538644560
commit
c671a0c3eb
20
components/newlib/CMakeLists.txt
Normal file
20
components/newlib/CMakeLists.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
set(COMPONENT_ADD_INCLUDEDIRS platform_include include)
|
||||
|
||||
if(CONFIG_SPIRAM_CACHE_WORKAROUND)
|
||||
set(LIBC c-psram-workaround)
|
||||
set(LIBM m-psram-workaround)
|
||||
else()
|
||||
|
||||
if(CONFIG_NEWLIB_NANO_FORMAT)
|
||||
set(LIBC c_nano)
|
||||
else()
|
||||
set(LIBC c)
|
||||
endif(CONFIG_NEWLIB_NANO_FORMAT)
|
||||
|
||||
set(LIBM m)
|
||||
endif(CONFIG_SPIRAM_CACHE_WORKAROUND)
|
||||
|
||||
register_component()
|
||||
|
||||
target_link_libraries(newlib "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib")
|
||||
target_link_libraries(newlib ${LIBC} ${LIBM})
|
Reference in New Issue
Block a user