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.
1 parent 80b89c9 commit fbb92a9Copy full SHA for fbb92a9
micropython-modules/microlite/micropython.cmake
@@ -398,7 +398,7 @@ target_compile_options(microlite INTERFACE
398
-Wno-error=maybe-uninitialized
399
)
400
401
-else()
+else() # not "RP2"
402
if (CONFIG_IDF_TARGET)
403
target_include_directories(microlite INTERFACE
404
${TF_ESP_DIR}
@@ -452,6 +452,9 @@ target_compile_options(microlite INTERFACE
452
453
454
455
+if (CONFIG_IDF_TARGET_ESP32S3) # Extra compile options needed to build esp-nn ASM for ESP32-S3
456
+ target_compile_options(microlite INTERFACE -mlongcalls -fno-unroll-loops -Wno-unused-function)
457
+endif()
458
endif()
459
460
target_link_libraries(usermod INTERFACE microlite)
0 commit comments