Skip to content

Commit 568b722

Browse files
committed
Test using pattern established in run-make/wasm-stringify-ints-small.
Replicates problem on my machine. To exercise the test, I had to use a config.toml that has: ``` [build] target = ["x86_64-unknown-linux-gnu","wasm32-unknown-unknown"] nodejs = "node" [rust] lld = true ```
1 parent e919f0f commit 568b722

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
include ../../run-make-fulldeps/tools.mk
2+
3+
ifeq ($(TARGET),wasm32-unknown-unknown)
4+
all:
5+
$(RUSTC) foo.rs --crate-type cdylib --target $(TARGET) -C linker=clang
6+
else ifeq ($(TARGET),wasm64-unknown-unknown)
7+
all:
8+
$(RUSTC) foo.rs --crate-type cdylib --target $(TARGET) -C linker=clang
9+
else
10+
all:
11+
endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// empty file

0 commit comments

Comments
 (0)