Skip to content

Commit

Permalink
Disable SMP on ESP32c6
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Dushin <fred@dushin.net>
  • Loading branch information
fadushin committed Feb 25, 2024
1 parent c42fc66 commit b5c9052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platforms/esp32/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ set(HAVE_SOCKET 1 CACHE INTERNAL "Have symbol socket" FORCE)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../CMakeModules")

# Disable SMP with esp32 socs that have only one core
if (${IDF_TARGET} MATCHES "esp32s2|esp32c3|esp32h2")
if (${IDF_TARGET} MATCHES "esp32s2|esp32c3|esp32c6|esp32h2")
message("Disabling SMP as selected target only has one core")
set(AVM_DISABLE_SMP YES FORCE)
endif()
Expand Down

0 comments on commit b5c9052

Please sign in to comment.