Browse Source

Use -fabi-version=11 for MOD builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.12
falkTX 3 years ago
parent
commit
492ed37783
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 9 additions and 0 deletions
  1. +3
    -0
      plugins/Makefile
  2. +3
    -0
      src/Makefile
  3. +3
    -0
      src/Makefile.cardinal.mk

+ 3
- 0
plugins/Makefile View File

@@ -1197,6 +1197,9 @@ BUILD_CXX_FLAGS += -fno-finite-math-only -fno-strict-aliasing

ifneq ($(MACOS),true)
BUILD_CXX_FLAGS += -faligned-new -Wno-abi
ifeq ($(MOD_BUILD),true)
BUILD_CXX_FLAGS += -fabi-version=11
endif
endif

# Rack code is not tested for this flag, unset it


+ 3
- 0
src/Makefile View File

@@ -112,6 +112,9 @@ BUILD_CXX_FLAGS += -fno-finite-math-only -fno-strict-aliasing

ifneq ($(MACOS),true)
BUILD_CXX_FLAGS += -faligned-new -Wno-abi
ifeq ($(MOD_BUILD),true)
BUILD_CXX_FLAGS += -fabi-version=11
endif
endif

# use our custom function to invert some colors


+ 3
- 0
src/Makefile.cardinal.mk View File

@@ -288,6 +288,9 @@ BUILD_CXX_FLAGS += -fno-finite-math-only -fno-strict-aliasing

ifneq ($(MACOS),true)
BUILD_CXX_FLAGS += -faligned-new -Wno-abi
ifeq ($(MOD_BUILD),true)
BUILD_CXX_FLAGS += -fabi-version=11
endif
endif

# Rack code is not tested for this flag, unset it


Loading…
Cancel
Save