mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 21:31:35 +00:00
12 lines
240 B
Makefile
12 lines
240 B
Makefile
include ../tools.mk
|
|
|
|
# ignore-wasm32
|
|
# ignore-wasm64
|
|
# ignore-none no-std is not supported
|
|
# only-linux
|
|
|
|
all:
|
|
$(RUSTC) -Zexport-executable-symbols main.rs --target $(TARGET) --crate-type=bin
|
|
nm $(TMPDIR)/main | $(CGREP) exported_symbol
|
|
|