mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
367 B
Makefile
13 lines
367 B
Makefile
include ../../run-make-fulldeps/tools.mk
|
|
|
|
# only-linux
|
|
# ignore-cross-compile
|
|
|
|
all: main.rs
|
|
$(RUSTC) --crate-type lib lib.rs
|
|
$(RUSTC) --crate-type cdylib -Clink-args="-Tlinker.ld" main.rs
|
|
# Ensure `#[used]` and `KEEP`-ed section is there
|
|
objdump -s -j".static" $(TMPDIR)/libmain.so
|
|
# Ensure `#[no_mangle]` symbol is there
|
|
nm $(TMPDIR)/libmain.so | $(CGREP) bar
|