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.

build-osx-64 387B

1234567891011121314151617
  1. #!/bin/sh
  2. # This script builds a 64-bit version of TigerVNC on OS/X 10.6 or later.
  3. # NASM 2.07 or later from MacPorts must be installed in /opt/local.
  4. set -e
  5. SCRIPTDIR=`dirname $0`
  6. pushd $SCRIPTDIR/..
  7. CFLAGS='-O3'
  8. CXXFLAGS=$CFLAGS
  9. export CFLAGS CXXFLAGS
  10. if [ ! -f ./configure ]; then
  11. autoreconf -fiv
  12. fi
  13. configure --host=x86_64-apple-darwin10.0.0 NASM=/opt/local/bin/nasm
  14. make
  15. popd