Skip to content

Commit

Permalink
workaround for build issue on updated gx plugins
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Sep 27, 2024
1 parent 6c6bf1a commit aeff52e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
7 changes: 5 additions & 2 deletions plugins/package/collisiondrive/collisiondrive.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
######################################
#
# CollisionDrive
# collisiondrive
#
######################################

Expand All @@ -12,7 +12,10 @@ ifdef BR2_cortex_a7
COLLISIONDRIVE_SSE_CFLAGS = -mfpu=vfpv3
endif

COLLISIONDRIVE_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(COLLISIONDRIVE_SSE_CFLAGS)" -C $(@D)
# FIXME remove this, workaround for build issue https://github.com/mod-audio/mod-plugin-builder/pull/178
COLLISIONDRIVE_SSE_CFLAGS += -std=gnu++11

COLLISIONDRIVE_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(COLLISIONDRIVE_SSE_CFLAGS)" -C $(@D)

define COLLISIONDRIVE_BUILD_CMDS
$(COLLISIONDRIVE_TARGET_MAKE) mod
Expand Down
3 changes: 3 additions & 0 deletions plugins/package/gxbajatubedriver/gxbajatubedriver.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ ifdef BR2_cortex_a7
GXBAJATUBEDRIVER_SSE_CFLAGS = -mfpu=vfpv3
endif

# FIXME remove this, workaround for build issue https://github.com/mod-audio/mod-plugin-builder/pull/178
GXBAJATUBEDRIVER_SSE_CFLAGS += -std=gnu++11

GXBAJATUBEDRIVER_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(GXBAJATUBEDRIVER_SSE_CFLAGS)" -C $(@D)

define GXBAJATUBEDRIVER_BUILD_CMDS
Expand Down
3 changes: 3 additions & 0 deletions plugins/package/gxknightfuzz/gxknightfuzz.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ ifdef BR2_cortex_a7
GXKNIGHTFUZZ_SSE_CFLAGS = -mfpu=vfpv3
endif

# FIXME remove this, workaround for build issue https://github.com/mod-audio/mod-plugin-builder/pull/178
GXKNIGHTFUZZ_SSE_CFLAGS += -std=gnu++11

GXKNIGHTFUZZ_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(GXKNIGHTFUZZ_SSE_CFLAGS)" -C $(@D)

define GXKNIGHTFUZZ_BUILD_CMDS
Expand Down
3 changes: 3 additions & 0 deletions plugins/package/gxslowgear/gxslowgear.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ ifdef BR2_cortex_a7
GXSLOWGEAR_SSE_CFLAGS = -mfpu=vfpv3
endif

# FIXME remove this, workaround for build issue https://github.com/mod-audio/mod-plugin-builder/pull/178
GXSLOWGEAR_SSE_CFLAGS += -std=gnu++11

GXSLOWGEAR_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(GXSLOWGEAR_SSE_CFLAGS)" -C $(@D)

define GXSLOWGEAR_BUILD_CMDS
Expand Down
1 change: 0 additions & 1 deletion plugins/package/gxswitchlesswah/GxSwitchlessWah.lv2

This file was deleted.

3 changes: 3 additions & 0 deletions plugins/package/gxswitchlesswah/gxswitchlesswah.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ ifdef BR2_cortex_a7
GXSWITCHLESSWAH_SSE_CFLAGS = -mfpu=vfpv3
endif

# FIXME remove this, workaround for build issue https://github.com/mod-audio/mod-plugin-builder/pull/178
GXSWITCHLESSWAH_SSE_CFLAGS += -std=gnu++11

GXSWITCHLESSWAH_TARGET_MAKE = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) SSE_CFLAGS="$(GXSWITCHLESSWAH_SSE_CFLAGS)" -C $(@D)

define GXSWITCHLESSWAH_BUILD_CMDS
Expand Down

0 comments on commit aeff52e

Please sign in to comment.