mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
2b9e8fed71
Add esp32h2 support in the following components: * Kconfig * components/esptool_py * components/riscv * components/xtensa * tools
10 lines
425 B
CMake
10 lines
425 B
CMake
set(CMAKE_SYSTEM_NAME Generic)
|
|
|
|
set(CMAKE_C_COMPILER riscv32-esp-elf-gcc)
|
|
set(CMAKE_CXX_COMPILER riscv32-esp-elf-g++)
|
|
set(CMAKE_ASM_COMPILER riscv32-esp-elf-gcc)
|
|
|
|
set(CMAKE_C_FLAGS "-march=rv32imc" CACHE STRING "C Compiler Base Flags")
|
|
set(CMAKE_CXX_FLAGS "-march=rv32imc" CACHE STRING "C++ Compiler Base Flags")
|
|
set(CMAKE_EXE_LINKER_FLAGS "-nostartfiles -march=rv32imc --specs=nosys.specs" CACHE STRING "Linker Base Flags")
|