Browse Source

Fix SSE not being enabled in pffft for 32bit builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.12
falkTX 2 years ago
parent
commit
2aa63fbc46
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 6 additions and 1 deletions
  1. +1
    -1
      .github/workflows/build.yml
  2. +5
    -0
      src/Makefile

+ 1
- 1
.github/workflows/build.yml 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


+ 5
- 0
src/Makefile 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)


Loading…
Cancel
Save