diff options
author | Oxore <oxore@protonmail.com> | 2023-04-23 21:10:33 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-04-23 21:10:33 +0300 |
commit | 4aa7dc4ab65b249d36ef9f6bbfee8b842aec8348 (patch) | |
tree | 2db7a2a2f43f4efb7b00d2cf684e31c6801fa56c /CMakeLists.txt | |
parent | e8bc35a6297da6bea1eed833ac25cfebe1fee355 (diff) |
Split disasm into procedures by the highest nibble
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dfb8f08..2d47415 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS True) set(common_flags) set(common_debug_flags "-fsanitize=address -fno-omit-frame-pointer -O1") # Uncomment to enalbe profiler -set(common_debug_flags "${common_debug_flags} -pg") +#set(common_debug_flags "${common_debug_flags} -pg") set(common_compile_flags "-Wall -Wextra -pedantic") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${common_compile_flags} ${common_flags}") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} ${common_debug_flags}") |