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.

44 lines
932B

  1. export VSVR_BASE_DIR=`pwd`
  2. # y=64 bit build
  3. # n=32 bit build
  4. export BUILD_64=y
  5. # y=cross compile for ARM target (untested in VSVR build)
  6. export BUILD_ARM=n
  7. # CPU architecture
  8. #CPU_ARCH=haswell
  9. CPU_ARCH=athlon-fx
  10. if [ "${USER}" = "bsp" ]; then
  11. CPU_ARCH=haswell
  12. fi
  13. if [ "${USER}" = "cameron" ]; then
  14. CPU_ARCH=haswell
  15. fi
  16. # Extra C compiler flags
  17. export EXTRA_CFLAGS=-march=${CPU_ARCH}
  18. #-DUSE_LOG_PRINTF
  19. # Extra C++ compiler flags
  20. export EXTRA_CPPFLAGS=-march=${CPU_ARCH}
  21. # Extra optimization flags (C/C++)
  22. export EXTRA_OPTFLAGS=
  23. # Extra linker flags
  24. export EXTRA_LDFLAGS=-march=${CPU_ARCH}
  25. # this must point to the directory which contains the 'aeffect.h' and 'aeffectx.h' files
  26. export VST2_SDK_DIR=/mnt/dev/vstsdk2.4/pluginterfaces/vst2.x/
  27. # n = build the plugin w/o 3rd party modules (only useful for debugging purposes)
  28. # y = statically link 3rd party modules
  29. #export RACK_STATIC_MODULES=y
  30. export RACK_STATIC_MODULES=n