Browse Source

Use generic implementation for ysfx eel riscv builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.1
falkTX 2 years ago
parent
commit
c9fc68aaa3
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 8 additions and 0 deletions
  1. +3
    -0
      source/Makefile.deps.mk
  2. +5
    -0
      source/modules/ysfx/Makefile

+ 3
- 0
source/Makefile.deps.mk View File

@@ -81,6 +81,9 @@ ifneq (,$(filter aarch64%,$(TARGET_PROCESSOR)))
CPU_AARCH64 = true
CPU_ARM_OR_AARCH64 = true
endif
ifneq (,$(filter riscv64%,$(TARGET_PROCESSOR)))
CPU_RISCV64 = true
endif

# ---------------------------------------------------------------------------------------------------------------------
# Set PKG_CONFIG (can be overridden by environment variable)


+ 5
- 0
source/modules/ysfx/Makefile View File

@@ -44,6 +44,11 @@ YSFX_FLAGS += -pthread
endif
endif

ifeq ($(CPU_RISCV64),true)
# FIXME
YSFX_FLAGS += -DEEL_TARGET_PORTABLE
endif

ifeq ($(WASM),true)
# FIXME
YSFX_FLAGS += -DEEL_TARGET_PORTABLE


Loading…
Cancel
Save