]> git.lizzy.rs Git - rust.git/blob - tests/run-make/wasm-stringify-ints-small/Makefile
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / run-make / wasm-stringify-ints-small / Makefile
1 include ../../run-make-fulldeps/tools.mk
2
3 ifeq ($(TARGET),wasm32-unknown-unknown)
4 all:
5         $(RUSTC) foo.rs -C lto -O --target wasm32-unknown-unknown
6         wc -c < $(TMPDIR)/foo.wasm
7         [ "`wc -c < $(TMPDIR)/foo.wasm`" -lt "25000" ]
8 else
9 all:
10 endif