Fix SSE not being enabled in pffft for 32bit builds

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-12-19 13:34:16 +00:00
parent 27c33ba897
commit 2aa63fbc46
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
2 changed files with 6 additions and 1 deletions

View file

@ -4,7 +4,7 @@ on:
push:
env:
CACHE_VERSION: 38
CACHE_VERSION: 39
CARDINAL_UNDER_WINE: 1
EMSCRIPTEN_VERSION: 3.1.27
DEBIAN_FRONTEND: noninteractive

View file

@ -62,6 +62,11 @@ BASE_FLAGS += -IRack/dep/osdialog
BASE_FLAGS += -IRack/dep/oui-blendish
BASE_FLAGS += -IRack/dep/pffft
ifeq ($(CPU_I386),true)
# needed for enabling SSE in pffft
BASE_FLAGS += -Di386
endif
ifeq ($(DEBUG),true)
BASE_FLAGS += -UDEBUG
ifeq ($(WASM),true)