cc1242f96d
lang/llvm 4.0 is not compatible for this version of rust.
215 lines
6.9 KiB
Makefile
215 lines
6.9 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2017/06/18 09:21:56 ryoon Exp $
|
|
|
|
DISTNAME= rustc-1.16.0-src
|
|
PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//}
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://static.rust-lang.org/dist/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.rust-lang.org/
|
|
COMMENT= Safe, concurrent, practical language
|
|
LICENSE= mit OR apache-2.0
|
|
|
|
USE_GCC_RUNTIME= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= bash gmake
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
CONFIGURE_ARGS+= --build=${RUST_ARCH}
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
|
|
CONFIGURE_ARGS+= --release-channel=stable
|
|
CONFIGURE_ENV+= CFG_DISABLE_CODEGEN_TESTS=1
|
|
|
|
#
|
|
# Use the Makefile-based build system. Unfortunately this will be going away,
|
|
# likely in the next release, forcing us to use a cargo-based system which will
|
|
# require further binary bootstraps. Hold out as long as we can.
|
|
#
|
|
CONFIGURE_ARGS+= --disable-rustbuild
|
|
|
|
UNLIMIT_RESOURCES+= cputime
|
|
|
|
REPLACE_BASH+= src/rust-installer/gen-install-script.sh
|
|
REPLACE_BASH+= src/rust-installer/gen-installer.sh
|
|
|
|
#
|
|
# Lots of per-platform specific documentation, e.g. for each system call,
|
|
# making it difficult to PLIST. If it ends up being important we'll just have
|
|
# to go with lots of PLIST.${OPSYS}
|
|
#
|
|
CONFIGURE_ARGS+= --disable-docs
|
|
|
|
TEST_TARGET= check
|
|
|
|
# Required for LLVM (-std=c++11)
|
|
GCC_REQD+= 4.8
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
#
|
|
# Use jemalloc on systems where rust does by default too.
|
|
#
|
|
PLIST_VARS+= jemalloc
|
|
.if ${OPSYS} == "Linux" || ${OPSYS} == "Darwin"
|
|
. include "../../devel/jemalloc/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --jemalloc-root=${BUILDLINK_PREFIX.jemalloc}/lib
|
|
PLIST.jemalloc= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-jemalloc
|
|
.endif
|
|
|
|
#
|
|
# Under NetBSD, do not use DT_RUNPATH
|
|
#
|
|
BUILDLINK_TRANSFORM.NetBSD+= rm:-Wl,--enable-new-dtags
|
|
|
|
#
|
|
# Can't use pkgsrc llvm on SunOS at the moment due to a relocation error.
|
|
#
|
|
## llvm 4.0 breaks lang/rust build. Use internal llvm instead.
|
|
#.if ${OPSYS} != "SunOS"
|
|
#. include "../../lang/llvm/buildlink3.mk"
|
|
#CONFIGURE_ARGS+= --llvm-root=${BUILDLINK_PREFIX.llvm}
|
|
#.endif
|
|
|
|
#
|
|
# Rust unfortunately requires itself to build. On platforms which aren't
|
|
# supported by upstream (where they offer binary bootstraps), or where we do
|
|
# not trust random binaries from the Internet, we need to build and provide our
|
|
# own bootstrap. See the stage0-bootstrap below for more details.
|
|
#
|
|
CONFIGURE_ARGS+= --enable-local-rust
|
|
CONFIGURE_ARGS+= --local-rust-root=${WRKDIR}/rust-${RUST_STAGE0_VER}-${RUST_ARCH}/rustc
|
|
#
|
|
DISTFILES:= ${DEFAULT_DISTFILES}
|
|
RUST_STAGE0_VER= 1.15.1
|
|
#
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-*-i386) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH:= i686-apple-darwin
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH:= x86_64-apple-darwin
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
.if !empty(MACHINE_PLATFORM:MLinux-*-i386) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH:= i686-unknown-linux-gnu
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
.if !empty(MACHINE_PLATFORM:MLinux-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH:= x86_64-unknown-linux-gnu
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
.if !empty(MACHINE_PLATFORM:MSunOS-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH:= x86_64-sun-solaris
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
SITES.${RUST_STAGE0}= https://us-east.manta.joyent.com/pkgsrc/public/pkg-bootstraps/
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-x86_64) || make(distinfo) || make (makesum) || make(mdi)
|
|
RUST_ARCH= x86_64-unknown-netbsd
|
|
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
|
|
DISTFILES:= ${DISTFILES} ${RUST_STAGE0}
|
|
.endif
|
|
|
|
.if !defined(RUST_ARCH)
|
|
NOT_FOR_PLATFORM+= ${MACHINE_PLATFORM}
|
|
.endif
|
|
|
|
PLIST_SRC= PLIST
|
|
.if ${OPSYS} == "Darwin"
|
|
PLIST_SRC+= PLIST.lldb
|
|
.else
|
|
PLIST_SRC+= PLIST.gdb
|
|
.endif
|
|
|
|
OPSYSVARS+= SOEXT
|
|
SOEXT.Darwin= dylib
|
|
SOEXT.*= so
|
|
|
|
RUST_VERHASH= 63283ac5
|
|
PLIST_SUBST+= RUST_ARCH=${RUST_ARCH:Q}
|
|
PLIST_SUBST+= RUST_VERHASH=${RUST_VERHASH:Q}
|
|
PLIST_SUBST+= SOEXT=${SOEXT:Q}
|
|
PRINT_PLIST_AWK+= { gsub(/${RUST_ARCH}/, "$${RUST_ARCH}") }
|
|
PRINT_PLIST_AWK+= { gsub(/${RUST_VERHASH}/, "$${RUST_VERHASH}") }
|
|
PRINT_PLIST_AWK+= { gsub(/\.${SOEXT}/, ".$${SOEXT}") }
|
|
|
|
.if ${OPSYS} == "SunOS"
|
|
BUILD_DEPENDS+= grep>=0:../../textproc/grep
|
|
BUILD_DEPENDS+= coreutils>=0:../../sysutils/coreutils
|
|
TOOLS_PATH.grep= ${PREFIX}/bin/ggrep
|
|
TOOLS_CREATE+= md5sum
|
|
TOOLS_PATH.md5sum= ${PREFIX}/bin/gmd5sum
|
|
|
|
SUBST_CLASSES+= ranlib
|
|
SUBST_STAGE.ranlib= pre-configure
|
|
SUBST_FILES.ranlib= mk/rt.mk
|
|
SUBST_SED.ranlib= -e 's,RANLIB=.* \\,RANLIB="true" \\,g'
|
|
.endif
|
|
|
|
post-install:
|
|
${RM} -f ${DESTDIR}${PREFIX}/lib/rustlib/install.log
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
.PHONY: fix-darwin-install-name
|
|
post-install: fix-darwin-install-name
|
|
fix-darwin-install-name:
|
|
. for bin in rustc rustdoc
|
|
otool -XL ${DESTDIR}${PREFIX}/bin/${bin} \
|
|
| ${GREP} '@rpath' | while read rpath rest; do \
|
|
install_name_tool -change $$rpath \
|
|
`${ECHO} $$rpath | ${SED} -e 's,@rpath,${PREFIX}/lib,g'` \
|
|
${DESTDIR}${PREFIX}/bin/${bin}; \
|
|
done
|
|
. endfor
|
|
. for libdir in lib lib/rustlib/${RUST_ARCH}/lib
|
|
for f in ${DESTDIR}${PREFIX}/${libdir}/lib*.dylib; do \
|
|
[ ! -f $$f ] && continue; \
|
|
install_name_tool -id `${ECHO} $$f | ${SED} -e 's,${DESTDIR},,g'` $$f; \
|
|
otool -XL $$f | grep '@rpath' | while read rpath rest; do \
|
|
install_name_tool -change $$rpath \
|
|
`${ECHO} $$rpath | ${SED} -e 's,@rpath,${PREFIX}/${libdir},g'` \
|
|
$$f; \
|
|
done; \
|
|
done
|
|
. endfor
|
|
.endif
|
|
|
|
#
|
|
# Create a relocatable stage2 bootstrap from the bits we just built that can be
|
|
# used to build the next version of rust. Currently only tested on SmartOS.
|
|
#
|
|
BOOTSTRAP_TMPDIR= ${WRKDIR}/${PKGNAME}-${RUST_ARCH}/rustc
|
|
USE_TOOLS+= gtar
|
|
|
|
stage0-bootstrap: install
|
|
${MKDIR} ${BOOTSTRAP_TMPDIR}
|
|
${CP} -R ${DESTDIR}/${PREFIX}/bin ${BOOTSTRAP_TMPDIR}/
|
|
${CP} -R ${DESTDIR}/${PREFIX}/lib ${BOOTSTRAP_TMPDIR}/
|
|
.if ${OS_VARIANT} == "SmartOS"
|
|
for lib in libgcc_s.so.1 libssp.so.0 libstdc++.so.6; do \
|
|
${CP} `${PKG_CC} -print-file-name=$${lib}` \
|
|
${BOOTSTRAP_TMPDIR}/lib/; \
|
|
done
|
|
for f in ${BOOTSTRAP_TMPDIR}/bin/rust{c,doc}; do \
|
|
/usr/bin/elfedit -e 'dyn:runpath $$ORIGIN/../lib' $$f; \
|
|
done
|
|
for f in ${BOOTSTRAP_TMPDIR}/lib/*.so*; do \
|
|
/usr/bin/elfedit -e 'dyn:runpath $$ORIGIN' $$f; \
|
|
done
|
|
for f in ${BOOTSTRAP_TMPDIR}/lib/rustlib/${RUST_ARCH}/lib/*.so*; do \
|
|
/usr/bin/elfedit -e 'dyn:runpath $$ORIGIN:$$ORIGIN/../../..' $$f; \
|
|
done
|
|
.endif
|
|
(cd ${WRKDIR}; \
|
|
${GTAR} -zcf ${PKGNAME}-${RUST_ARCH}.tar.gz ${PKGNAME}-${RUST_ARCH})
|
|
|
|
.include "../../devel/cmake/buildlink3.mk"
|
|
.include "../../lang/python/tool.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|