Skip to content

Instantly share code, notes, and snippets.

@r-rmcgibbo
Created March 15, 2021 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-rmcgibbo/1d930bcad5948e892c00e0d551a0ceff to your computer and use it in GitHub Desktop.
Save r-rmcgibbo/1d930bcad5948e892c00e0d551a0ceff to your computer and use it in GitHub Desktop.
system: x86_64-linux | build_time: 3 minutes | https://github.com/NixOS/nixpkgs/pull/116460
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking sources
@nix { "action": "setPhase", "phase": "patchPhase" }
patching sources
patching script interpreter paths in ./stepseq.lv2/gridgen.sh
./stepseq.lv2/gridgen.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/f7jzmxq9bpbxsg69cszx56mw14n115n5-bash-4.4-p23/bin/bash"
patching script interpreter paths in ./matrixmixer.lv2/genttl.sh
./matrixmixer.lv2/genttl.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/f7jzmxq9bpbxsg69cszx56mw14n115n5-bash-4.4-p23/bin/bash"
patching script interpreter paths in ./matrixmixer.lv2/genhead.sh
./matrixmixer.lv2/genhead.sh: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/f7jzmxq9bpbxsg69cszx56mw14n115n5-bash-4.4-p23/bin/bash"
@nix { "action": "setPhase", "phase": "configurePhase" }
configuring
no configure script, doing nothing
@nix { "action": "setPhase", "phase": "buildPhase" }
building
build flags: SHELL=/nix/store/f7jzmxq9bpbxsg69cszx56mw14n115n5-bash-4.4-p23/bin/bash PREFIX=\$\(out\) FONTFILE=/nix/store/y1hybm8h1kln0hg06c42m4g1wsblc0ig-freefont-ttf-20120503/share/fonts/truetype/FreeSansBold.ttf
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make: [Makefile:46: submodule_check] Error 1 (ignored)
make -C balance.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/balance.lv2'
Version: 0.6.7 -> 0 6 7
LV2 Version: 1550 0
sed "s/@LV2NAME@/balance/;s/@LIB_EXT@/.so/" \
manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/balance/;s/@LV2GUI@/balanceUI/;s/@LIB_EXT@/.so/;s/@UI_TYPE@/X11UI/" \
manifest.ui.ttl.in >> build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1550 ;/g" \
balance.ttl.in > build/balance.ttl
sed "s/@UI_TYPE@/X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/;" \
balance.ui.ttl.in >> build/balance.ttl
g++ -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DHAVE_LV2_1_8 \
-o build/balance.so balance.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/balance.so
g++ -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DHAVE_LV2_1_8 `pkg-config --cflags glu gl` -DFONTFILE=\"/nix/store/y1hybm8h1kln0hg06c42m4g1wsblc0ig-freefont-ttf-20120503/share/fonts/truetype/FreeSansBold.ttf\" `pkg-config --cflags freetype2` `pkg-config --cflags ftgl` -DHAVE_FTGL -DUINQHACK=Blc -DFONTSIZE=36 \
-o build/balanceUI.so ui.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic pugl/pugl_x11.c -lX11 `pkg-config --libs glu ftgl` `pkg-config --libs ftgl`
strip -s build/balanceUI.so
make[1]: Leaving directory '/build/x42-plugins-20200714/balance.lv2'
make -C controlfilter.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/controlfilter.lv2'
Version: 0.4.1 -> 0 4 1
LV2 Version: 1026 0
echo "#include \"src/ttl.h\"" > filters.c
i=0; for file in filters/exp.c filters/invert.c filters/linear.c filters/lpf.c filters/nlog.c; do \
echo "/* --- */" >> filters.c; \
echo "#define CSC_FILTER(FNX) CSC_FLT($i, FNX)" >> filters.c; \
echo "#define INIT_FN(NAME) XINIT_FN(NAME)" >> filters.c; \
echo "#define PROC_FN(NAME) XPROC_FN(NAME)" >> filters.c; \
echo "#include \"${file}\"" >> filters.c; \
echo "CSC_FILTER(CSC_NAME)" >> filters.c; \
echo "#undef CSC_FILTER" >> filters.c; \
echo "#undef INIT_FN" >> filters.c; \
echo "#undef PROC_FN" >> filters.c; \
echo "#undef CSC_NAME" >> filters.c; \
i=`expr $i + 1`; \
done;
echo "/* --- */" >> filters.c; \
echo "#define LOOP_DESC(FN) \\" >> filters.c;
i=0; for file in filters/exp.c filters/invert.c filters/linear.c filters/lpf.c filters/nlog.c; do \
echo "FN($i) \\" >> filters.c; \
i=`expr $i + 1`; \
done;
echo >> filters.c;
cat lv2ttl/manifest.ttl.in > build/manifest.ttl
gcc -E -I. -DCSC_MANIFEST filters.c \
| grep -v '^\#' \
| sed "s/HTTPP/http:\//g;s/HASH/#/g;s/@LV2NAME@/controlfilter/g;s/@LIB_EXT@/.so/g" \
| uniq \
>> build/manifest.ttl
for file in presets/*.ttl; do head -n 3 $file >> build/manifest.ttl; echo "rdfs:seeAlso <presets.ttl> ." >> build/manifest.ttl; done
cat lv2ttl/presets.ttl.in > build/presets.ttl
cat presets/*.ttl >> build/presets.ttl
cat lv2ttl/controlfilter.ttl.in > build/controlfilter.ttl
gcc -E -I. -DCSC_TTF filters.c \
| grep -v '^\#' \
| sed 's/HTTPP/http:\//g;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1026 ;/g' \
| uniq \
>> build/controlfilter.ttl
gcc -I. -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` -DVERSION="\"0.4.1\"" \
-o build/controlfilter.so src/controlfilter.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/controlfilter.so
make[1]: Leaving directory '/build/x42-plugins-20200714/controlfilter.lv2'
make -C darc.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/darc.lv2'
Version: 0.5.1 -> 0 5 1
LV2 Version: 1282 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:211: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/darc/g;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/darc/g;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/darcUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/darc/g" \
lv2ttl/darc.ttl.in > build/darc.ttl
sed "s/@LV2NAME@/darc/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/darc.gui.in >> build/darc.ttl
sed "s/@LV2NAME@/darc/g;s/@URISUFFIX@/mono/;s/@NAMESUFFIX@/ Mono/;s/@CTLSIZE@/1024/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1282 ;/g;s/@UITTL@/ui:ui darc:ui_gl ;/" \
lv2ttl/darc.ports.ttl.in >> build/darc.ttl
cat lv2ttl/darc.mono.ttl.in >> build/darc.ttl
sed "s/@LV2NAME@/darc/g;s/@URISUFFIX@/stereo/;s/@NAMESUFFIX@/ Stereo/;s/@CTLSIZE@/1024/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1282 ;/g;s/@UITTL@/ui:ui darc:ui_gl ;/" \
lv2ttl/darc.ports.ttl.in >> build/darc.ttl
cat lv2ttl/darc.stereo.ttl.in >> build/darc.ttl
gcc -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -std=c99 \
-o build/darc.so src/lv2.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lm `pkg-config --libs cairo pangocairo pango`
strip -s build/darc.so
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -pthread \
-DUINQHACK="1615840483431" \
-DPLUGIN_SOURCE="\"gui/darc.c\"" \
-o build/darcUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/darcUI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/darc.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"darc\"" \
-o x42/x42-darc \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/lv2.c \
-lm -lX11 `pkg-config --libs cairo pango pangocairo glu gl` -lm `pkg-config --libs cairo pangocairo pango` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-darc
make[1]: Leaving directory '/build/x42-plugins-20200714/darc.lv2'
make -C dpl.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/dpl.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:210: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/dpl/g;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/dpl/g;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/dplUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/dpl/g" \
lv2ttl/dpl.ttl.in > build/dpl.ttl
sed "s/@LV2NAME@/dpl/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/dpl.gui.in >> build/dpl.ttl
sed "s/@LV2NAME@/dpl/g;s/@URISUFFIX@/mono/;s/@NAMESUFFIX@/ Mono/;s/@CTLSIZE@/1024/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1024 ;/g;s/@UITTL@/ui:ui dpl:ui_gl ;/" \
lv2ttl/dpl.ports.ttl.in >> build/dpl.ttl
cat lv2ttl/dpl.mono.ttl.in >> build/dpl.ttl
sed "s/@LV2NAME@/dpl/g;s/@URISUFFIX@/stereo/;s/@NAMESUFFIX@/ Stereo/;s/@CTLSIZE@/1024/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1024 ;/g;s/@UITTL@/ui:ui dpl:ui_gl ;/" \
lv2ttl/dpl.ports.ttl.in >> build/dpl.ttl
cat lv2ttl/dpl.stereo.ttl.in >> build/dpl.ttl
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE \
-o build/dpl.so src/lv2.cc src/peaklim.cc \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lm `pkg-config --libs cairo pangocairo pango`
strip -s build/dpl.so
g++ -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -pthread \
-DUINQHACK="1615840493623" \
-DPLUGIN_SOURCE="\"gui/dpl.c\"" \
-o build/dplUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/dplUI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/dpl.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"dpl\"" \
-o x42/x42-dpl \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/lv2.cc src/peaklim.cc \
-lm -lX11 `pkg-config --libs cairo pango pangocairo glu gl` -lm `pkg-config --libs cairo pangocairo pango` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-dpl
make[1]: Leaving directory '/build/x42-plugins-20200714/dpl.lv2'
make -C convoLV2
make[1]: Entering directory '/build/x42-plugins-20200714/convoLV2'
sed "s/@LV2NAME@/convoLV2/;s/@LV2GUI@/convoLV2UI/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@CLV2UI@//" \
lv2ttl/convoLV2.ttl.in > build/convoLV2.ttl
g++ -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden `pkg-config --cflags glib-2.0 lv2 sndfile samplerate` -DHAVE_LV2_1_8 \
-o build/convoLV2.so lv2.c convolution.cc \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -lzita-convolver `pkg-config --libs sndfile samplerate` -lm
strip -s build/convoLV2.so
make[1]: Leaving directory '/build/x42-plugins-20200714/convoLV2'
make -C fat1.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/fat1.lv2'
Version: 0.6.2 -> 0 6 2
LV2 Version: 1540 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:217: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/fat1/g;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/fat1/g;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/fat1UI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/fat1/g" \
lv2ttl/fat1.ttl.in > build/fat1.ttl
sed "s/@LV2NAME@/fat1/g;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1540 ;/g;s/@UITTL@/ui:ui fat1:ui_gl ;/;s/@MODBRAND@//;s/@MODLABEL@//;s/@URISUFFIX@//;s/@NAMESUFFIX@//" \
lv2ttl/fat1.base.ttl.in >> build/fat1.ttl
cat lv2ttl/fat1.chroma.ttl.in >> build/fat1.ttl
sed "s/@LV2NAME@/fat1/g;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1540 ;/g;s/@UITTL@/ui:ui fat1:ui_gl ;/;s/@MODBRAND@//;s/@MODLABEL@//;s/@URISUFFIX@/#microtonal/;s/@NAMESUFFIX@/ (microtonal)/" \
lv2ttl/fat1.base.ttl.in >> build/fat1.ttl
cat lv2ttl/fat1.micro.ttl.in >> build/fat1.ttl
sed "s/@LV2NAME@/fat1/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/fat1.gui.in >> build/fat1.ttl
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden \
-o build/fat1.so src/fat1.cc src/retuner.cc src/resampler.cc src/resampler-table.cc \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lm `pkg-config --libs lv2 fftw3f`
strip -s build/fat1.so
g++ -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden -pthread \
-DUINQHACK="1615840504857" \
-DPLUGIN_SOURCE="\"gui/fat1.c\"" \
-o build/fat1UI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/fat1UI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/fat1.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"fat1\"" \
-o x42/x42-fat1 \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/fat1.cc src/retuner.cc src/resampler.cc src/resampler-table.cc \
-lm -lX11 `pkg-config --libs cairo pango pangocairo glu gl` -lm `pkg-config --libs lv2 fftw3f` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-fat1
make[1]: Leaving directory '/build/x42-plugins-20200714/fat1.lv2'
make -C fil4.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/fil4.lv2'
Version: 0.7.1 -> 0 7 1
LV2 Version: 1794 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:229: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/fil4/g;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/fil4/g;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/fil4UI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/fil4/g" \
lv2ttl/fil4.ttl.in > build/fil4.ttl
sed "s/@LV2NAME@/fil4/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/fil4.gui.in >> build/fil4.ttl
sed "s/@LV2NAME@/fil4/g;s/@URISUFFIX@/mono/;s/@NAMESUFFIX@/ Mono/;s/@CTLSIZE@/65888/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1794 ;/g;s/@UITTL@/ui:ui fil4:ui_gl ;/;s/@MODBRAND@//;s/@MODLABEL@//" \
lv2ttl/fil4.ports.ttl.in >> build/fil4.ttl
cat lv2ttl/fil4.mono.ttl.in >> build/fil4.ttl
sed "s/@LV2NAME@/fil4/g;s/@URISUFFIX@/stereo/;s/@NAMESUFFIX@/ Stereo/;s/@CTLSIZE@/131424/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1794 ;/g;s/@UITTL@/ui:ui fil4:ui_gl ;/;s/@MODBRAND@//;s/@MODLABEL@//" \
lv2ttl/fil4.ports.ttl.in >> build/fil4.ttl
cat lv2ttl/fil4.stereo.ttl.in >> build/fil4.ttl
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.7.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE \
-o build/fil4.so src/lv2.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lm `pkg-config --libs cairo pangocairo pango`
strip -s build/fil4.so
g++ -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango fftw3f` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.7.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -pthread \
-DUINQHACK="16158405171047" \
-DPLUGIN_SOURCE="\"gui/fil4.c\"" \
-o build/fil4UI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lX11 `pkg-config --libs cairo pango pangocairo fftw3f glu gl`
strip -s build/fil4UI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.7.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/fil4.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"fil4\"" \
-o x42/x42-fil4 \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/lv2.c \
-lm -lX11 `pkg-config --libs cairo pango pangocairo fftw3f glu gl` -lm `pkg-config --libs cairo pangocairo pango` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-fil4
make[1]: Leaving directory '/build/x42-plugins-20200714/fil4.lv2'
make -C matrixmixer.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/matrixmixer.lv2'
Version: 0.3.0 -> 0 3 0
LV2 Version: 768 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:208: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/matrixmixer/g;s/@URISUFFIX@/i8o8/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/matrixmixer/g;s/@URISUFFIX@/i8o8/;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/matrixmixerUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/matrixmixer/g;s/@SIGNATURE@//;s/@NAMESUFFIX@/8x8/;s/@URISUFFIX@/i8o8/;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 768 ;/g;s/@UITTL@/ui:ui matrixmixer:ui_gl ;/" \
lv2ttl/matrixmixer.ttl.in > build/matrixmixer.ttl
./genttl.sh 8 8 >> build/matrixmixer.ttl
sed "s/@LV2NAME@/matrixmixer/g;s/@URISUFFIX@/i8o8/;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/matrixmixer.gui.in >> build/matrixmixer.ttl
gcc -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.3.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_INPUTS=8 -DN_OUTPUTS=8 -std=c99 \
-o build/matrixmixer.so src/matrixmixer.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lm `pkg-config --libs lv2`
strip -s build/matrixmixer.so
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.3.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_INPUTS=8 -DN_OUTPUTS=8 -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.3.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_INPUTS=8 -DN_OUTPUTS=8 -pthread \
-DUINQHACK="16158405341295" \
-DPLUGIN_SOURCE="\"gui/matrixmixer.c\"" \
-o build/matrixmixerUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/matrixmixerUI_gl.so
./genhead.sh 8 8 > x42/matrixmixer.h
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.3.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_INPUTS=8 -DN_OUTPUTS=8 `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/matrixmixer.c\"" \
-DJACK_DESCRIPT="\"x42/matrixmixer.h\"" \
-DAPPNAME="\"matrixmixer8x8\"" \
-o x42/x42-matrixmixer8x8 \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
src/matrixmixer.c \
-lm -lX11 `pkg-config --libs cairo pango pangocairo glu gl` -lm `pkg-config --libs lv2` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-matrixmixer8x8
make[1]: Leaving directory '/build/x42-plugins-20200714/matrixmixer.lv2'
make -C meters.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/meters.lv2'
Version: 0.9.15 -> 0 9 15
LV2 Version: 2334 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:253: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/meters/g" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/meters/g;s/@LIB_EXT@/.so/g;s/@URI_SUFFIX@//g" \
lv2ttl/manifest.lv2.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/meters/g;s/@LIB_EXT@/.so/g;s/@UI_TYPE@/kx:Widget/;s/@LV2GUI1@/meters_glui/g;s/@LV2GUI2@/meters_glui/g;s/@LV2GUI3@/meters_glui/g;s/@LV2GUI4@/meters_glui/g;s/@LV2GUI5@/meters_glui/g;s/@LV2GUI6@/meters_glui/g;s/@LV2GUI7@/meters_glui/g;s/@LV2GUI8@/meters_glui/g;s/@LV2GUI9@/meters_glui/g;s/@LV2GUI10@/meters_glui/g;s/@LV2GUI11@/meters_glui/g" \
lv2ttl/manifest.gui.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/meters/g" \
lv2ttl/meters.ttl.in > build/meters.ttl
sed "s/@UI_URI_SUFFIX@/_gl/;s/@UI_TYPE@/kx:Widget/;s/@UI_REQ@/lv2:requiredFeature kx:Widget; lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/meters.gui.ttl.in >> build/meters.ttl
sed "s/@URI_SUFFIX@//g;s/@NAME_SUFFIX@//g;s/@DPMGUI@/mtr:dpmui_gl/g;s/@EBUGUI@/mtr:eburui_gl/g;s/@GONGUI@/mtr:goniometerui_gl/g;s/@MTRGUI@/mtr:needle_gl/g;s/@KMRGUI@/mtr:kmeterui_gl/g;s/@MPWGUI@/mtr:phasewheelui_gl/g;s/@SFSGUI@/mtr:stereoscopeui_gl/g;s/@DRMGUI@/mtr:dr14meterui_gl/g;s/@SDHGUI@/mtr:sdhmeterui_gl/g;s/@BITGUI@/mtr:bitmeterui_gl/g;s/@SURGUI@/mtr:surmeterui_gl/g;s/@INLINEDISPLAYTLL@/lv2:optionalFeature idpy:queue_draw; lv2:extensionData idpy:interface;/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 2334 ;/g" \
lv2ttl/meters.lv2.ttl.in >> build/meters.ttl
g++ -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. \
-o build/meters.so src/meters.cc jmeters/vumeterdsp.cc jmeters/iec1ppmdsp.cc jmeters/iec2ppmdsp.cc jmeters/stcorrdsp.cc jmeters/msppmdsp.cc ebumeter/ebu_r128_proc.cc jmeters/truepeakdsp.cc jmeters/kmeterdsp.cc zita-resampler/resampler.cc zita-resampler/resampler-table.cc \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lm `pkg-config --libs cairo pangocairo pango`
strip -s build/meters.so
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD \
-DUINQHACK="16158405471492" \
-o obj/pugl.o ../robtk/pugl/pugl_x11.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405481511" \
-DPLUGIN_SOURCE="\"gui/needle.c\"" \
-DRTK_DESCRIPTOR="lv2ui_needle" \
-o obj/needleUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405491530" \
-DPLUGIN_SOURCE="\"gui/ebur.c\"" \
-DRTK_DESCRIPTOR="lv2ui_ebur" \
-o obj/eburUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405531549" \
-DPLUGIN_SOURCE="\"gui/goniometer.c\"" \
-DRTK_DESCRIPTOR="lv2ui_goniometer" \
-o obj/goniometerUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405571568" \
-DPLUGIN_SOURCE="\"gui/dpm.c\"" \
-DRTK_DESCRIPTOR="lv2ui_dpm" \
-o obj/dpmUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405611587" \
-DPLUGIN_SOURCE="\"gui/kmeter.c\"" \
-DRTK_DESCRIPTOR="lv2ui_kmeter" \
-o obj/kmeterUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405631606" \
-DPLUGIN_SOURCE="\"gui/phasewheel.c\"" \
-DRTK_DESCRIPTOR="lv2ui_phasewheel" \
-o obj/phasewheelUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405671625" \
-DPLUGIN_SOURCE="\"gui/stereoscope.c\"" \
-DRTK_DESCRIPTOR="lv2ui_stereoscope" \
-o obj/stereoscopeUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405701644" \
-DPLUGIN_SOURCE="\"gui/dr14meter.c\"" \
-DRTK_DESCRIPTOR="lv2ui_dr14meter" \
-o obj/dr14meterUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405731663" \
-DPLUGIN_SOURCE="\"gui/sdhmeter.c\"" \
-DRTK_DESCRIPTOR="lv2ui_sdhmeter" \
-o obj/sdhmeterUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405761682" \
-DPLUGIN_SOURCE="\"gui/bitmeter.c\"" \
-DRTK_DESCRIPTOR="lv2ui_bitmeter" \
-o obj/bitmeterUI_gl.o ../robtk/ui_gl.c
g++ -c -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158405781701" \
-DPLUGIN_SOURCE="\"gui/surmeter.c\"" \
-DRTK_DESCRIPTOR="lv2ui_surmeter" \
-o obj/surmeterUI_gl.o ../robtk/ui_gl.c
g++ -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-o build/meters_glui.so gui/meters.c \
obj/pugl.o obj/needleUI_gl.o obj/eburUI_gl.o obj/goniometerUI_gl.o obj/dpmUI_gl.o obj/kmeterUI_gl.o obj/phasewheelUI_gl.o obj/stereoscopeUI_gl.o obj/dr14meterUI_gl.o obj/sdhmeterUI_gl.o obj/bitmeterUI_gl.o obj/surmeterUI_gl.o \
`pkg-config --cflags --libs fftw3f` -lm zita-resampler/resampler.cc zita-resampler/resampler-table.cc \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pangocairo pango glu gl`
strip -s build/meters_glui.so
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_ebur" \
-DPLUGIN_SOURCE="\"gui/ebur.c\"" \
-o x42/x42-ebur128.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_needle" \
-DPLUGIN_SOURCE="\"gui/needle.c\"" \
-o x42/x42-phase-correlation.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_dr14" \
-DPLUGIN_SOURCE="\"gui/dr14meter.c\"" \
-o x42/x42-dr14.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_kmeter" \
-DPLUGIN_SOURCE="\"gui/kmeter.c\"" \
-o x42/x42-k20rms.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_goniometer" \
-DPLUGIN_SOURCE="\"gui/goniometer.c\"" \
-o x42/x42-goniometer.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_phasewheel" \
-DPLUGIN_SOURCE="\"gui/phasewheel.c\"" \
-o x42/x42-phasewheel.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_sigdisthist" \
-DPLUGIN_SOURCE="\"gui/sdhmeter.c\"" \
-o x42/x42-histogram.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_bitmeter" \
-DPLUGIN_SOURCE="\"gui/bitmeter.c\"" \
-o x42/x42-bitmeter.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_surmeter" \
-DPLUGIN_SOURCE="\"gui/surmeter.c\"" \
-o x42/x42-surmeter.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_spectr30" \
-DPLUGIN_SOURCE="\"gui/dpm.c\"" \
-o x42/x42-spectrum30.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_stereoscope" \
-DPLUGIN_SOURCE="\"gui/stereoscope.c\"" \
-o x42/x42-stereoscope.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_tprms2" \
-DPLUGIN_SOURCE="\"gui/dr14meter.c\"" \
-o x42/x42-truepeakrms.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -Wno-unused-function -g -msse -msse2 -mfpmath=sse -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DXTERNAL_UI -DHAVE_LV2_1_8 -fPIC -fvisibility=hidden `pkg-config --cflags lv2` -DVERSION="\"0.9.15\"" -DVERSION="\"0.9.15\"" `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags jack lv2 pango pangocairo ` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"meter\"" \
-o x42/x42-meter-collection \
../robtk/jackwrap.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/meters.cc jmeters/vumeterdsp.cc jmeters/iec1ppmdsp.cc jmeters/iec2ppmdsp.cc jmeters/stcorrdsp.cc jmeters/msppmdsp.cc ebumeter/ebu_r128_proc.cc jmeters/truepeakdsp.cc jmeters/kmeterdsp.cc zita-resampler/resampler.cc zita-resampler/resampler-table.cc x42/x42-ebur128.o x42/x42-phase-correlation.o x42/x42-dr14.o x42/x42-k20rms.o x42/x42-goniometer.o x42/x42-phasewheel.o x42/x42-histogram.o x42/x42-bitmeter.o x42/x42-surmeter.o x42/x42-spectrum30.o x42/x42-stereoscope.o x42/x42-truepeakrms.o `pkg-config --cflags --libs fftw3f` -lm \
-lm -lX11 `pkg-config --libs cairo pangocairo pango glu gl` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-meter-collection
make[1]: Leaving directory '/build/x42-plugins-20200714/meters.lv2'
make -C mididebug.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/mididebug.lv2'
Version: 0.3.1 -> 0 3 1
LV2 Version: 770 0
sed "s/@LV2NAME@/mididebug/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/mididebug/;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 770 ;/g;s/@MODBRAND@//;s/@MODLABEL@//" \
lv2ttl/mididebug.ttl.in > build/mididebug.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -Wall -DHAVE_LV2_1_8 -fPIC -std=c99 `pkg-config --cflags lv2` \
-o build/mididebug.so src/mididebug.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/mididebug.so
make[1]: Leaving directory '/build/x42-plugins-20200714/mididebug.lv2'
make -C midifilter.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/midifilter.lv2'
Version: 0.6.4 -> 0 6 4
LV2 Version: 1544 0
echo "#include \"ttf.h\"" > filters.c
i=0; for file in filters/cctonote.c filters/channelfilter.c filters/channelmap.c filters/chord.c filters/enforcescale.c filters/eventblocker.c filters/keyrange.c filters/keysplit.c filters/mapcc.c filters/mapkeychannel.c filters/mapkeyscale.c filters/midichoke.c filters/mididelay.c filters/mididup.c filters/midistrum.c filters/miditranspose.c filters/monolegato.c filters/nodup.c filters/nosensing.c filters/notetocc.c filters/notetoggle.c filters/ntapdelay.c filters/passthru.c filters/quantize.c filters/randvelocity.c filters/scalecc.c filters/singlechannel.c filters/sostenuto.c filters/velocitygamma.c filters/velocityrange.c filters/velocityscale.c; do \
echo "#define MFD_FILTER(FNX) MFD_FLT($i, FNX)" >> filters.c; \
echo "#include \"${file}\"" >> filters.c; \
echo "#undef MFD_FILTER" >> filters.c; \
i=`expr $i + 1`; \
done;
echo "#define LOOP_DESC(FN) \\" >> filters.c;
i=0; for file in filters/cctonote.c filters/channelfilter.c filters/channelmap.c filters/chord.c filters/enforcescale.c filters/eventblocker.c filters/keyrange.c filters/keysplit.c filters/mapcc.c filters/mapkeychannel.c filters/mapkeyscale.c filters/midichoke.c filters/mididelay.c filters/mididup.c filters/midistrum.c filters/miditranspose.c filters/monolegato.c filters/nodup.c filters/nosensing.c filters/notetocc.c filters/notetoggle.c filters/ntapdelay.c filters/passthru.c filters/quantize.c filters/randvelocity.c filters/scalecc.c filters/singlechannel.c filters/sostenuto.c filters/velocitygamma.c filters/velocityrange.c filters/velocityscale.c; do \
echo "FN($i) \\" >> filters.c; \
i=`expr $i + 1`; \
done;
echo >> filters.c;
cat manifest.ttl.in > build/manifest.ttl
gcc -E -I. -DMX_MANIFEST filters.c \
| grep -v '^\#' \
| sed "s/HTTPP/http:\//g;s/HASH/#/g;s/@LV2NAME@/midifilter/g;s/@LIB_EXT@/.so/g" \
| uniq \
>> build/manifest.ttl
for file in presets/*.ttl; do grep -A 3 "mfltpreset:" $file | sed 's/ ;/; rdfs:seeAlso <presets.ttl> ./g;s/^---*//g' >> build/manifest.ttl; done
cat presets.ttl.in > build/presets.ttl
cat presets/*.ttl >> build/presets.ttl
cat midifilter.ttl.in > build/midifilter.ttl
gcc -E -I. -DMX_TTF filters.c \
| grep -v '^\#' \
| sed 's/HTTPP/http:\//g;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1544 ;/g;s/@MODBRAND@//;s/mod:label[^;]*;//' \
| uniq \
>> build/midifilter.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` \
-o build/midifilter.so midifilter.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/midifilter.so
make[1]: Leaving directory '/build/x42-plugins-20200714/midifilter.lv2'
make -C midigen.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/midigen.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
sed "s/@LV2NAME@/midigen/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1024 ;/g;s/@MODBRAND@//;s/@MODLABEL@//" \
lv2ttl/midigen.ttl.in > build/midigen.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -DHAVE_LV2_1_8 -fPIC -std=c99 `pkg-config --cflags lv2` \
-o build/midigen.so src/midigen.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/midigen.so
make[1]: Leaving directory '/build/x42-plugins-20200714/midigen.lv2'
make -C midimap.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/midimap.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
sed "s/@LV2NAME@/midimap/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
cat lv2ttl/presets.ttl.in > build/presets.ttl
cat presets/*.ttl >> build/presets.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1024 ;/g" \
lv2ttl/midimap.ttl.in > build/midimap.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -DHAVE_LV2_1_8 -std=c99 `pkg-config --cflags lv2` \
-o build/midimap.so src/midimap.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/midimap.so
make[1]: Leaving directory '/build/x42-plugins-20200714/midimap.lv2'
make -C mixtri.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/mixtri.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:184: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/mixtri/g;s/@LIB_EXT@/.so/g" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@INSTANCE@/lv2/g;s/@LV2NAME@/mixtri/g;s/@LIB_EXT@/.so/g;s/@URI_SUFFIX@//g" \
lv2ttl/manifest.lv2.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/mixtri/g;s/@LIB_EXT@/.so/g;s/@UI_TYPE@/kx:Widget/;s/@LV2GUI@/mixtriUI_gl/g" \
lv2ttl/manifest.gl.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/mixtri/g" \
lv2ttl/mixtri.ttl.in > build/mixtri.ttl
sed "s/@LV2NAME@/mixtri/g;s/@UI_URI_SUFFIX@/_gl/;s/@UI_TYPE@/kx:Widget/;s/@UI_REQ@/lv2:requiredFeature kx:Widget; lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/;s/@URI_SUFFIX@//g" \
lv2ttl/mixtri.gui.ttl.in >> build/mixtri.ttl
sed "s/@INSTANCE@/lv2/g;s/@LV2NAME@/mixtri/g;s/@URI_SUFFIX@//g;s/@NAME_SUFFIX@//g;s/@UIDEF@/ui:ui/;s/@UI@/ui_gl/g;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1024 ;/g" \
lv2ttl/mixtri.lv2.ttl.in >> build/mixtri.ttl
gcc -Wall -Wno-unused-function -DHAVE_LV2_1_8 -I. -DMIXTRILV2 -DXTERNAL_UI `pkg-config --cflags lv2 ltc` -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" -fPIC -fvisibility=hidden -std=c99 \
-o build/mixtri.so src/mixtri.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread `pkg-config --libs ltc` -lm
strip -s build/mixtri.so
g++ -Wall -Wno-unused-function -DHAVE_LV2_1_8 -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE -Wall -Wno-unused-function -DHAVE_LV2_1_8 -I. -DMIXTRILV2 -DXTERNAL_UI `pkg-config --cflags lv2 ltc` -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" -fPIC -fvisibility=hidden `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158406342646" \
-DPLUGIN_SOURCE="\"gui/mixtri.c\"" \
-o build/mixtriUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pangocairo pango glu gl`
strip -s build/mixtriUI_gl.so
g++ -I. -Wall -Wno-unused-function -DHAVE_LV2_1_8 -I. -DMIXTRILV2 -DXTERNAL_UI `pkg-config --cflags lv2 ltc` -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.4.0\"" -fPIC -fvisibility=hidden -Wall -Wno-unused-function -DHAVE_LV2_1_8 `pkg-config --cflags jack lv2 pango pangocairo ltc glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/mixtri.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/mixtri.h\"" \
-DAPPNAME="\"mixtri\"" \
-o x42/x42-mixtri \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
src/mixtri.c \
-lm -lX11 `pkg-config --libs cairo pangocairo pango glu gl` `pkg-config --libs ltc` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-mixtri
make[1]: Leaving directory '/build/x42-plugins-20200714/mixtri.lv2'
make -C nodelay.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/nodelay.lv2'
Version: 0.5.1 -> 0 5 1
LV2 Version: 1282 0
sed "s/@LV2NAME@/nodelay/;s/@LIB_EXT@/.so/" \
manifest.ttl.in > build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1282 ;/g" \
nodelay.ttl.in > build/nodelay.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` \
-o build/nodelay.so nodelay.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/nodelay.so
make[1]: Leaving directory '/build/x42-plugins-20200714/nodelay.lv2'
make -C onsettrigger.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/onsettrigger.lv2'
Version: 0.4.1 -> 0 4 1
LV2 Version: 1026 0
sed "s/@LV2NAME@/onsettrigger/g" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/onsettrigger/g;s/@LIB_EXT@/.so/g;s/@URI_SUFFIX@//g" \
lv2ttl/manifest.lv2.in >> build/manifest.ttl
sed "s/@LV2NAME@/onsettrigger/g" \
lv2ttl/onsettrigger.ttl.in > build/onsettrigger.ttl
sed "s/@URI_SUFFIX@//g;s/@NAME_SUFFIX@//g;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1026 ;/g" \
lv2ttl/onsettrigger.lv2.in >> build/onsettrigger.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -Wno-unused-function -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` -std=c99 \
-o build/onsettrigger.so src/ost.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/onsettrigger.so
make[1]: Leaving directory '/build/x42-plugins-20200714/onsettrigger.lv2'
make -C sisco.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/sisco.lv2'
Version: 0.9.0 -> 0 9 0
LV2 Version: 2304 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:198: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/sisco/g" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/sisco/g;s/@LIB_EXT@/.so/g;s/@URI_SUFFIX@//g" \
lv2ttl/manifest.lv2.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/sisco/g;s/@LIB_EXT@/.so/g;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/siscoUI_gl/g" \
lv2ttl/manifest.gl.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/sisco/g" \
lv2ttl/sisco.ttl.in > build/sisco.ttl
sed "s/@UI_URI_SUFFIX@/_gl/;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/;s/@URI_SUFFIX@//g" \
lv2ttl/sisco.gui.ttl.in >> build/sisco.ttl
sed "s/@URI_SUFFIX@//g;s/@NAME_SUFFIX@//g;s/@SISCOUI@/ui_gl/g;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 2304 ;/g" \
lv2ttl/sisco.lv2.ttl.in >> build/sisco.ttl
gcc -I. -g -Wall -Wno-unused-function -DHAVE_LV2_1_8 `pkg-config --cflags lv2` -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.9.0\"" -fPIC -fvisibility=hidden -std=c99 \
-o build/sisco.so src/sisco.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread
strip -s build/sisco.so
g++ -I. -g -Wall -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.9.0\"" `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/sisco.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/jack_4chan.h\"" \
-DAPPNAME="\"scope\"" \
-o build/x42-scope \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
zita-resampler/resampler.cc zita-resampler/resampler-table.cc src/sisco.c \
-lm `pkg-config --libs pangocairo glu gl` -lX11 `pkg-config --libs cairo pangocairo pango glu gl` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s build/x42-scope
g++ -g -Wall -Wno-unused-function -DHAVE_LV2_1_8 -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE -I. -g -Wall -Wno-unused-function -DHAVE_LV2_1_8 `pkg-config --cflags lv2` -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.9.0\"" -fPIC -fvisibility=hidden `pkg-config --cflags cairo pango` -DUSE_GUI_THREAD -pthread \
-DUINQHACK="16158406533015" \
-DPLUGIN_SOURCE="\"gui/sisco.c\"" \
-o build/siscoUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
zita-resampler/resampler.cc zita-resampler/resampler-table.cc \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pangocairo pango glu gl`
strip -s build/siscoUI_gl.so
make[1]: Leaving directory '/build/x42-plugins-20200714/sisco.lv2'
make -C spectra.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/spectra.lv2'
Version: 0.5.0 -> 0 5 0
LV2 Version: 1280 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:199: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/spectra/g;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/spectra/g;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/spectraUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/spectra/g;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1280 ;/g;s/@UITTL@/ui:ui spectra:ui_gl ;/" \
lv2ttl/spectra.ttl.in > build/spectra.ttl
sed "s/@LV2NAME@/spectra/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature urid:map ; lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/spectra.gui.in >> build/spectra.ttl
gcc -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -std=c99 \
-o build/spectra.so src/spectra.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lm
strip -s build/spectra.so
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango fftw3f` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -pthread \
-DUINQHACK="16158406593148" \
-DPLUGIN_SOURCE="\"gui/spectra.c\"" \
-o build/spectraUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -lX11 `pkg-config --libs cairo pango pangocairo fftw3f glu gl`
strip -s build/spectraUI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.0\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden `pkg-config --cflags jack lv2 pango pangocairo fftw3f glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/spectra.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/spectra.h\"" \
-DAPPNAME="\"spectr\"" \
-o x42/x42-spectr \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
src/spectra.c \
-lm -lX11 `pkg-config --libs cairo pango pangocairo fftw3f glu gl` -lm `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-spectr
make[1]: Leaving directory '/build/x42-plugins-20200714/spectra.lv2'
make -C stepseq.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/stepseq.lv2'
Version: 0.6.1 -> 0 6 1
LV2 Version: 1538 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:220: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/stepseq/g;s/@URISUFFIX@/s8n8/;s/@LIB_EXT@/.so/" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@LV2NAME@/stepseq/g;s/@URISUFFIX@/s8n8/;s/@LIB_EXT@/.so/;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/stepseqUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/stepseq/g;s/@SIGNATURE@//;s/@NAMESUFFIX@/8x8/;s/@URISUFFIX@/s8n8/;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1538 ;/g;s/@UITTL@/ui:ui stepseq:ui_gl ;/;s/@MODBRAND@//;s/@MODLABEL@//;s/@STEPS@/8/" \
lv2ttl/stepseq.ttl.in > build/stepseq.ttl
./gridgen.sh 8 8 >> build/stepseq.ttl
echo "]; ." >> build/stepseq.ttl
sed "s/@LV2NAME@/stepseq/g;s/@URISUFFIX@/s8n8/;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/" \
lv2ttl/stepseq.gui.in >> build/stepseq.ttl
gcc -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_NOTES=8 -DN_STEPS=8 -std=c99 \
-o build/stepseq.so src/stepseq.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lm `pkg-config --libs lv2`
strip -s build/stepseq.so
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_NOTES=8 -DN_STEPS=8 -I. `pkg-config --cflags glu` -pthread -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_NOTES=8 -DN_STEPS=8 -pthread \
-DUINQHACK="16158406683396" \
-DPLUGIN_SOURCE="\"gui/stepseq.c\"" \
-o build/stepseqUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/stepseqUI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.6.1\"" `pkg-config --cflags lv2` -fPIC -fvisibility=hidden -DN_NOTES=8 -DN_STEPS=8 `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/stepseq.c\"" \
-DJACK_DESCRIPT="\"lv2ttl/stepseq.h\"" \
-DAPPNAME="\"stepseq\"" \
-o x42/x42-stepseq \
../robtk/jackwrap.c ../robtk/ui_gl.c ../robtk/pugl/pugl_x11.c \
src/stepseq.c \
-lm -lX11 `pkg-config --libs cairo pango pangocairo glu gl` -lm `pkg-config --libs lv2` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-stepseq
make[1]: Leaving directory '/build/x42-plugins-20200714/stepseq.lv2'
make -C stereoroute.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/stereoroute.lv2'
Version: 0.2.1 -> 0 2 1
LV2 Version: 514 0
sed "s/@LV2NAME@/stereoroute/;s/@LIB_EXT@/.so/" \
manifest.ttl.in > build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 514 ;/g" \
stereoroute.ttl.in > build/stereoroute.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` \
-o build/stereoroute.so stereoroute.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/stereoroute.so
make[1]: Leaving directory '/build/x42-plugins-20200714/stereoroute.lv2'
make -C testsignal.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/testsignal.lv2'
Version: 0.5.3 -> 0 5 3
LV2 Version: 1286 0
sed "s/@LV2NAME@/testsignal/;s/@LIB_EXT@/.so/" \
manifest.ttl.in > build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1286 ;/g" \
testsignal.ttl.in > build/testsignal.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` \
-o build/testsignal.so testsignal.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
testsignal.c:36:2: warning: #warning PCG-random [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wcpp-Wcpp8;;]
36 | #warning PCG-random
| ^~~~~~~
strip -s build/testsignal.so
make[1]: Leaving directory '/build/x42-plugins-20200714/testsignal.lv2'
make -C tuna.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/tuna.lv2'
Version: 0.5.2 -> 0 5 2
LV2 Version: 1284 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:228: submodule_check] Error 1 (ignored)
sed "s/@LV2NAME@/tuna/g;s/@LIB_EXT@/.so/g" \
lv2ttl/manifest.ttl.in > build/manifest.ttl
sed "s/@INSTANCE@/one/g;s/@LV2NAME@/tuna/g;s/@LIB_EXT@/.so/g" \
lv2ttl/manifest.lv2.ttl.in >> build/manifest.ttl
sed "s/@INSTANCE@/two/g;s/@LV2NAME@/tuna/g;s/@LIB_EXT@/.so/g" \
lv2ttl/manifest.lv2.ttl.in >> build/manifest.ttl
sed "s/@LV2NAME@/tuna/g;s/@LIB_EXT@/.so/g;s/@UI_TYPE@/ui:X11UI/;s/@LV2GUI@/tunaUI_gl/g" \
lv2ttl/manifest.gui.in >> build/manifest.ttl
sed "s/@LV2NAME@/tuna/g" \
lv2ttl/tuna.ttl.in > build/tuna.ttl
sed "s/@LV2NAME@/tuna/g;s/@UI_TYPE@/ui:X11UI/;s/@UI_REQ@/lv2:requiredFeature ui:idleInterface; lv2:extensionData ui:idleInterface;/;" \
lv2ttl/tuna.gui.ttl.in >> build/tuna.ttl
sed "s/@INSTANCE@/one/g;s/@LV2NAME@/tuna/g;s/@NAME_SUFFIX@//g;s/@UITTL@/ui:ui tuna:ui_gl ;/g;s/@MODBRAND@//;s/@MODLABEL@//;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1284 ;/g" \
lv2ttl/tuna.lv2.ttl.in >> build/tuna.ttl
sed "s/@INSTANCE@/two/g;s/@LV2NAME@/tuna/g;s/@NAME_SUFFIX@/[Spectrum]/g;s/@UITTL@/ui:ui tuna:ui_gl ;/g;s/@MODBRAND@//;s/@MODLABEL@//;s/@SIGNATURE@//;s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 1284 ;/g" \
lv2ttl/tuna.lv2.ttl.in >> build/tuna.ttl
gcc -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -g -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -std=c99 \
-o build/tuna.so src/tuna.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lm `pkg-config --libs lv2 fftw3f` `pkg-config --libs cairo pangocairo pango`
strip -s build/tuna.so
g++ -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -g -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE -I. `pkg-config --cflags glu` -DHAVE_IDLE_IFACE `pkg-config --cflags cairo pango` -pthread \
-DUINQHACK="16158406793750" \
-DPLUGIN_SOURCE="\"gui/tuna.c\"" \
-o build/tunaUI_gl.so ../robtk/ui_gl.c \
../robtk/pugl/pugl_x11.c \
\
-shared -Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -pthread -lX11 `pkg-config --libs cairo pango pangocairo glu gl`
strip -s build/tunaUI_gl.so
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -g -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread \
-DXTERNAL_UI -DHAVE_IDLE_IFACE -DDEFAULT_NOT_ONTOP \
-DRTK_DESCRIPTOR="lv2ui_descriptor" \
-DPLUGIN_SOURCE="\"gui/tuna.c\"" \
-o x42/x42-tuna.o \
-c ../robtk/ui_gl.c
g++ -I. -Wall -g -Wno-unused-function -DHAVE_LV2_1_8 -g -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -DVERSION="\"0.5.2\"" `pkg-config --cflags lv2 fftw3f` -fPIC -fvisibility=hidden `pkg-config --cflags cairo pangocairo pango` -I../robtk/ -DDISPLAY_INTERFACE `pkg-config --cflags jack lv2 pango pangocairo glu gl` -pthread -DDEFAULT_NOT_ONTOP \
-DXTERNAL_UI -DHAVE_IDLE_IFACE \
-DJACK_DESCRIPT="\"lv2ttl/plugins.h\"" \
-DAPPNAME="\"tuna\"" \
-o x42/x42-tuna-collection \
../robtk/jackwrap.c ../robtk/pugl/pugl_x11.c \
-DX42_MULTIPLUGIN src/tuna.c x42/x42-tuna.o \
-lm -lm `pkg-config --libs lv2 fftw3f` `pkg-config --libs cairo pangocairo pango` -lX11 `pkg-config --libs cairo pango pangocairo glu gl` `pkg-config --libs jack`
../robtk/jackwrap.c:271:84: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
271 | static uint32_t uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri);
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c:821:68: warning: 'LV2_URI_Map_Callback_Data' is deprecated [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations8;;]
821 | uri_to_id (LV2_URI_Map_Callback_Data callback_data, const char* uri)
| ^
In file included from ../robtk/jackwrap.c:93:
/nix/store/hrck1h4ifmnymhqsc46zfihc7mr48jkr-lv2-1.18.2/lib/lv2/uri-map.lv2/uri-map.h:60:15: note: declared here
60 | typedef void* LV2_URI_Map_Callback_Data;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
../robtk/jackwrap.c: In function 'int main(int, char**)':
../robtk/jackwrap.c:1440:17: warning: variable 'osc_port' set but not used [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-but-set-variable-Wunused-but-set-variable8;;]
1440 | int osc_port = 0;
| ^~~~~~~~
../robtk/jackwrap.c:1671:16: warning: ignoring return value of 'int system(const char*)' declared with attribute 'warn_unused_result' [8;;https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-result-Wunused-result8;;]
1671 | (void)system ("xmessage -button ok -center \"Cannot connect to JACK.\nPlease start the JACK Server first.\" &");
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
strip -s x42/x42-tuna-collection
make[1]: Leaving directory '/build/x42-plugins-20200714/tuna.lv2'
make -C xfade.lv2
make[1]: Entering directory '/build/x42-plugins-20200714/xfade.lv2'
Version: 0.3.0 -> 0 3 0
LV2 Version: 768 0
sed "s/@LV2NAME@/xfade/;s/@LIB_EXT@/.so/" \
manifest.ttl.in > build/manifest.ttl
sed "s/@VERSION@/lv2:microVersion 0 ;lv2:minorVersion 768 ;/g" \
xfade.ttl.in > build/xfade.ttl
gcc -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG -Wall -fPIC -fvisibility=hidden -std=c99 `pkg-config --cflags lv2` \
-o build/xfade.so xfade.c \
-shared -Wl,-Bstatic -Wl,-Bdynamic -lm
strip -s build/xfade.so
make[1]: Leaving directory '/build/x42-plugins-20200714/xfade.lv2'
@nix { "action": "setPhase", "phase": "glibPreInstallPhase" }
glibPreInstallPhase
@nix { "action": "setPhase", "phase": "installPhase" }
installing
install flags: SHELL=/nix/store/f7jzmxq9bpbxsg69cszx56mw14n115n5-bash-4.4-p23/bin/bash PREFIX=\$\(out\) FONTFILE=/nix/store/y1hybm8h1kln0hg06c42m4g1wsblc0ig-freefont-ttf-20120503/share/fonts/truetype/FreeSansBold.ttf gsettingsschemadir=/nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/gsettings-schemas/x42-plugins-20200714/glib-2.0/schemas/ install
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make: [Makefile:46: submodule_check] Error 1 (ignored)
make -C balance.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/balance.lv2'
Version: 0.6.7 -> 0 6 7
LV2 Version: 1550 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2
install -m755 build/balance.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2
install -m644 build/manifest.ttl build/balance.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2
install -m755 build/balanceUI.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/balance.lv2'
make -C controlfilter.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/controlfilter.lv2'
Version: 0.4.1 -> 0 4 1
LV2 Version: 1026 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/controlfilter.lv2
install -m755 build/controlfilter.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/controlfilter.lv2
install -m644 build/manifest.ttl build/controlfilter.ttl build/presets.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/controlfilter.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/controlfilter.lv2'
make -C darc.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/darc.lv2'
Version: 0.5.1 -> 0 5 1
LV2 Version: 1282 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:211: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2
install -m644 build/manifest.ttl build/darc.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2
install -m755 build/darc.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2
install -m755 build/darcUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-darc /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-darc.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/darc.lv2'
make -C dpl.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/dpl.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:210: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2
install -m644 build/manifest.ttl build/dpl.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2
install -m755 build/dpl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2
install -m755 build/dplUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-dpl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-dpl.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/dpl.lv2'
make -C convoLV2 install
make[1]: Entering directory '/build/x42-plugins-20200714/convoLV2'
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/convo.lv2
install -m755 build/convoLV2.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/convo.lv2
install -m644 build/manifest.ttl build/convoLV2.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/convo.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/convoLV2'
make -C fat1.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/fat1.lv2'
Version: 0.6.2 -> 0 6 2
LV2 Version: 1540 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:217: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2
install -m644 build/manifest.ttl build/fat1.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2
install -m755 build/fat1.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2
install -m755 build/fat1UI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-fat1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-fat1.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/fat1.lv2'
make -C fil4.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/fil4.lv2'
Version: 0.7.1 -> 0 7 1
LV2 Version: 1794 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:229: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2
install -m644 build/manifest.ttl build/fil4.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2
install -m755 build/fil4.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2
install -m755 build/fil4UI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-fil4 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-fil4.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/fil4.lv2'
make -C matrixmixer.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/matrixmixer.lv2'
Version: 0.3.0 -> 0 3 0
LV2 Version: 768 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:208: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2
install -m644 build/manifest.ttl build/matrixmixer.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2
install -m755 build/matrixmixer.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2
install -m755 build/matrixmixerUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-matrixmixer8x8 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-matrixmixer.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/matrixmixer.lv2'
make -C meters.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/meters.lv2'
Version: 0.9.15 -> 0 9 15
LV2 Version: 2334 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:253: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/meters.lv2
install -m755 build/manifest.ttl build/meters.ttl build/meters.so build/meters_glui.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/meters.lv2
install -m644 build/manifest.ttl build/meters.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/meters.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -T -m755 x42/x42-meter-collection /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-meter
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 doc/x42-meter.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1/
make[1]: Leaving directory '/build/x42-plugins-20200714/meters.lv2'
make -C mididebug.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/mididebug.lv2'
Version: 0.3.1 -> 0 3 1
LV2 Version: 770 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mididebug.lv2
install -m755 build/mididebug.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mididebug.lv2
install -m644 build/manifest.ttl build/mididebug.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mididebug.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/mididebug.lv2'
make -C midifilter.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/midifilter.lv2'
Version: 0.6.4 -> 0 6 4
LV2 Version: 1544 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midifilter.lv2
install -m755 build/midifilter.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midifilter.lv2
install -m644 build/manifest.ttl build/midifilter.ttl build/presets.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midifilter.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/midifilter.lv2'
make -C midigen.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/midigen.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midigen.lv2
install -m755 build/midigen.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midigen.lv2
install -m644 build/manifest.ttl build/midigen.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midigen.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/midigen.lv2'
make -C midimap.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/midimap.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midimap.lv2
install -m755 build/midimap.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midimap.lv2
install -m644 build/manifest.ttl build/midimap.ttl build/presets.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midimap.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/midimap.lv2'
make -C mixtri.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/mixtri.lv2'
Version: 0.4.0 -> 0 4 0
LV2 Version: 1024 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:184: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2
install -m644 build/manifest.ttl build/mixtri.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2
install -m755 build/mixtri.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2
install -m755 build/mixtriUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-mixtri /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-mixtri.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/mixtri.lv2'
make -C nodelay.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/nodelay.lv2'
Version: 0.5.1 -> 0 5 1
LV2 Version: 1282 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/nodelay.lv2
install -m755 build/nodelay.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/nodelay.lv2
install -m644 build/manifest.ttl build/nodelay.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/nodelay.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/nodelay.lv2'
make -C onsettrigger.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/onsettrigger.lv2'
Version: 0.4.1 -> 0 4 1
LV2 Version: 1026 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/onsettrigger.lv2
install -m755 build/onsettrigger.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/onsettrigger.lv2
install -m644 build/manifest.ttl build/onsettrigger.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/onsettrigger.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/onsettrigger.lv2'
make -C sisco.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/sisco.lv2'
Version: 0.9.0 -> 0 9 0
LV2 Version: 2304 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:198: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2
install -m644 build/manifest.ttl build/sisco.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2
install -m755 build/sisco.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2
install -m755 build/siscoUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-scope.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 build/x42-scope /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/
make[1]: Leaving directory '/build/x42-plugins-20200714/sisco.lv2'
make -C spectra.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/spectra.lv2'
Version: 0.5.0 -> 0 5 0
LV2 Version: 1280 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:199: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2
install -m644 build/manifest.ttl build/spectra.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2
install -m755 build/spectra.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2
install -m755 build/spectraUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-spectr /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-spectr.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/spectra.lv2'
make -C stepseq.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/stepseq.lv2'
Version: 0.6.1 -> 0 6 1
LV2 Version: 1538 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:220: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2
install -m644 build/manifest.ttl build/stepseq.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2
install -m755 build/stepseq.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2
install -m755 build/stepseqUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -m755 x42/x42-stepseq /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-stepseq.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/stepseq.lv2'
make -C stereoroute.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/stereoroute.lv2'
Version: 0.2.1 -> 0 2 1
LV2 Version: 514 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stereoroute.lv2
install -m755 build/stereoroute.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stereoroute.lv2
install -m644 build/manifest.ttl build/stereoroute.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stereoroute.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/stereoroute.lv2'
make -C testsignal.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/testsignal.lv2'
Version: 0.5.3 -> 0 5 3
LV2 Version: 1286 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/testsignal.lv2
install -m755 build/testsignal.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/testsignal.lv2
install -m644 build/manifest.ttl build/testsignal.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/testsignal.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/testsignal.lv2'
make -C tuna.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/tuna.lv2'
Version: 0.5.2 -> 0 5 2
LV2 Version: 1284 0
test -d .git -a .gitmodules -a -f Makefile.git && make -f Makefile.git submodule_check
make[1]: [Makefile:228: submodule_check] Error 1 (ignored)
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2
install -m644 build/manifest.ttl build/tuna.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2
install -m755 build/tuna.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2
install -m755 build/tunaUI_gl.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
install -T -m755 x42/x42-tuna-collection /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-tuna
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
install -m644 x42-tuna.1 /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/man1
make[1]: Leaving directory '/build/x42-plugins-20200714/tuna.lv2'
make -C xfade.lv2 install
make[1]: Entering directory '/build/x42-plugins-20200714/xfade.lv2'
Version: 0.3.0 -> 0 3 0
LV2 Version: 768 0
install -d /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/xfade.lv2
install -m755 build/xfade.so /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/xfade.lv2
install -m644 build/manifest.ttl build/xfade.ttl /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/xfade.lv2
make[1]: Leaving directory '/build/x42-plugins-20200714/xfade.lv2'
@nix { "action": "setPhase", "phase": "dropIconThemeCache" }
dropIconThemeCache
@nix { "action": "setPhase", "phase": "glibPreFixupPhase" }
glibPreFixupPhase
@nix { "action": "setPhase", "phase": "fixupPhase" }
post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-matrixmixer8x8
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-fil4
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-darc
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-tuna
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-spectr
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-meter
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-mixtri
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-fat1
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-scope
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-dpl
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin/x42-stepseq
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midigen.lv2/midigen.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/meters.lv2/meters.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/meters.lv2/meters_glui.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/testsignal.lv2/testsignal.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2/dpl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/dpl.lv2/dplUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2/tunaUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/tuna.lv2/tuna.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mididebug.lv2/mididebug.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midimap.lv2/midimap.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2/fat1.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fat1.lv2/fat1UI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2/mixtri.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/mixtri.lv2/mixtriUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/nodelay.lv2/nodelay.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2/fil4.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/fil4.lv2/fil4UI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/midifilter.lv2/midifilter.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/xfade.lv2/xfade.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/convo.lv2/convoLV2.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2/spectraUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/spectra.lv2/spectra.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/onsettrigger.lv2/onsettrigger.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2/matrixmixer.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/matrixmixer.lv2/matrixmixerUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2/darcUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/darc.lv2/darc.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2/balance.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/balance.lv2/balanceUI.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2/stepseq.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stepseq_s8n8.lv2/stepseqUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/stereoroute.lv2/stereoroute.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2/sisco.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/sisco.lv2/siscoUI_gl.so
shrinking /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib/lv2/controlfilter.lv2/controlfilter.so
gzipping man pages under /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/share/man/
strip is /nix/store/cp1sa3xxvl71cypiinw2c62i5s33chlr-binutils-2.35.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/lib /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714/bin
patching script interpreter paths in /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714
checking for references to /build/ in /nix/store/4p33can0q5vvc9h7291bikh40vyfrkf7-x42-plugins-20200714...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment