Date: Thu, 21 Feb 2019 19:03:17 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493523 - head/lang/rust Message-ID: <201902211903.x1LJ3HWf099917@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Thu Feb 21 19:03:17 2019 New Revision: 493523 URL: https://svnweb.freebsd.org/changeset/ports/493523 Log: lang/rust: Ignore with qemu-user-static and on aarch64 without fixed ld-elf.so.1 - Rust will not run without a fixed ld-elf.so.1 on aarch64 - Builds with qemu-user-static currently hang after a while PR: 221185 Submitted by: Mikaƫl Urankar <mikael.urankar@gmail.com> Modified: head/lang/rust/Makefile Modified: head/lang/rust/Makefile ============================================================================== --- head/lang/rust/Makefile Thu Feb 21 18:34:08 2019 (r493522) +++ head/lang/rust/Makefile Thu Feb 21 19:03:17 2019 (r493523) @@ -102,6 +102,16 @@ BUILD_DEPENDS+= gcc8:lang/gcc8 USE_GCC= yes .endif +.if ${OPSYS} == FreeBSD && ${ARCH} == aarch64 && \ + (${OSVERSION} < 1200502 || \ + (${OSVERSION} > 1300000 && ${OSVERSION} < 1300006)) +IGNORE= fails to run due to a bug in rtld, update to 12-STABLE r342847 or 13-CURRENT r342113 +.endif + +.ifdef QEMU_EMULATING +IGNORE= fails to build with qemu-user-static +.endif + X_PY_ENV= HOME="${WRKDIR}" \ LIBGIT2_SYS_USE_PKG_CONFIG=1 \ LIBSSH2_SYS_USE_PKG_CONFIG=1 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902211903.x1LJ3HWf099917>