Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/platforms/esp32/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,6 @@ option(AVM_DISABLE_SMP "Disable SMP." OFF)
option(AVM_USE_32BIT_FLOAT "Use 32 bit floats." OFF)
option(AVM_VERBOSE_ABORT "Print module and line number on VM abort" OFF)
option(AVM_CREATE_STACKTRACES "Create stacktraces" ON)
option(AVM_PRINT_PROCESS_CRASH_DUMPS "Print crash reports when processes die with non-standard reasons" ON)

add_subdirectory(tools)
1 change: 1 addition & 0 deletions src/platforms/rp2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ option(AVM_WAIT_BOOTSEL_ON_EXIT "Wait in BOOTSEL rather than shutdown on exit" O
option(AVM_REBOOT_ON_NOT_OK "Reboot Pico if result is not ok" OFF)
option(AVM_CREATE_STACKTRACES "Create stacktraces" ON)
option(AVM_DISABLE_JIT "Disable just in time compilation." ON)
option(AVM_PRINT_PROCESS_CRASH_DUMPS "Print crash reports when processes die with non-standard reasons" ON)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^cortex-m.+$")
# We only have armv6m for now, which all cortex-m should support
if (NOT AVM_DISABLE_JIT)
Expand Down
1 change: 1 addition & 0 deletions src/platforms/stm32/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ option(AVM_ENABLE_LOG_LINES "Include source and line info for all enbled levels"
option(AVM_CONFIG_REBOOT_ON_NOT_OK "Reboot when application exits with non 'ok' return" OFF)
option(AVM_DISABLE_GPIO_NIFS "Disable GPIO nifs (input and output)" OFF)
option(AVM_DISABLE_GPIO_PORT_DRIVER "Disable GPIO 'port' driver (input, output, and interrupts)" OFF)
option(AVM_PRINT_PROCESS_CRASH_DUMPS "Print crash reports when processes die with non-standard reasons" ON)

set(AVM_DISABLE_SMP ON FORCE)
set(AVM_DISABLE_TASK_DRIVER ON FORCE)
Expand Down
Loading