2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2015-03-09 19:46:45 -05:00
|
|
|
|
2019-01-06 15:27:57 -06:00
|
|
|
# only-linux
|
|
|
|
# only-x86_64
|
|
|
|
#
|
2018-08-23 13:03:22 -05:00
|
|
|
# I *really* don't want to deal with a cross-platform way to compare file sizes,
|
|
|
|
# tests in `make` sort of are awful
|
2019-01-06 15:27:57 -06:00
|
|
|
|
2018-08-23 13:03:22 -05:00
|
|
|
all: $(TMPDIR)/out.log
|
|
|
|
# Make sure no warnings about "unknown CPU `native`" were emitted
|
|
|
|
if [ "$$(wc -c $(TMPDIR)/out.log | cut -d' ' -f 1)" = "0" ]; then \
|
|
|
|
echo no warnings generated; \
|
|
|
|
else \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
$(TMPDIR)/out.log:
|
|
|
|
$(RUSTC) foo.rs -C target-cpu=native 2>&1 | tee $(TMPDIR)/out.log
|
2015-03-09 19:46:45 -05:00
|
|
|
$(call RUN,foo)
|