Skip to content

Commit 11b7b39

Browse files
committed
Add comment regarding JSC and ICU versions
1 parent e511944 commit 11b7b39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fetch_sources.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#!/bin/bash
22

33
TARGET_DIR=target
4+
# This SVN revision number was determined by looking for the latest iOS release at https://trac.webkit.org/browser/webkit/releases/Apple
45
SVN_REV=216995
5-
66
mkdir -p $TARGET_DIR/webkit
77
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Source $TARGET_DIR/webkit/Source
88
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/Tools $TARGET_DIR/webkit/Tools
99
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/trunk/CMakeLists.txt $TARGET_DIR/webkit/CMakeLists.txt
1010

11-
11+
# As the trunk for $SVN_REV differs from releases dir I'm replacing JSC and WTF with versions from releases dir
1212
rm -rf $TARGET_DIR/webkit/Source/JavaScriptCore
1313
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/JavaScriptCore $TARGET_DIR/webkit/Source/JavaScriptCore
1414

1515
rm -rf $TARGET_DIR/webkit/Source/WTF
1616
svn export -r $SVN_REV https://svn.webkit.org/repository/webkit/releases/Apple/iOS%2010.3.2/WTF $TARGET_DIR/webkit/Source/WTF
1717

18-
1918
mkdir -p $TARGET_DIR/icu
19+
# This is for the latest release for the latest android from https://android.googlesource.com/platform/external/icu/
2020
curl https://android.googlesource.com/platform/external/icu/+archive/android-7.1.2_r11/icu4c.tar.gz | tar xzf - -C $TARGET_DIR/icu

0 commit comments

Comments
 (0)