mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:12:43 +01:00
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# common definitions for all ESP-IDF modules
|
|
|
|
# shortcuts used by ESP-IDF
|
|
CFLAGS += -Dasm=__asm
|
|
CFLAGS += -Dtypeof=__typeof__
|
|
|
|
# required for esp_wifi (components/spi_flash/esp32/spi_flash_rom_patch.c)
|
|
# required for esp_idf_heap (components/heap/heap_caps_init.c)
|
|
# required for esp_idf_wpa_supplicant
|
|
CFLAGS += -Wno-sign-compare
|
|
|
|
# required by esp_idf_heap (components/heap/heap_caps.c)
|
|
# required for esp_idf_wpa_supplicant
|
|
CFLAGS += -Wno-implicit-function-declaration
|
|
|
|
# required for esp_wifi (components/esp_event/esp_event.c)
|
|
CFLAGS += -Wno-old-style-declaration
|
|
|
|
# required for esp_wifi (components/efuse/esp32/esp_efuse_utility.c)
|
|
# required for esp_idf_heap (components/heap/multi_heap.c)
|
|
# required for esp_idf_wpa_supplicant
|
|
CFLAGS += -Wno-old-style-definition
|
|
|
|
# required for esp_idf_common (components/bootloader_support/src/bootloader_flash.c)
|
|
CFLAGS += -Wno-unused-variable
|
|
|
|
# required for esp_idf_spi_flash (components/spi_flash/partition.c)
|
|
CFLAGS += -Wno-enum-compare
|
|
|
|
# vendor code contains casts that increase alignment requirements. Let's hope
|
|
# those are false positives.
|
|
CFLAGS += -Wno-cast-align
|
|
|
|
# additional CFLAGS required for RISC-V architecture
|
|
ifneq (,$(filter riscv32%,$(TARGET_ARCH)))
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/riscv/include
|
|
CFLAGS += -DCONFIG_IDF_TARGET_ARCH_RISCV
|
|
CFLAGS += -march=rv32imc
|
|
CFLAGS += -Wno-error=format=
|
|
CFLAGS += -nostartfiles
|
|
CFLAGS += -Wno-format
|
|
endif
|