Browse Source

Workaround build issue with old 32bit mingw

Sort of testing

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
294bc86407
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      source/modules/juce_audio_basics/Makefile

+ 7
- 0
source/modules/juce_audio_basics/Makefile View File

@@ -12,6 +12,13 @@ include ../Makefile.mk


BUILD_CXX_FLAGS += $(JUCE_AUDIO_BASICS_FLAGS) -I.. BUILD_CXX_FLAGS += $(JUCE_AUDIO_BASICS_FLAGS) -I..


# needed for older mingw, crashes on optimized float operations
ifeq ($(WIN32),true)
ifneq (,$(findstring i686,$(TARGET_MACHINE)))
BUILD_CXX_FLAGS += -mpreferred-stack-boundary=2
endif
endif

# --------------------------------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------------------------------


ifeq ($(MACOS),true) ifeq ($(MACOS),true)


Loading…
Cancel
Save