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.

mac-build-test.sh 404B

12345678910111213141516171819
  1. #!/bin/bash
  2. set -e
  3. export MACOS_OLD=true
  4. export CROSS_COMPILING=true
  5. _FLAGS="-mmacosx-version-min=10.6 -Wno-attributes -Wno-deprecated-declarations -Werror"
  6. export CFLAGS="${_FLAGS} -m32"
  7. export CXXFLAGS="${_FLAGS} -m32"
  8. export LDFLAGS="-m32"
  9. apple-cross-setup make -j4
  10. export CFLAGS="${_FLAGS} -m64"
  11. export CXXFLAGS="${_FLAGS} -m64"
  12. export LDFLAGS="-m64"
  13. # FIXME
  14. apple-cross-setup make posix64 -j4