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 c4c05d5edca9a6727dd4671bdd97bf5697a4729f
parent 6fb03a07bea77461309f1af24fcaecab561aba5e
Author: dsp56300 <lyve2909+githubdsp56300@gmail.com>
Date:   Wed, 14 Jul 2021 15:23:49 +0200

statically link libgcc and libstdc++

Diffstat:
MCMakeLists.txt | 2+-
Msource/jucePlugin/CMakeLists.txt | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -38,7 +38,7 @@ endif() add_executable(virusTestConsole) target_sources(virusTestConsole PRIVATE source/virusTestConsole/virusTestConsole.cpp) -target_link_libraries(virusTestConsole PUBLIC virusLib) +target_link_libraries(virusTestConsole PUBLIC virusLib -static-libgcc -static-libstdc++) # ----------------- CPack diff --git a/source/jucePlugin/CMakeLists.txt b/source/jucePlugin/CMakeLists.txt @@ -47,4 +47,5 @@ PUBLIC #juce::juce_recommended_config_flags #juce::juce_recommended_lto_flags #juce::juce_recommended_warning_flags + -static-libgcc -static-libstdc++ )