We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01222e6 commit eeeccd2Copy full SHA for eeeccd2
sources.wasm/libicu.sh
@@ -10,7 +10,7 @@ then
10
echo ok
11
else
12
wget -c https://github.com/unicode-org/icu/releases/download/release-75-1/icu4c-75_1-src.tgz
13
- tar xf icu4c-75_1-src.tgz
+ tar xfz icu4c-75_1-src.tgz
14
fi
15
16
if [ -f $PREFIX/lib/libicui18n.a ]
@@ -23,11 +23,19 @@ else
23
mkdir -p $ROOT/build/libicu
24
25
pushd $ROOT/build/libicu
26
- emconfigure ../../src/icu/source/configure --prefix=$PREFIX \
+ if emconfigure ../../src/icu/source/configure --prefix=$PREFIX \
27
--disable-shared --enable-static \
28
--disable-samples --disable-tests --disable-tools \
29
--disable-extras --disable-draft
30
- emmake make install
+ then
31
+ emmake make install
32
+ else
33
+ echo "
34
+
35
+ failed to build ICU
36
37
+"
38
+ exit 38
39
popd
40
41
0 commit comments