gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 82d053784170a561173c4016c3f091d769436f90
parent 2e5046656afe338b03b74fc521238da3fb26c266
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 27 Jan 2025 00:34:10 +0100

add (commented) options to disable thread sanitizer

Diffstat:
Msource/hardwareLib/CMakeLists.txt | 3+++
Msource/nord/n2x/n2xLib/CMakeLists.txt | 3+++
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/source/hardwareLib/CMakeLists.txt b/source/hardwareLib/CMakeLists.txt @@ -23,3 +23,6 @@ target_link_libraries(hardwareLib PUBLIC 68kEmu dsp56kEmu synthLib) set_property(TARGET hardwareLib PROPERTY FOLDER "Gearmulator") target_include_directories(hardwareLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..) + +#target_compile_options(hardwareLib PRIVATE -fsanitize=thread) +#target_link_options(hardwareLib PUBLIC -fsanitize=thread) diff --git a/source/nord/n2x/n2xLib/CMakeLists.txt b/source/nord/n2x/n2xLib/CMakeLists.txt @@ -32,3 +32,6 @@ endif() set_property(TARGET n2xLib PROPERTY FOLDER "N2x") target_include_directories(n2xLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..) + +#target_compile_options(n2xLib PRIVATE -fsanitize=thread) +#target_link_options(n2xLib PUBLIC -fsanitize=thread)