summaryrefslogtreecommitdiff
path: root/lang/rust
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-12-26 10:04:51 +0000
committernia <nia@pkgsrc.org>2020-12-26 10:04:51 +0000
commitfb42511dc19fb4b9510c2ee5faac6ee6adc06846 (patch)
treec11630d109b5a7fe04eeca1b34f7cea4f8973822 /lang/rust
parent5ed46d1e458c67108004d2a94c4b9cc89288540b (diff)
downloadpkgsrc-fb42511dc19fb4b9510c2ee5faac6ee6adc06846.tar.gz
rust: likely doesn't work on softfloat ARM, explicitly specify earmv7hf
Diffstat (limited to 'lang/rust')
-rw-r--r--lang/rust/platform.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/rust/platform.mk b/lang/rust/platform.mk
index 750faeab9e3..b31742555c1 100644
--- a/lang/rust/platform.mk
+++ b/lang/rust/platform.mk
@@ -1,4 +1,4 @@
-# $NetBSD: platform.mk,v 1.5 2020/08/06 11:42:56 jperkin Exp $
+# $NetBSD: platform.mk,v 1.6 2020/12/26 10:04:51 nia Exp $
# This file encodes whether a given platform has support for rust.
@@ -8,7 +8,7 @@
.if !defined(PLATFORM_SUPPORTS_RUST)
# Rust needs NetBSD>7
-. for rust_arch in aarch64 armv7 i386 powerpc sparc64 x86_64
+. for rust_arch in aarch64 earmv7hf i386 powerpc sparc64 x86_64
. for rust_os in Darwin FreeBSD Linux NetBSD SunOS
# rust fails to build on NetBSD/earmv7
# http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=54621