mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-26 18:11:34 +00:00
11 lines
217 B
Makefile
11 lines
217 B
Makefile
include ../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
|