2021-09-29 06:46:35 -04:00
|
|
|
include($ENV{IDF_PATH}/tools/cmake/utilities.cmake)
|
|
|
|
|
2021-09-10 12:47:46 -04:00
|
|
|
set(CMAKE_SYSTEM_NAME Generic)
|
|
|
|
|
|
|
|
set(CMAKE_C_COMPILER clang)
|
|
|
|
set(CMAKE_CXX_COMPILER clang++)
|
|
|
|
set(CMAKE_ASM_COMPILER clang)
|
|
|
|
|
|
|
|
set(CMAKE_AR xtensa-esp32-elf-ar)
|
|
|
|
set(CMAKE_RANLIB xtensa-esp32-elf-gcc-ranlib)
|
|
|
|
set(CMAKE_OBJDUMP xtensa-esp32-elf-objdump)
|
|
|
|
|
|
|
|
# -freestanding is a hack to force Clang to use its own stdatomic.h,
|
|
|
|
# without falling back to the (incompatible) GCC stdatomic.h
|
|
|
|
# https://github.com/espressif/llvm-project/blob/d9341b81/clang/lib/Headers/stdatomic.h#L13-L18
|
2021-09-29 06:46:35 -04:00
|
|
|
list(APPEND c_compile_options "--target=xtensa" "-mcpu=esp32" "-ffreestanding")
|
|
|
|
list(APPEND cxx_compile_options "--target=xtensa" "-mcpu=esp32" "-ffreestanding")
|
|
|
|
list(APPEND asm_compile_options "--target=xtensa" "-mcpu=esp32")
|