mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
17 lines
232 B
Makefile
17 lines
232 B
Makefile
include ../tools.mk
|
|
|
|
ifeq ($(UNAME),Darwin)
|
|
FLAGS :=
|
|
else
|
|
ifdef IS_WINDOWS
|
|
FLAGS :=
|
|
else
|
|
FLAGS := -C link-args=-Wl,--no-undefined
|
|
endif
|
|
endif
|
|
|
|
all:
|
|
$(RUSTC) bar.rs
|
|
$(RUSTC) foo.rs $(FLAGS)
|
|
$(RUSTC) foo.rs $(FLAGS) -C panic=abort
|