blob: ef646c5bf5d68bb1b3fe9437dda0a58740deff50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-include ../tools.mk
# FIXME: ignore freebsd
# This is a basic test of LLVM ExecutionEngine functionality using compiled
# Rust code built using the `rustc` crate.
ifneq ($(shell uname),FreeBSD)
all:
$(RUSTC) test.rs
$(call RUN,test $(RUSTC))
else
all:
endif
|