mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
22 lines
430 B
CMake
22 lines
430 B
CMake
if(GCC_NOT_5_2_0)
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
|
set(LIBC c_nano)
|
|
else()
|
|
set(LIBC c)
|
|
endif()
|
|
|
|
set(LIBM m)
|
|
else()
|
|
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()
|
|
|
|
set(LIBM m)
|
|
endif()
|
|
endif() |