Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# ignore-cross-compile
include ../tools.mk
all: noparam bool_true bool_false thin fat
noparam:
$(RUSTC) lib.rs
$(RUSTC) main.rs -C lto
$(call RUN,main)
bool_true:
$(RUSTC) main.rs -C lto=yes
bool_false:
$(RUSTC) main.rs -C lto=off
thin:
$(RUSTC) main.rs -C lto=thin
fat:
$(RUSTC) main.rs -C lto=fat