mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-04 21:02:22 +00:00
11 lines
238 B
Makefile
11 lines
238 B
Makefile
include ../../run-make-fulldeps/tools.mk
|
|
|
|
ifeq ($(TARGET),wasm32-unknown-unknown)
|
|
all:
|
|
$(RUSTC) foo.rs -C lto -O --target wasm32-unknown-unknown
|
|
wc -c < $(TMPDIR)/foo.wasm
|
|
[ "`wc -c < $(TMPDIR)/foo.wasm`" -lt "25000" ]
|
|
else
|
|
all:
|
|
endif
|