blob: 18328c1140a66279ff924cd894e3fc7515f187db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/bash -x
#
# This build script is similar to the one found in webkit.
# We've temporarily modified it to support conditional compiling of
# the V8 DerivedSources. When we build our DerivedSources, we build
# partly from our port directory, and partly from the webkit directory;
# chosing files from our port area only if they contain changes from
# the original.
#
XSRCROOT="$1"
# Do a little dance to get the path into 8.3 form to make it safe for gnu make
# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
XSRCROOT=`cygpath -m -s "$XSRCROOT"`
XSRCROOT=`cygpath -u "$XSRCROOT"`
export XSRCROOT
export SOURCE_ROOT="$XSRCROOT"
PORTROOT="$2"
PORTROOT=`cygpath -m -s "$PORTROOT"`
PORTROOT=`cygpath -u "$PORTROOT"`
export PORTROOT=`realpath "$PORTROOT"`
XDSTROOT="$3"
export XDSTROOT
# Do a little dance to get the path into 8.3 form to make it safe for gnu make
# http://bugzilla.opendarwin.org/show_bug.cgi?id=8173
XDSTROOT=`cygpath -m -s "$XDSTROOT"`
XDSTROOT=`cygpath -u "$XDSTROOT"`
export XDSTROOT
export BUILT_PRODUCTS_DIR="$4"
export CREATE_HASH_TABLE="$XSRCROOT/../JavaScriptCore/create_hash_table"
DerivedSourcesDir="${BUILT_PRODUCTS_DIR}\DerivedSources"
echo "$DerivedSourcesDir"
mkdir -p "$DerivedSourcesDir"
cd "$DerivedSourcesDir"
export WebCore="${XSRCROOT}"
export ENCODINGS_FILE="${WebCore}/platform/win/win-encodings.txt";
export ENCODINGS_PREFIX=""
# To see what FEATURE_DEFINES Apple uses, look at:
# webkit/third_party/WebCore/Configurations/WebCore.xcconfig
export FEATURE_DEFINES="ENABLE_SVG ENABLE_SVG_ANIMATION ENABLE_SVG_AS_IMAGE ENABLE_SVG_FONTS ENABLE_SVG_FOREIGN_OBJECT ENABLE_SVG_USE ENABLE_VIDEO ENABLE_WORKERS ENABLE_CHANNEL_MESSAGING ENABLE_XPATH ENABLE_XSLT"
# Adjust the number of jobs spawned according to the CPU count.
if [ -z "$NUMBER_OF_PROCESSORS" ]; then
echo "WARNING: NUMBER_OF_PROCESSORS environment variable not defined; assuming 2"
fi
JOBS=$((${NUMBER_OF_PROCESSORS:-2} + 1))
echo Building DerivedSources ${PORTROOT}...
# Use silent flag.
make -s -f "${PORTROOT}/DerivedSources.make" -j $JOBS || exit 1
|