mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
433da1fc04
They pass fine.
11 lines
266 B
Makefile
11 lines
266 B
Makefile
include ../tools.mk
|
|
|
|
# only-linux
|
|
|
|
all:
|
|
$(RUSTC) foo.rs
|
|
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -ldl -o $(TMPDIR)/foo
|
|
$(call RUN,foo)
|
|
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -ldl -pie -fPIC -o $(TMPDIR)/foo
|
|
$(call RUN,foo)
|