blob: 7a0cbfcf517b7133664923a560be2dd6ba10a32a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-include ../tools.mk
ifeq ($(UNAME),Linux)
all:
$(RUSTC) foo.rs
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -o $(TMPDIR)/foo
$(call RUN,foo)
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -pie -fPIC -o $(TMPDIR)/foo
$(call RUN,foo)
else
all:
endif
|