stdatomic: support gcc built-in functions for esp32s2beta

pull/4273/head
Michael (XIAO Xufeng) 2019-08-18 14:37:35 +08:00 zatwierdzone przez Angus Gratton
rodzic 55859f59cb
commit 053f419ced
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -6,9 +6,12 @@ else()
set(srcs "debug_helpers.c"
"debug_helpers_asm.S"
"eri.c"
"stdatomic.c")
)
if(CONFIG_IDF_TARGET_ESP32)
if(IDF_TARGET STREQUAL "esp32s2beta")
list(APPEND srcs "stdatomic.c")
endif()
if(IDF_TARGET STREQUAL "esp32")
list(APPEND srcs "trax.c")
endif()
endif()