Skip to content

Commit

Permalink
disabled variants with large stack usage in zephyr
Browse files Browse the repository at this point in the history
Signed-off-by: rtjk <[email protected]>
  • Loading branch information
rtjk committed Aug 15, 2024
1 parent 1b7af17 commit cb12fad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions zephyr/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@ if(CONFIG_LIBOQS)

if(CONFIG_LIBOQS_ENABLE_SIG_CROSS)
set(OQS_ENABLE_SIG_CROSS ON)
# Disable CROSS variants with large stack usage
set(OQS_ENABLE_SIG_cross_rsdp_128_small OFF)
set(OQS_ENABLE_SIG_cross_rsdp_192_small OFF)
set(OQS_ENABLE_SIG_cross_rsdp_256_balanced OFF)
set(OQS_ENABLE_SIG_cross_rsdp_256_small OFF)
set(OQS_ENABLE_SIG_cross_rsdpg_192_small OFF)
set(OQS_ENABLE_SIG_cross_rsdpg_256_small OFF)
else()
set(OQS_ENABLE_SIG_CROSS OFF)
endif()
Expand Down

0 comments on commit cb12fad

Please sign in to comment.