22 lines
791 B
Diff
22 lines
791 B
Diff
diff --git a/ports/rp2/CMakeLists.txt b/ports/rp2/CMakeLists.txt
|
|
index 281b0c3bc..7e04bb549 100644
|
|
--- a/ports/rp2/CMakeLists.txt
|
|
+++ b/ports/rp2/CMakeLists.txt
|
|
@@ -453,6 +453,16 @@ target_link_options(${MICROPY_TARGET} PRIVATE
|
|
-Wl,--wrap=dcd_event_handler
|
|
)
|
|
|
|
+# Do not include stack unwinding & exception handling for C++ user modules
|
|
+target_compile_definitions(usermod INTERFACE PICO_CXX_ENABLE_EXCEPTIONS=0)
|
|
+target_compile_options(usermod INTERFACE $<$<COMPILE_LANGUAGE:CXX>:
|
|
+ -fno-exceptions
|
|
+ -fno-unwind-tables
|
|
+ -fno-rtti
|
|
+ -fno-use-cxa-atexit
|
|
+>)
|
|
+target_link_options(usermod INTERFACE -specs=nano.specs)
|
|
+
|
|
set_source_files_properties(
|
|
${PICO_SDK_PATH}/src/rp2_common/pico_double/double_math.c
|
|
${PICO_SDK_PATH}/src/rp2_common/pico_float/float_math.c
|