Skip to content

Commit a16dca3

Browse files
committed
Auto merge of #65251 - tlively:emscripten-upstream-upgrade, r=tlively
Upgrade Emscripten targets to use upstream LLVM backend - Compatible with Emscripten 1.38.46-upstream or later upstream. - Refactors the Emscripten target spec to share code with other wasm targets. - Replaces the old incorrect wasm32 C call ABI with the correct one, preserving the old one as wasm32_bindgen_compat for wasm-bindgen compatibility. - Updates the varargs ABI used by Emscripten and deletes the old one. - Removes the obsolete wasm32-experimental-emscripten target. - Uses EMCC_CFLAGS on CI to avoid the timeout problems with #63649. r? @alexcrichton
2 parents 7e49800 + c0aa7cb commit a16dca3

File tree

148 files changed

+438
-603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+438
-603
lines changed

config.toml.example

+1
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@
377377
# but you can also optionally enable the "emscripten" backend for asm.js or
378378
# make this an empty array (but that probably won't get too far in the
379379
# bootstrap)
380+
# FIXME: remove the obsolete emscripten backend option.
380381
#codegen-backends = ["llvm"]
381382

382383
# This is the name of the directory in which codegen backends will get installed

src/bootstrap/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,7 @@ impl<'a> Builder<'a> {
980980
Some("-Wl,-rpath,@loader_path/../lib")
981981
} else if !target.contains("windows") &&
982982
!target.contains("wasm32") &&
983+
!target.contains("emscripten") &&
983984
!target.contains("fuchsia") {
984985
Some("-Wl,-rpath,$ORIGIN/../lib")
985986
} else {

src/bootstrap/test.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1047,10 +1047,11 @@ impl Step for Compiletest {
10471047
// Also provide `rust_test_helpers` for the host.
10481048
builder.ensure(native::TestHelpers { target: compiler.host });
10491049

1050-
// wasm32 can't build the test helpers
1051-
if !target.contains("wasm32") {
1050+
// As well as the target, except for plain wasm32, which can't build it
1051+
if !target.contains("wasm32") || target.contains("emscripten") {
10521052
builder.ensure(native::TestHelpers { target });
10531053
}
1054+
10541055
builder.ensure(RemoteCopyLibs { compiler, target });
10551056

10561057
let mut cmd = builder.tool_cmd(Tool::Compiletest);

src/ci/azure-pipelines/auto.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ jobs:
124124
IMAGE: dist-x86_64-netbsd
125125
DEPLOY: 1
126126

127-
asmjs:
128-
IMAGE: asmjs
129127
i686-gnu:
130128
IMAGE: i686-gnu
131129
i686-gnu-nopt:
132130
IMAGE: i686-gnu-nopt
133131
test-various:
134132
IMAGE: test-various
133+
wasm32:
134+
IMAGE: wasm32
135135
x86_64-gnu:
136136
IMAGE: x86_64-gnu
137137
x86_64-gnu-full-bootstrap:

src/ci/docker/asmjs/Dockerfile

-47
This file was deleted.
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
FROM ubuntu:16.04
2+
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
g++ \
5+
make \
6+
file \
7+
curl \
8+
ca-certificates \
9+
python \
10+
git \
11+
cmake \
12+
sudo \
13+
gdb \
14+
xz-utils \
15+
bzip2
16+
17+
COPY scripts/emscripten.sh /scripts/
18+
RUN bash /scripts/emscripten.sh
19+
20+
COPY scripts/sccache.sh /scripts/
21+
RUN sh /scripts/sccache.sh
22+
23+
ENV PATH=$PATH:/emsdk-portable
24+
ENV PATH=$PATH:/emsdk-portable/upstream/emscripten/
25+
ENV PATH=$PATH:/emsdk-portable/node/12.9.1_64bit/bin/
26+
ENV BINARYEN_ROOT=/emsdk-portable/upstream/
27+
28+
ENV TARGETS=asmjs-unknown-emscripten
29+
30+
# Use -O1 optimizations in the link step to reduce time spent optimizing JS.
31+
ENV EMCC_CFLAGS=-O1
32+
33+
# Emscripten installation is user-specific
34+
ENV NO_CHANGE_USER=1
35+
36+
ENV SCRIPT python2.7 ../x.py test --target $TARGETS
37+
38+
# This is almost identical to the wasm32-unknown-emscripten target, so
39+
# running with assertions again is not useful
40+
ENV NO_DEBUG_ASSERTIONS=1
41+
ENV NO_LLVM_ASSERTIONS=1

src/ci/docker/disabled/wasm32-exp/Dockerfile

-35
This file was deleted.

src/ci/docker/disabled/wasm32-exp/node.sh

-9
This file was deleted.

src/ci/docker/disabled/wasm32/Dockerfile

-32
This file was deleted.

src/ci/docker/scripts/emscripten-wasm.sh

-37
This file was deleted.

src/ci/docker/scripts/emscripten.sh

+3-18
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,7 @@ exit 1
1717
set -x
1818
}
1919

20-
cd /
21-
curl -fL https://mozilla-games.s3.amazonaws.com/emscripten/releases/emsdk-portable.tar.gz | \
22-
tar -xz
23-
20+
git clone https://github.com/emscripten-core/emsdk.git /emsdk-portable
2421
cd /emsdk-portable
25-
./emsdk update
26-
hide_output ./emsdk install sdk-1.38.15-64bit
27-
./emsdk activate sdk-1.38.15-64bit
28-
29-
# Compile and cache libc
30-
source ./emsdk_env.sh
31-
echo "main(){}" > a.c
32-
HOME=/emsdk-portable/ emcc a.c
33-
HOME=/emsdk-portable/ emcc -s BINARYEN=1 a.c
34-
rm -f a.*
35-
36-
# Make emsdk usable by any user
37-
cp /root/.emscripten /emsdk-portable
38-
chmod a+rxw -R /emsdk-portable
22+
hide_output ./emsdk install 1.38.46-upstream
23+
./emsdk activate 1.38.46-upstream

src/ci/docker/wasm32/Dockerfile

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
FROM ubuntu:16.04
2+
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
g++ \
5+
make \
6+
file \
7+
curl \
8+
ca-certificates \
9+
python \
10+
git \
11+
cmake \
12+
sudo \
13+
gdb \
14+
xz-utils \
15+
bzip2
16+
17+
COPY scripts/emscripten.sh /scripts/
18+
RUN bash /scripts/emscripten.sh
19+
20+
COPY scripts/sccache.sh /scripts/
21+
RUN sh /scripts/sccache.sh
22+
23+
ENV PATH=$PATH:/emsdk-portable
24+
ENV PATH=$PATH:/emsdk-portable/upstream/emscripten/
25+
ENV PATH=$PATH:/emsdk-portable/node/12.9.1_64bit/bin/
26+
ENV BINARYEN_ROOT=/emsdk-portable/upstream/
27+
28+
ENV TARGETS=wasm32-unknown-emscripten
29+
30+
# Use -O1 optimizations in the link step to reduce time spent optimizing.
31+
ENV EMCC_CFLAGS=-O1
32+
33+
# Emscripten installation is user-specific
34+
ENV NO_CHANGE_USER=1
35+
36+
# FIXME: Re-enable these tests once https://github.com/rust-lang/cargo/pull/7476
37+
# is picked up by CI
38+
ENV SCRIPT python2.7 ../x.py test --target $TARGETS \
39+
--exclude src/libcore \
40+
--exclude src/liballoc \
41+
--exclude src/libproc_macro \
42+
--exclude src/libstd \
43+
--exclude src/libterm \
44+
--exclude src/libtest

src/liballoc/tests/binary_heap.rs

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
use std::cmp;
21
use std::collections::BinaryHeap;
32
use std::collections::binary_heap::{Drain, PeekMut};
4-
use std::panic::{self, AssertUnwindSafe};
5-
use std::sync::atomic::{AtomicUsize, Ordering};
6-
7-
use rand::{thread_rng, seq::SliceRandom};
83

94
#[test]
105
fn test_iterator() {
@@ -281,9 +276,15 @@ fn assert_covariance() {
281276
// even if the order may not be correct.
282277
//
283278
// Destructors must be called exactly once per element.
279+
// FIXME: re-enable emscripten once it can unwind again
284280
#[test]
285-
#[cfg(not(miri))] // Miri does not support catching panics
281+
#[cfg(not(any(miri, target_os = "emscripten")))] // Miri does not support catching panics
286282
fn panic_safe() {
283+
use std::cmp;
284+
use std::panic::{self, AssertUnwindSafe};
285+
use std::sync::atomic::{AtomicUsize, Ordering};
286+
use rand::{thread_rng, seq::SliceRandom};
287+
287288
static DROP_COUNTER: AtomicUsize = AtomicUsize::new(0);
288289

289290
#[derive(Eq, PartialEq, Ord, Clone, Debug)]

src/liballoc/tests/str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ mod slice_index {
483483
}
484484

485485
#[test]
486-
#[cfg(not(target_arch = "asmjs"))] // hits an OOM
486+
#[cfg(not(target_os = "emscripten"))] // hits an OOM
487487
#[cfg(not(miri))] // Miri is too slow
488488
fn simple_big() {
489489
fn a_million_letter_x() -> String {

src/liballoc/tests/vec.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -944,8 +944,10 @@ fn drain_filter_complex() {
944944
}
945945
}
946946

947+
// Miri does not support catching panics
948+
// FIXME: re-enable emscripten once it can unwind again
947949
#[test]
948-
#[cfg(not(miri))] // Miri does not support catching panics
950+
#[cfg(not(any(miri, target_os = "emscripten")))]
949951
fn drain_filter_consumed_panic() {
950952
use std::rc::Rc;
951953
use std::sync::Mutex;
@@ -995,8 +997,9 @@ fn drain_filter_consumed_panic() {
995997
}
996998
}
997999

1000+
// FIXME: Re-enable emscripten once it can catch panics
9981001
#[test]
999-
#[cfg(not(miri))] // Miri does not support catching panics
1002+
#[cfg(not(any(miri, target_os = "emscripten")))] // Miri does not support catching panics
10001003
fn drain_filter_unconsumed_panic() {
10011004
use std::rc::Rc;
10021005
use std::sync::Mutex;

0 commit comments

Comments
 (0)