new patchset
This commit is contained in:
@@ -1,222 +0,0 @@
|
||||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/fortran.eclass,v 1.21 2009/03/07 10:02:33 maekke Exp $
|
||||
#
|
||||
# Author: Danny van Dyk <kugelfang@gentoo.org>
|
||||
#
|
||||
|
||||
inherit eutils autotools
|
||||
|
||||
DESCRIPTION="Based on the ${ECLASS} eclass"
|
||||
|
||||
IUSE="debug"
|
||||
|
||||
#DEPEND="virtual/fortran" # Let's aim for this...
|
||||
|
||||
# Which Fortran Compiler has been selected ?
|
||||
export FORTRANC
|
||||
|
||||
# These are the options to ./configure / econf that enable the usage
|
||||
# of a specific Fortran Compiler. If your package uses a different
|
||||
# option that the one listed here, overwrite it in your ebuild.
|
||||
g77_CONF="--with-f77"
|
||||
f2c_CONF="--with-f2c"
|
||||
|
||||
# This function prints the necessary options for the currently selected
|
||||
# Fortran Compiler.
|
||||
fortran_conf() {
|
||||
echo $(eval echo \${$(echo -n ${FORTRANC})_CONF})
|
||||
}
|
||||
|
||||
# need_fortran(<profiles>):
|
||||
# profiles = <profile> ... <profile>
|
||||
#
|
||||
# profile:
|
||||
# * gfortran - GCC Fortran 95
|
||||
# * g77 - GCC Fortran 77
|
||||
# * f2c - Fortran 2 C Translator
|
||||
# * ifc - Intel Fortran Compiler
|
||||
# * f95 - Sun Studio Fortran Compiler
|
||||
#
|
||||
# Checks if at least one of <profiles> is installed.
|
||||
# Checks also if F77 (the fortran compiler to use) is available
|
||||
# on the System.
|
||||
need_fortran() {
|
||||
if [ -z "$*" ]; then
|
||||
eerror "Call need_fortran with at least one argument !"
|
||||
fi
|
||||
local AVAILABLE
|
||||
local PROFILE
|
||||
for PROFILE in $@; do
|
||||
case ${PROFILE} in
|
||||
gfortran)
|
||||
if [ -x "$(type -P gfortran 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} gfortran"
|
||||
fi
|
||||
;;
|
||||
g77)
|
||||
if [ -x "$(type -P g77 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} g77"
|
||||
fi
|
||||
;;
|
||||
f2c)
|
||||
if [ -x "$(type -P f2c 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} f2c"
|
||||
fi
|
||||
;;
|
||||
ifc)
|
||||
case ${ARCH} in
|
||||
x86|ia64|amd64)
|
||||
if [ -x "$(type -P ifort 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} ifort"
|
||||
elif [ -x "$(type -P ifc 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} ifc"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
f95)
|
||||
case ${ARCH} in
|
||||
x86|amd64)
|
||||
if [ -x "$(type -P f95 2> /dev/null)" ]; then
|
||||
AVAILABLE="${AVAILABLE} f95"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# add the ${CHOST} variants so that one may do FC=$(potageq envvar CHOST)-gfortran
|
||||
for A in ${AVAILABLE}; do
|
||||
AVAILABLE="${AVAILABLE} ${CHOST}-${A}"
|
||||
done
|
||||
|
||||
AVAILABLE="${AVAILABLE/^[[:space:]]}"
|
||||
use debug && echo ${AVAILABLE}
|
||||
if [ -z "${AVAILABLE}" ]; then
|
||||
eerror "None of the needed Fortran Compilers ($@) is installed."
|
||||
eerror "To install one of these, choose one of the following steps:"
|
||||
i=1
|
||||
for PROFILE in $@; do
|
||||
case ${PROFILE} in
|
||||
gfortran)
|
||||
eerror "[${i}] USE=\"fortran\" emerge =sys-devel/gcc-4*"
|
||||
;;
|
||||
g77)
|
||||
eerror "[${i}] USE=\"fortran\" emerge =sys-devel/gcc-3*"
|
||||
;;
|
||||
f2c)
|
||||
eerror "[${i}] emerge dev-lang/f2c"
|
||||
;;
|
||||
ifc)
|
||||
case ${ARCH} in
|
||||
x86|ia64)
|
||||
eerror "[${i}] emerge dev-lang/ifc"
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
f95)
|
||||
case ${ARCH} in
|
||||
x86|amd64)
|
||||
eerror "[${i}] emerge dev-lang/sunstudio"
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
i=$((i + 1))
|
||||
done
|
||||
die "Install a Fortran Compiler !"
|
||||
else
|
||||
einfo "You need one of these Fortran Compilers: $@"
|
||||
einfo "Installed are: ${AVAILABLE}"
|
||||
if [ -n "${F77}" -o -n "${FC}" -o -n "${F2C}" ]; then
|
||||
if [ -n "${F77}" ]; then
|
||||
FC="${F77}" # F77 overwrites FC
|
||||
fi
|
||||
if [ -n "${FC}" -a -n "${F2C}" ]; then
|
||||
ewarn "Using ${FC} and f2c is impossible. Disabling F2C !"
|
||||
F2C="" # Disabling f2c
|
||||
MY_FORTRAN="$(basename ${FC})" # set MY_FORTRAN to filename of
|
||||
# the Fortran Compiler
|
||||
else
|
||||
if [ -n "${F2C}" ]; then
|
||||
MY_FORTRAN="$(basename ${F2C})"
|
||||
elif [ -n "${FC}" ]; then
|
||||
MY_FORTRAN="$(basename ${FC})"
|
||||
else
|
||||
MY_FORTRAN="$(basename ${F77})"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# default to gfortran if available, g77 if not
|
||||
use debug && echo "MY_FORTRAN: \"${MY_FORTRAN}\""
|
||||
if hasq gfortran ${AVAILABLE}; then
|
||||
MY_FORTRAN=${MY_FORTRAN:=gfortran}
|
||||
elif hasq g77 ${AVAILABLE}; then
|
||||
MY_FORTRAN=${MY_FORTRAN:=g77}
|
||||
else
|
||||
# Default to the first valid Fortran compiler
|
||||
for i in ${AVAILABLE}; do
|
||||
MY_FORTRAN=$i
|
||||
break
|
||||
done
|
||||
fi
|
||||
use debug && echo "MY_FORTRAN: \"${MY_FORTRAN}\""
|
||||
|
||||
if ! hasq ${MY_FORTRAN} ${AVAILABLE}; then
|
||||
eerror "Current Fortran Compiler is set to ${MY_FORTRAN}, which is not usable with this package !"
|
||||
die "Wrong Fortran Compiler !"
|
||||
fi
|
||||
|
||||
case ${MY_FORTRAN/${CHOST}-} in
|
||||
gfortran|g77|ifc|ifort|f2c|f95)
|
||||
FORTRANC="${MY_FORTRAN}"
|
||||
esac
|
||||
fi
|
||||
use debug && echo "FORTRANC: \"${FORTRANC}\""
|
||||
}
|
||||
|
||||
# patch_fortran():
|
||||
# Apply necessary patches for ${FORTRANC}
|
||||
patch_fortran() {
|
||||
if [[ -z "${FORTRANC}" || ! -d "${FILESDIR}" ]]; then
|
||||
return
|
||||
fi
|
||||
local PATCHES=$(find ${FILESDIR} -name "${P}-${FORTRANC/${CHOST}-}-*")
|
||||
einfo "Applying patches for selected FORTRAN compiler: ${FORTRANC} (${FORTRANC/${CHOST}-})"
|
||||
local PATCH
|
||||
if [ -n "${PATCHES}" ]; then
|
||||
for PATCH in ${PATCHES}; do
|
||||
epatch ${PATCH}
|
||||
done
|
||||
eautoreconf
|
||||
fi
|
||||
}
|
||||
|
||||
# fortran_pkg_setup():
|
||||
# Set FORTRAN to indicate the list of Fortran Compiler that
|
||||
# can be used for the ebuild.
|
||||
# If not set in ebuild, FORTRAN will default to f77
|
||||
fortran_pkg_setup() {
|
||||
need_fortran ${FORTRAN:="gfortran g77"}
|
||||
}
|
||||
|
||||
# fortran_src_unpack():
|
||||
# Run patch_fortran if no new src_unpack() is defined.
|
||||
fortran_src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
patch_fortran
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS pkg_setup src_unpack
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,336 +0,0 @@
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
#
|
||||
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
|
||||
#
|
||||
# We install llvm into CTARGET-VERSION specific directories. This lets
|
||||
# us easily merge multiple versions for multiple targets (if we wish) and
|
||||
# then switch the versions on the fly (with `binutils-config`).
|
||||
#
|
||||
# llvm-9999 -> live svn
|
||||
# llvm-9999_preYYMMDD -> nightly snapshot date YYMMDD
|
||||
# llvm-# -> normal release
|
||||
|
||||
extra_eclass=""
|
||||
if [[ -n ${LLVM_TYPE} ]] ; then
|
||||
LTYPE=${LLVM_TYPE}
|
||||
else
|
||||
case ${PV} in
|
||||
9999) LTYPE="svn";;
|
||||
9999_pre*) LTYPE="pre";;
|
||||
*) LTYPE="rel";;
|
||||
esac
|
||||
fi
|
||||
|
||||
if [[ ${LTYPE} == "svn" ]] ; then
|
||||
extra_eclass="subversion"
|
||||
ESVN_REPO_URI="http://llvm.org/svn/llvm-project/llvm/trunk/llvm"
|
||||
LVER="svn"
|
||||
elif [[ ${LTYPE} == "pre" ]] ; then
|
||||
LVER=${PV/pre*}
|
||||
elif [[ ${LTYPE} == "rel" ]] ; then
|
||||
LVER=${PV}
|
||||
else
|
||||
LVER=${LLVM_VER}
|
||||
fi
|
||||
|
||||
inherit eutils libtool autotools flag-o-matic gnuconfig multilib ${extra_eclass}
|
||||
EXPORT_FUNCTIONS src_unpack src_compile src_test src_install pkg_postinst pkg_postrm
|
||||
|
||||
export CTARGET=${CTARGET:-${CHOST}}
|
||||
if [[ ${CTARGET} == ${CHOST} ]] ; then
|
||||
if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
|
||||
export CTARGET=${CATEGORY/cross-}
|
||||
fi
|
||||
fi
|
||||
is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
|
||||
|
||||
DESCRIPTION="Low Level Virtual Machine"
|
||||
HOMEPAGE="http://llvm.org/"
|
||||
|
||||
case ${LTYPE} in
|
||||
svn) SRC_URI="";;
|
||||
pre) SRC_URI="http://llvm.org/prereleases/${LVER}/llvm-${LVER}.tar.gz";;
|
||||
rel)
|
||||
SRC_URI="http://llvm.org/releases/${PV}/llvm-${PV}.tar.gz"
|
||||
esac
|
||||
add_src_uri() {
|
||||
[[ -z $2 ]] && return
|
||||
local a=$1
|
||||
set -- http://ftp.disconnected-by-peer.at/pub/
|
||||
SRC_URI="${SRC_URI} ${@/%//${a}}"
|
||||
}
|
||||
add_src_uri llvm-${PV}-patches-${PATCHVER}.tar.bz2 ${PATCHVER}
|
||||
add_src_uri llvm-${PV}-uclibc-patches-${UCLIBC_PATCHVER}.tar.bz2 ${UCLIBC_PATCHVER}
|
||||
|
||||
LICENSE="|| ( LLVM )"
|
||||
IUSE="multitarget multislot test vanilla"
|
||||
if use multislot ; then
|
||||
SLOT="${CTARGET}-${LVER}"
|
||||
elif is_cross ; then
|
||||
SLOT="${CTARGET}"
|
||||
else
|
||||
SLOT="0"
|
||||
fi
|
||||
|
||||
if is_cross ; then
|
||||
RDEPEND=">=sys-devel/binutils-config-1.9"
|
||||
else
|
||||
RDEPEND=">=sys-devel/binutils-config-1.8-r6"
|
||||
fi
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-util/dejagnu )
|
||||
nls? ( sys-devel/gettext )"
|
||||
|
||||
S=${WORKDIR}/llvm
|
||||
[[ ${LVER} != "svn" ]] && S=${S}-${LVER}
|
||||
|
||||
LIBPATH=/usr/$(get_libdir)/llvm/${CTARGET}/${LVER}
|
||||
INCPATH=${LIBPATH}/include
|
||||
DATAPATH=/usr/share/llvm-data/${CTARGET}/${LVER}
|
||||
MY_BUILDDIR=${WORKDIR}/build
|
||||
if is_cross ; then
|
||||
BINPATH=/usr/${CHOST}/${CTARGET}/binutils-bin/${LVER}
|
||||
else
|
||||
BINPATH=/usr/${CTARGET}/binutils-bin/${LVER}
|
||||
fi
|
||||
|
||||
tc-llvm_unpack() {
|
||||
unpack ${A}
|
||||
mkdir -p "${MY_BUILDDIR}"
|
||||
[[ -d ${WORKDIR}/patch ]] && mkdir "${WORKDIR}"/patch/skip
|
||||
}
|
||||
|
||||
tc-llvm_apply_patches() {
|
||||
cd "${S}"
|
||||
|
||||
if ! use vanilla ; then
|
||||
if [[ -n ${PATCHVER} ]] ; then
|
||||
EPATCH_SOURCE=${WORKDIR}/patch
|
||||
[[ -n $(ls "${EPATCH_SOURCE}"/*.bz2 2>/dev/null) ]] \
|
||||
&& EPATCH_SUFFIX="patch.bz2" \
|
||||
|| EPATCH_SUFFIX="patch"
|
||||
epatch
|
||||
fi
|
||||
local check base=${PORTAGE_CONFIGROOT}/etc/portage/patches
|
||||
for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do
|
||||
EPATCH_SOURCE=${base}/${CTARGET}/${check}
|
||||
[[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check}
|
||||
[[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check}
|
||||
if [[ -d ${EPATCH_SOURCE} ]] ; then
|
||||
EPATCH_SUFFIX="patch"
|
||||
EPATCH_FORCE="yes" \
|
||||
EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \
|
||||
epatch
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
# Run misc portage update scripts
|
||||
cd autoconf
|
||||
gnuconfig_update
|
||||
aclocal --force -I m4 || die "aclocal failed"
|
||||
autoconf --force --warnings=all -o ../configure configure.ac || die "autoconf failed"
|
||||
cd ..
|
||||
autoheader --warnings=all -I autoconf -I autoconf/m4 autoconf/configure.ac || die "autoheader failed"
|
||||
|
||||
rm -rf projects/sample
|
||||
|
||||
# cd projects/sample/autoconf
|
||||
# gnuconfig_update
|
||||
# aclocal -I ../../../autoconf/m4 || die "aclocal failed"
|
||||
# autoconf --warnings=all -o ../configure configure.ac || die "autoconf failed"
|
||||
# cd ../../..
|
||||
|
||||
}
|
||||
|
||||
toolchain-llvm_src_unpack() {
|
||||
is_cross && [[ $(binutils-config -V) != binutils-config-1.9* ]] \
|
||||
&& die "You need to upgrade your binutils-config to 1.9 or newer"
|
||||
|
||||
tc-llvm_unpack
|
||||
tc-llvm_apply_patches
|
||||
}
|
||||
|
||||
toolchain-llvm_src_compile() {
|
||||
# prevent makeinfo from running in releases. it may not always be
|
||||
# installed, and older llvm may fail with newer texinfo.
|
||||
# besides, we never patch the doc files anyways, so regenerating
|
||||
# in the first place is useless. #193364
|
||||
# find . '(' -name '*.info' -o -name '*.texi' ')' -print0 | xargs -0 touch -r .
|
||||
|
||||
# make sure we filter $LINGUAS so that only ones that
|
||||
# actually work make it through #42033
|
||||
# strip-linguas -u */po
|
||||
|
||||
# keep things sane
|
||||
strip-flags
|
||||
|
||||
local x
|
||||
echo
|
||||
for x in CATEGORY CBUILD CHOST CTARGET CFLAGS LDFLAGS ; do
|
||||
einfo "$(printf '%10s' ${x}:) ${!x}"
|
||||
done
|
||||
echo
|
||||
|
||||
cd "${MY_BUILDDIR}"
|
||||
local myconf=""
|
||||
# use nls \
|
||||
# && myconf="${myconf} --without-included-gettext" \
|
||||
# || myconf="${myconf} --disable-nls"
|
||||
use multitarget && myconf="${myconf} --enable-targets=all"
|
||||
[[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}"
|
||||
# is_cross && myconf="${myconf} --with-sysroot=/usr/${CTARGET}"
|
||||
myconf="--prefix=/usr \
|
||||
--sysconfdir=${LIBPATH}/llvm \
|
||||
--host=${CHOST} \
|
||||
--target=${CTARGET} \
|
||||
--datadir=${DATAPATH} \
|
||||
--infodir=${DATAPATH}/info \
|
||||
--mandir=${DATAPATH}/man \
|
||||
--docdir=${DATAPATH}/doc \
|
||||
--bindir=${BINPATH} \
|
||||
--libdir=${LIBPATH} \
|
||||
--libexecdir=${LIBPATH} \
|
||||
--includedir=${INCPATH} \
|
||||
--enable-assertions \
|
||||
--enable-shared \
|
||||
--enable-optimized \
|
||||
--enable-pic \
|
||||
${myconf} ${EXTRA_ECONF}"
|
||||
echo ./configure ${myconf}
|
||||
"${S}"/configure ${myconf} || die "configure failed"
|
||||
|
||||
emake all || die "emake failed"
|
||||
|
||||
# only build info pages if we user wants them, and if
|
||||
# we have makeinfo (may not exist when we bootstrap)
|
||||
# if ! has noinfo ${FEATURES} ; then
|
||||
# if type -p makeinfo > /dev/null ; then
|
||||
# make info || die "make info failed"
|
||||
# fi
|
||||
# fi
|
||||
# we nuke the manpages when we're left with junk
|
||||
# (like when we bootstrap, no perl -> no manpages)
|
||||
# find . -name '*.1' -a -size 0 | xargs rm -f
|
||||
|
||||
}
|
||||
|
||||
toolchain-llvm_src_test() {
|
||||
cd "${MY_BUILDDIR}"
|
||||
make check || die "check failed :("
|
||||
}
|
||||
|
||||
toolchain-llvm_src_install() {
|
||||
local x d
|
||||
|
||||
cd "${MY_BUILDDIR}"
|
||||
emake DESTDIR="${D}" install || die
|
||||
rm -rf "${D}"/${LIBPATH}/bin
|
||||
|
||||
# Newer versions of llvm get fancy with ${LIBPATH} #171905
|
||||
cd "${D}"/${LIBPATH}
|
||||
for d in ../* ; do
|
||||
[[ ${d} == ../${LVER} ]] && continue
|
||||
mv ${d}/* . || die
|
||||
rmdir ${d} || die
|
||||
done
|
||||
|
||||
# move llvm-config /usr/bin
|
||||
mkdir -p "${D}"/usr/bin
|
||||
mv "${D}"/${BINPATH}/llvm-config "${D}"/usr/bin
|
||||
|
||||
# create compatibility Links
|
||||
cd "${D}"/${BINPATH}
|
||||
for x in llvm-* ; do
|
||||
ln -sf ${x} ${x/llvm-/}
|
||||
done
|
||||
|
||||
# Now we collect everything intp the proper SLOT-ed dirs
|
||||
# When something is built to cross-compile, it installs into
|
||||
# /usr/$CHOST/ by default ... we have to 'fix' that :)
|
||||
if is_cross ; then
|
||||
cd "${D}"/${BINPATH}
|
||||
for x in * ; do
|
||||
mv ${x} ${x/${CTARGET}-}
|
||||
done
|
||||
|
||||
if [[ -d ${D}/usr/${CHOST}/${CTARGET} ]] ; then
|
||||
mv "${D}"/usr/${CHOST}/${CTARGET}/include "${D}"/${INCPATH}
|
||||
mv "${D}"/usr/${CHOST}/${CTARGET}/lib/* "${D}"/${LIBPATH}/
|
||||
rm -r "${D}"/usr/${CHOST}/{include,lib}
|
||||
fi
|
||||
fi
|
||||
insinto ${INCPATH}
|
||||
if [[ -d ${D}/${LIBPATH}/lib ]] ; then
|
||||
mv "${D}"/${LIBPATH}/lib/* "${D}"/${LIBPATH}/
|
||||
rm -r "${D}"/${LIBPATH}/lib
|
||||
fi
|
||||
|
||||
# Now, some llvm are tricky and actually provide
|
||||
# for multiple TARGETS. Really, we're talking just
|
||||
# 32bit/64bit support (like mips/ppc/sparc). Here
|
||||
# we want to tell binutils-config that it's cool if
|
||||
# it generates multiple sets of binutil symlinks.
|
||||
# e.g. sparc gets {sparc,sparc64}-unknown-linux-gnu
|
||||
local targ=${CTARGET/-*} src="" dst=""
|
||||
local FAKE_TARGETS=${CTARGET}
|
||||
case ${targ} in
|
||||
mips*) src="mips" dst="mips64";;
|
||||
powerpc*) src="powerpc" dst="powerpc64";;
|
||||
s390*) src="s390" dst="s390x";;
|
||||
sparc*) src="sparc" dst="sparc64";;
|
||||
esac
|
||||
case ${targ} in
|
||||
mips64*|powerpc64*|s390x*|sparc64*) targ=${src} src=${dst} dst=${targ};;
|
||||
esac
|
||||
[[ -n ${src}${dst} ]] && FAKE_TARGETS="${FAKE_TARGETS} ${CTARGET/${src}/${dst}}"
|
||||
|
||||
# Generate an env.d entry for this llvm
|
||||
cd "${S}"
|
||||
insinto /etc/env.d/binutils
|
||||
cat <<-EOF > env.d
|
||||
TARGET="${CTARGET}"
|
||||
VER="${LVER}"
|
||||
LIBPATH="${LIBPATH}"
|
||||
FAKE_TARGETS="${FAKE_TARGETS}"
|
||||
EOF
|
||||
newins env.d ${CTARGET}-${LVER}
|
||||
|
||||
# Punt all the fun stuff if user doesn't want it :)
|
||||
has noinfo ${FEATURES} && rm -r "${D}"/${DATAPATH}/info
|
||||
has noman ${FEATURES} && rm -r "${D}"/${DATAPATH}/man
|
||||
# Trim all empty dirs
|
||||
find "${D}" -type d | xargs rmdir >& /dev/null
|
||||
}
|
||||
|
||||
toolchain-llvm_pkg_postinst() {
|
||||
# Make sure this ${CTARGET} has a binutils version selected
|
||||
[[ -e ${ROOT}/etc/env.d/binutils/config-${CTARGET} ]] && return 0
|
||||
binutils-config ${CTARGET}-${LVER}
|
||||
}
|
||||
|
||||
toolchain-llvm_pkg_postrm() {
|
||||
local current_profile=$(binutils-config -c ${CTARGET})
|
||||
|
||||
# If no other versions exist, then uninstall for this
|
||||
# target ... otherwise, switch to the newest version
|
||||
# Note: only do this if this version is unmerged. We
|
||||
# rerun binutils-config if this is a remerge, as
|
||||
# we want the mtimes on the symlinks updated (if
|
||||
# it is the same as the current selected profile)
|
||||
if [[ ! -e ${BINPATH}/ld ]] && [[ ${current_profile} == ${CTARGET}-${LVER} ]] ; then
|
||||
local choice=$(binutils-config -l | grep ${CTARGET} | awk '{print $2}')
|
||||
choice=${choice//$'\n'/ }
|
||||
choice=${choice/* }
|
||||
if [[ -z ${choice} ]] ; then
|
||||
env -i binutils-config -u ${CTARGET}
|
||||
else
|
||||
binutils-config ${choice}
|
||||
fi
|
||||
elif [[ $(CHOST=${CTARGET} binutils-config -c) == ${CTARGET}-${LVER} ]] ; then
|
||||
binutils-config ${CTARGET}-${LVER}
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user