19 lines
466 B
Makefile
Raw Normal View History

# needs-profiler-support
-include ../tools.mk
2019-05-28 16:48:03 +02:00
COMPILE_FLAGS=-g -Cprofile-generate="$(TMPDIR)"
2019-05-29 14:32:38 +02:00
# LLVM doesn't yet support instrumenting binaries that use unwinding on MSVC:
# https://github.com/rust-lang/rust/issues/61002
#
# Things work fine with -Cpanic=abort though.
ifdef IS_MSVC
COMPILE_FLAGS+= -Cpanic=abort
endif
all:
2019-05-29 14:32:38 +02:00
$(RUSTC) $(COMPILE_FLAGS) test.rs
$(call RUN,test) || exit 1
[ -e "$(TMPDIR)"/default_*.profraw ] || (echo "No .profraw file"; exit 1)