mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
28 lines
715 B
Makefile
28 lines
715 B
Makefile
# ignore-cross-compile
|
|
# needs-unwind
|
|
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) debug.rs -C debug-assertions=no
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -C opt-level=0
|
|
$(call RUN,debug) bad
|
|
$(RUSTC) debug.rs -C opt-level=1
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -C opt-level=2
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -C opt-level=3
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -C opt-level=s
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -C opt-level=z
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs -O
|
|
$(call RUN,debug) good
|
|
$(RUSTC) debug.rs
|
|
$(call RUN,debug) bad
|
|
$(RUSTC) debug.rs -C debug-assertions=yes -O
|
|
$(call RUN,debug) bad
|
|
$(RUSTC) debug.rs -C debug-assertions=yes -C opt-level=1
|
|
$(call RUN,debug) bad
|