openbsd-ports/lang/rust/patches/patch-src_test_run-make-fulldeps_relocation-model_Makefile
landry 89983c31ea Update to rust 1.26, from semarie@
Cf https://blog.rust-lang.org/2018/05/10/Rust-1.26.html

- add arm64 support, tested by phessler@
- respect MAKE_JOBS again
- use lld on i386 to support 128 bits integers
- cleanup old patches
- only build what we actually package
2018-05-22 06:04:33 +00:00

16 lines
453 B
Plaintext

$OpenBSD: patch-src_test_run-make-fulldeps_relocation-model_Makefile,v 1.1 2018/05/22 06:04:33 landry Exp $
Index: src/test/run-make-fulldeps/relocation-model/Makefile
--- src/test/run-make-fulldeps/relocation-model/Makefile.orig
+++ src/test/run-make-fulldeps/relocation-model/Makefile
@@ -1,5 +1,9 @@
-include ../tools.mk
+ifeq ($(UNAME),OpenBSD)
+skip:
+endif
+
all: others
$(RUSTC) -C relocation-model=dynamic-no-pic foo.rs
$(call RUN,foo)