Skip to content

Commit

Permalink
Fix plugins, alternative to monitor connected status (with debug)
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Oct 31, 2023
1 parent b4cfd32 commit d3ad186
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ mod-ui/utils/libmod_utils$(SO_EXT): $(BOOTSTRAP_FILES) mod-ui/utils/utils.h mod-

# ---------------------------------------------------------------------------------------------------------------------

mod-host/mod-host.so: $(BOOTSTRAP_FILES)
mod-host/mod-host.so: mod-host/src/*.c mod-host/src/*.h mod-host/src/monitor/*.c mod-host/src/monitor/*.h $(BOOTSTRAP_FILES)
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) MODAPP=1 SKIP_READLINE=1 SKIP_FFTW335=1 -C mod-host

# ---------------------------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion mod-host
2 changes: 1 addition & 1 deletion mod-plugin-builder
4 changes: 4 additions & 0 deletions utils/plugin-builder/validate-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ set -e
mkdir -p "${DOCS_DIR}/MOD App/keys"
mkdir -p "${DOCS_DIR}/MOD App/user-files/Audio Recordings"

if [ -z "${EXE_WRAPPER}" ] && [ -n "${VALGRIND}" ] && [ "${VALGRIND}" -eq 1 ]; then
EXE_WRAPPER="valgrind --leak-check=full --track-origins=yes --keep-debuginfo=yes --suppressions=../mod-plugin-builder/plugins-dep/valgrind-libdl.supp"
fi

PLUGINS=($(${EXE_WRAPPER} "${PAWPAW_PREFIX}/lib/carla/carla-discovery-native${APP_EXT}" lv2 ":all" 2>/dev/null | tr -dC '[:print:]\n' | awk 'sub("carla-discovery::label::","")'))

for p in ${PLUGINS[@]}; do
Expand Down

0 comments on commit d3ad186

Please sign in to comment.