Skip to content

Commit

Permalink
Skip a few plugins on macOS, try revert last change a bit
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Oct 17, 2023
1 parent 76f979d commit 2c867e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
path: |
*.dmg
windows:
win64:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,21 @@ PLUGINS += x42-tinygain
# FIXME plugin binary missing (win32 RUNTIME vs LIBRARY)
PLUGINS += aidadsp-lv2
# FIXME crashes on load on macOS
ifneq ($(MACOS),true)
PLUGINS += carla-plugins
endif
# FIXME needs python2
# PLUGINS += fomp
# FIXME needs tweaks for waf/python3 path
# PLUGINS += mod-mda-lv2
# FIXME fails to build: implicit declaration of function '__atomic_store_4'
ifneq ($(MACOS),true)
PLUGINS += modspectre
endif
# FIXME fails to build: implicit declaration of function 'basename'
ifneq ($(MACOS),true)
PLUGINS += notes-lv2
endif

# include plugin projects for version and bundle list
include $(foreach PLUGIN,$(PLUGINS),mod-plugin-builder/plugins/package/$(PLUGIN)/$(PLUGIN).mk)
Expand Down
2 changes: 1 addition & 1 deletion utils/plugin-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export PAWPAW_PREFIX
export TOOLCHAIN_PREFIX

if [ "${MACOS}" -eq 1 ]; then
export PATH="${PAWPAW_PREFIX}-host/bin:/usr/local/opt/coreutils/bin:${PATH}"
export PATH="${PAWPAW_PREFIX}-host/bin:${PATH}"
fi

make -f utils/plugin-builder.mk pkgname="${plugin}" ${MAKE_ARGS} PREFIX=/usr WITH_LTO=false VERBOSE=1
Expand Down

0 comments on commit 2c867e9

Please sign in to comment.