Skip to content

Commit

Permalink
Fix SSE not being enabled in pffft for 32bit builds
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Dec 19, 2022
1 parent 27c33ba commit 2aa63fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2aa63fb

Please sign in to comment.