2024-07-03 15:18:44 +00:00
|
|
|
# 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
|
2025-05-28 20:57:37 +00:00
|
|
|
-ffunction-sections
|
2025-05-28 21:04:10 +00:00
|
|
|
-fdata-sections
|
2025-05-28 20:57:37 +00:00
|
|
|
-Wl,--gc-sections
|
2025-05-28 20:50:47 +00:00
|
|
|
-Wl,--no-ld-generated-unwind-info
|
2024-07-03 15:18:44 +00:00
|
|
|
>)
|