Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert "Turn off optimization for debug builds"
This reverts commit 520bd0b.
  • Loading branch information
mamckee committed May 20, 2025
commit 987bce1edbd6aad848f85b0ed6a2fcc28926cfea
2 changes: 1 addition & 1 deletion SymCryptProvider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ separate section. This section must be referenced in the symcrypt provider secti
| - | - | - |
| enabled | 0 or 1 to disable or enable keysinuse logging. | 0 |
| max_file_size | Maximum size of the file events are written to. May be written as raw byte size or suffixed with KB/MB/GB | 5KB |
| logging_delay_seconds | Duration in seconds between events being written to the file. Any events that happen in between will be aggregate and logged as one event. | 3600 |
| logging_delay_seconds | Duration in seconds between events being written to the file. Any events that happen in between will be aggregate and logged as one event. | error |
4 changes: 1 addition & 3 deletions cmake-toolchain/LinuxUserMode-AMD64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ set(CMAKE_SYSTEM_PROCESSOR AMD64)

# Define _AMD64_ to set up the correct SymCrypt macros, e.g. SYMCRYPT_CPU_AMD64
add_compile_options(-D_AMD64_)
if (CMAKE_BUILD_TYPE MATCHES Release|RelWithDebInfo)
add_compile_options(-O3)
endif()
add_compile_options(-O3)

# Enable a baseline of features for the compiler to support everywhere
# Other than for SSSE3 we do not expect the compiler to generate these instructions anywhere other than with intrinsics
Expand Down
4 changes: 1 addition & 3 deletions cmake-toolchain/LinuxUserMode-ARM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,4 @@ if(NOT CMAKE_HOST_SYSTEM_PROCESSOR MATCHES armv8l|ARM$|ARM32|aarch32 AND NOT SCO
endif()

add_compile_options(-D_ARM_)
if (CMAKE_BUILD_TYPE MATCHES Release|RelWithDebInfo)
add_compile_options(-O3)
endif()
add_compile_options(-O3)
4 changes: 1 addition & 3 deletions cmake-toolchain/LinuxUserMode-ARM64.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,4 @@ endif()

# Define _ARM64_ to set up the correct SymCrypt macros, e.g. SYMCRYPT_CPU_ARM64
add_compile_options(-D_ARM64_)
if (CMAKE_BUILD_TYPE MATCHES Release|RelWithDebInfo)
add_compile_options(-O3)
endif()
add_compile_options(-O3)