Source: rev-plugins Version: 0.7.1-3 Tags: patch upstream User: [email protected] Usertags: rebootstrap
rev-plugins fails to cross build from source, because the upstream Makefile hard codes the build architecture compiler g++. After making it substitutable, rev-plugins cross builds successfully. Please consider applying the attached patch. Helmut
--- rev-plugins-0.7.1.orig/Makefile +++ rev-plugins-0.7.1/Makefile @@ -28,7 +28,7 @@ REVERBS_O = reverbs.o reverbs_if.o zreverb.o pareq.o zita-reverbs.so: $(REVERBS_O) - g++ -shared -o $@ $(REVERBS_O) $(LDFLAGS) + $(CXX) -shared -o $@ $(REVERBS_O) $(LDFLAGS) reverbs.o: ladspaplugin.h reverbs.h zreverb.h pareq.h reverbs_if.o: ladspaplugin.h reverbs.h zreverb.h pareq.h

