Skip to content

Instantly share code, notes, and snippets.

@jpcima
Created November 30, 2019 15:20
Show Gist options
  • Save jpcima/3b84765341854fd31d26126ac123eb0d to your computer and use it in GitHub Desktop.
Save jpcima/3b84765341854fd31d26126ac123eb0d to your computer and use it in GitHub Desktop.
Build screamer
install -d tmp
faust -i modules/screamer.dsp -a jack-gtk.cpp -o tmp/screamer_jack.cpp
$(CXX) $(CXXFLAGS) -fPIC -o screamer_jack tmp/screamer_jack.cpp `pkg-config jack gtk+-2.0 --cflags --libs` $(LDFLAGS)
faust -i modules/screamer.dsp -a ladspa.cpp -o tmp/screamer_ladspa.cpp
$(CXX) $(CXXFLAGS) -fPIC -shared -Dmydsp=screamer -o screamer.so tmp/screamer_ladspa.cpp $(LDFLAGS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment