2019-04-18 15:49:41 +02:00
|
|
|
# needs-profiler-support
|
|
|
|
|
2018-02-19 02:49:48 +01:00
|
|
|
-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
|
|
|
|
|
2018-02-19 02:49:48 +01:00
|
|
|
all:
|
2019-05-29 14:32:38 +02:00
|
|
|
$(RUSTC) $(COMPILE_FLAGS) test.rs
|
2018-02-19 02:49:48 +01:00
|
|
|
$(call RUN,test) || exit 1
|
2019-04-10 13:46:37 +02:00
|
|
|
[ -e "$(TMPDIR)"/default_*.profraw ] || (echo "No .profraw file"; exit 1)
|