Browse Source

Fix build against gcc9 (compiler bug)

Closes #45

Signed-off-by: falkTX <falktx@falktx.com>
tags/2020-07-14
falkTX 5 years ago
parent
commit
986afb100e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 6 additions and 0 deletions
  1. +3
    -0
      ports/easySSP/LV2/premake.lua
  2. +3
    -0
      ports/easySSP/VST/premake.lua

+ 3
- 0
ports/easySSP/LV2/premake.lua View File

@@ -3,6 +3,9 @@ dofile("../../../scripts/make-project.lua")
package = make_juce_lv2_project("EasySSP") package = make_juce_lv2_project("EasySSP")
-- FIX GCC9 compiler bug, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90006
package.config["Release"].buildoptions = { "-fno-tree-slp-vectorize" }
package.files = { package.files = {
matchfiles ( matchfiles (
"../source/*.cpp", "../source/*.cpp",


+ 3
- 0
ports/easySSP/VST/premake.lua View File

@@ -3,6 +3,9 @@ dofile("../../../scripts/make-project.lua")
package = make_juce_vst_project("EasySSP") package = make_juce_vst_project("EasySSP")
-- FIX GCC9 compiler bug, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90006
package.config["Release"].buildoptions = { "-fno-tree-slp-vectorize" }
package.files = { package.files = {
matchfiles ( matchfiles (
"../source/*.cpp", "../source/*.cpp",


Loading…
Cancel
Save