We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49ae853 + e2e51c0 commit c433a76Copy full SHA for c433a76
CMakeLists.txt
@@ -23,6 +23,9 @@ if(BOOTLOADER_BUILD)
23
endif()
24
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
25
list(APPEND compile_options "-freorder-blocks")
26
+ if(CONFIG_IDF_TARGET_ARCH_XTENSA)
27
+ list(APPEND compile_options "-mno-target-align")
28
+ endif()
29
30
elseif(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG)
31
list(APPEND compile_options "-Og")
@@ -52,6 +55,9 @@ else()
52
55
53
56
54
57
58
59
60
61
62
elseif(CONFIG_COMPILER_OPTIMIZATION_DEBUG)
63
0 commit comments