This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
Cardinal
mirror of
https://github.com/DISTRHO/Cardinal.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
18
Wiki
Activity
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
27c33ba897
commit
2aa63fbc46
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
2 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
.github/workflows/build.yml
+5
-0
src/Makefile
+ 1
- 1
.github/workflows/build.yml
View File
@@ -4,7 +4,7 @@ on:
push:
env:
CACHE_VERSION: 3
8
CACHE_VERSION: 3
9
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)
Write
Preview
Loading…
Cancel
Save