Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
542B

  1. #!/bin/bash
  2. set -e
  3. # Preparation
  4. export CC=gcc-9
  5. export CXX=g++-9
  6. export PKG_CONFIG_PATH=/opt/kxstudio/lib/pkgconfig:${PKG_CONFIG_PATH}
  7. unset CFLAGS
  8. unset CXXFLAGS
  9. unset LDFLAGS
  10. # Start clean
  11. make distclean >/dev/null
  12. # Print available features
  13. make USING_JUCE=false features
  14. # Build things that we skip strict tests for
  15. make USING_JUCE=false 3rd frontend
  16. make USING_JUCE=false -C source/modules/water posix32
  17. # Build native stuff
  18. make USING_JUCE=false TESTBUILD=true
  19. # Build 32bit bridges
  20. make USING_JUCE=false TESTBUILD=true posix32