2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2015-04-15 01:26:42 -05:00
|
|
|
|
2019-01-06 15:27:57 -06:00
|
|
|
# only-linux
|
|
|
|
|
2015-04-15 01:26:42 -05:00
|
|
|
all:
|
|
|
|
$(RUSTC) foo.rs
|
2017-03-01 05:17:27 -06:00
|
|
|
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -ldl -o $(TMPDIR)/foo
|
2015-04-15 01:26:42 -05:00
|
|
|
$(call RUN,foo)
|
2017-03-01 05:17:27 -06:00
|
|
|
$(CC) foo.c -lfoo -L $(TMPDIR) -Wl,--gc-sections -lpthread -ldl -pie -fPIC -o $(TMPDIR)/foo
|
2015-04-15 01:26:42 -05:00
|
|
|
$(call RUN,foo)
|