forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| set -e -v
 | |
| 
 | |
| # This script is for building GN.
 | |
| 
 | |
| WORKSPACE=$HOME/workspace
 | |
| UPLOAD_DIR=$HOME/artifacts
 | |
| COMPRESS_EXT=xz
 | |
| 
 | |
| CROSS_CCTOOLS_PATH=$WORKSPACE/build/src/cctools
 | |
| CROSS_SYSROOT=$WORKSPACE/build/src/MacOSX10.11.sdk
 | |
| 
 | |
| export LD_LIBRARY_PATH=$WORKSPACE/build/src/clang/lib
 | |
| export CC=$WORKSPACE/build/src/clang/bin/clang
 | |
| export CXX=$WORKSPACE/build/src/clang/bin/clang++
 | |
| export AR=$WORKSPACE/build/src/clang/bin/clang
 | |
| export CFLAGS="-target x86_64-apple-darwin11 -mlinker-version=137 -B ${CROSS_CCTOOLS_PATH}/bin -isysroot ${CROSS_SYSROOT} -I${CROSS_SYSROOT}/usr/include -iframework ${CROSS_SYSROOT}/System/Library/Frameworks"
 | |
| export CXXFLAGS="-stdlib=libc++ ${CFLAGS}"
 | |
| export LDFLAGS="${CXXFLAGS} -Wl,-syslibroot,${CROSS_SYSROOT} -Wl,-dead_strip"
 | |
| 
 | |
| # We patch tools/gn/bootstrap/bootstrap.py to detect this.
 | |
| export MAC_CROSS=1
 | |
| 
 | |
| # Gn build scripts use #!/usr/bin/env python, which will be python 2.6 on
 | |
| # the worker and cause failures. Work around this by putting python2.7
 | |
| # ahead of it in PATH.
 | |
| mkdir -p $WORKSPACE/python_bin
 | |
| ln -s /usr/bin/python2.7 $WORKSPACE/python_bin/python
 | |
| export PATH=$WORKSPACE/python_bin:$PATH
 | |
| 
 | |
| cd $WORKSPACE/build/src
 | |
| 
 | |
| . taskcluster/scripts/misc/tooltool-download.sh
 | |
| 
 | |
| # The ninja templates used to bootstrap gn have hard-coded references to
 | |
| # 'libtool', make sure we find the right one.
 | |
| ln -s $CROSS_CCTOOLS_PATH/bin/x86_64-apple-darwin11-libtool $CROSS_CCTOOLS_PATH/bin/libtool
 | |
| export PATH=$CROSS_CCTOOLS_PATH/bin:$PATH
 | |
| 
 | |
| . taskcluster/scripts/misc/build-gn-common.sh
 | 
