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.

40 lines
890B

  1. #!/bin/bash
  2. set -e
  3. MAKE_FLAGS="-j 8 HAVE_FFMPEG=false HAVE_PULSEAUDIO=false EXTERNAL_PLUGINS=false"
  4. if [ ! -f Makefile ]; then
  5. cd ../..
  6. fi
  7. TARGETDIR=$HOME/builds
  8. export LINUX="true"
  9. export CC=gcc
  10. export CXX=g++
  11. unset CPPFLAGS
  12. ##############################################################################################
  13. # Complete 64bit build
  14. export CFLAGS="-m64"
  15. export CXXFLAGS=$CFLAGS
  16. export LDFLAGS="-m64"
  17. export PKG_CONFIG_PATH=$TARGETDIR/carla/lib/pkgconfig:$TARGETDIR/carla64/lib/pkgconfig
  18. make $MAKE_FLAGS
  19. ##############################################################################################
  20. # Build 32bit bridges
  21. export CFLAGS="-m32"
  22. export CXXFLAGS=$CFLAGS
  23. export LDFLAGS="-m32"
  24. export PKG_CONFIG_PATH=$TARGETDIR/carla32/lib/pkgconfig
  25. make posix32 $MAKE_FLAGS
  26. ##############################################################################################