2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2022-02-08 18:02:51 -06:00
|
|
|
|
|
|
|
# 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
|