mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
fix bug for cmake build system
The path of ${SDKCONFIG_H} does not exist, should be replaced by ${sdkconfig_header}.
This commit is contained in:
parent
2402d0952d
commit
1b31191753
@ -1,3 +1,4 @@
|
|||||||
|
idf_build_get_property(sdkconfig_header SDKCONFIG_HEADER)
|
||||||
if(BOOTLOADER_BUILD)
|
if(BOOTLOADER_BUILD)
|
||||||
# For bootloader, all we need from esp32 is headers
|
# For bootloader, all we need from esp32 is headers
|
||||||
idf_component_register(INCLUDE_DIRS include)
|
idf_component_register(INCLUDE_DIRS include)
|
||||||
@ -75,7 +76,7 @@ else()
|
|||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT esp32_out.ld
|
OUTPUT esp32_out.ld
|
||||||
COMMAND "${CMAKE_C_COMPILER}" -C -P -x c -E -o esp32_out.ld -I ${config_dir} ${LD_DIR}/esp32.ld
|
COMMAND "${CMAKE_C_COMPILER}" -C -P -x c -E -o esp32_out.ld -I ${config_dir} ${LD_DIR}/esp32.ld
|
||||||
MAIN_DEPENDENCY ${LD_DIR}/esp32.ld ${SDKCONFIG_H}
|
MAIN_DEPENDENCY ${LD_DIR}/esp32.ld ${sdkconfig_header}
|
||||||
COMMENT "Generating linker script..."
|
COMMENT "Generating linker script..."
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user