llvm
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@308 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
parent
e258fa5c19
commit
d10cc0e184
411
eclass/toolchain-funcs.eclass
Normal file
411
eclass/toolchain-funcs.eclass
Normal file
@ -0,0 +1,411 @@
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.74 2007/08/17 10:14:13 vapier Exp $
|
||||
|
||||
# @ECLASS: toolchain-funcs.eclass
|
||||
# @MAINTAINER:
|
||||
# Toolchain Ninjas <toolchain@gentoo.org>
|
||||
# @BLURB: functions to query common info about the toolchain
|
||||
# @DESCRIPTION:
|
||||
# The toolchain-funcs aims to provide a complete suite of functions
|
||||
# for gleaning useful information about the toolchain and to simplify
|
||||
# ugly things like cross-compiling and multilib. All of this is done
|
||||
# in such a way that you can rely on the function always returning
|
||||
# something sane.
|
||||
|
||||
___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes"
|
||||
[[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib
|
||||
|
||||
DESCRIPTION="Based on the ${ECLASS} eclass"
|
||||
|
||||
tc-getPROG() {
|
||||
local var=$1
|
||||
local prog=$2
|
||||
|
||||
if [[ -n ${!var} ]] ; then
|
||||
echo "${!var}"
|
||||
return 0
|
||||
fi
|
||||
|
||||
local search=
|
||||
[[ -n $3 ]] && search=$(type -p "$3-${prog}")
|
||||
[[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}")
|
||||
[[ -n ${search} ]] && prog=${search##*/}
|
||||
|
||||
export ${var}=${prog}
|
||||
echo "${!var}"
|
||||
}
|
||||
|
||||
# @FUNCTION: tc-getAR
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the archiver
|
||||
tc-getAR() { tc-getPROG AR ar "$@"; }
|
||||
# @FUNCTION: tc-getAS
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the assembler
|
||||
tc-getAS() { tc-getPROG AS as "$@"; }
|
||||
# @FUNCTION: tc-getCC
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the C compiler
|
||||
tc-getCC() { tc-getPROG CC gcc "$@"; }
|
||||
# @FUNCTION: tc-getCPP
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the C preprocessor
|
||||
tc-getCPP() { tc-getPROG CPP cpp "$@"; }
|
||||
# @FUNCTION: tc-getCXX
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the C++ compiler
|
||||
tc-getCXX() { tc-getPROG CXX g++ "$@"; }
|
||||
# @FUNCTION: tc-getLD
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the linker
|
||||
tc-getLD() { tc-getPROG LD ld "$@"; }
|
||||
# @FUNCTION: tc-getSTRIP
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the strip program
|
||||
tc-getSTRIP() { tc-getPROG STRIP strip "$@"; }
|
||||
# @FUNCTION: tc-getNM
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the symbol/object thingy
|
||||
tc-getNM() { tc-getPROG NM nm "$@"; }
|
||||
# @FUNCTION: tc-getRANLIB
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the archiver indexer
|
||||
tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; }
|
||||
# @FUNCTION: tc-getF77
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the Fortran 77 compiler
|
||||
tc-getF77() { tc-getPROG F77 f77 "$@"; }
|
||||
# @FUNCTION: tc-getF90
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the Fortran 90 compiler
|
||||
tc-getF90() { tc-getPROG F90 gfortran "$@"; }
|
||||
# @FUNCTION: tc-getFORTRAN
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the Fortran compiler
|
||||
tc-getFORTRAN() { tc-getPROG FORTRAN gfortran "$@"; }
|
||||
# @FUNCTION: tc-getGCJ
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the java compiler
|
||||
tc-getGCJ() { tc-getPROG GCJ gcj "$@"; }
|
||||
|
||||
# @FUNCTION: tc-getBUILD_CC
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the C compiler for building binaries to run on the build machine
|
||||
tc-getBUILD_CC() {
|
||||
local v
|
||||
for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do
|
||||
if [[ -n ${!v} ]] ; then
|
||||
export BUILD_CC=${!v}
|
||||
echo "${!v}"
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
|
||||
local search=
|
||||
if [[ -n ${CBUILD} ]] ; then
|
||||
search=$(type -p ${CBUILD}-gcc)
|
||||
search=${search##*/}
|
||||
fi
|
||||
search=${search:-gcc}
|
||||
|
||||
export BUILD_CC=${search}
|
||||
echo "${search}"
|
||||
}
|
||||
|
||||
# @FUNCTION: tc-export
|
||||
# @USAGE: <list of toolchain variables>
|
||||
# @DESCRIPTION:
|
||||
# Quick way to export a bunch of compiler vars at once.
|
||||
tc-export() {
|
||||
local var
|
||||
for var in "$@" ; do
|
||||
eval tc-get${var} > /dev/null
|
||||
done
|
||||
}
|
||||
|
||||
# @FUNCTION: tc-is-cross-compiler
|
||||
# @RETURN: Shell true if we are using a cross-compiler, shell false otherwise
|
||||
tc-is-cross-compiler() {
|
||||
return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]])
|
||||
}
|
||||
|
||||
# @FUNCTION: tc-is-softfloat
|
||||
# @DESCRIPTION:
|
||||
# See if this toolchain is a softfloat based one.
|
||||
# @CODE
|
||||
# The possible return values:
|
||||
# - only: the target is always softfloat (never had fpu)
|
||||
# - yes: the target should support softfloat
|
||||
# - no: the target should support hardfloat
|
||||
# @CODE
|
||||
# This allows us to react differently where packages accept
|
||||
# softfloat flags in the case where support is optional, but
|
||||
# rejects softfloat flags where the target always lacks an fpu.
|
||||
tc-is-softfloat() {
|
||||
case ${CTARGET} in
|
||||
bfin*|h8300*)
|
||||
echo "only" ;;
|
||||
*)
|
||||
[[ ${CTARGET//_/-} == *-softfloat-* ]] \
|
||||
&& echo "yes" \
|
||||
|| echo "no"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
# Parse information from CBUILD/CHOST/CTARGET rather than
|
||||
# use external variables from the profile.
|
||||
tc-ninja_magic_to_arch() {
|
||||
ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
|
||||
|
||||
local type=$1
|
||||
local host=$2
|
||||
[[ -z ${host} ]] && host=${CTARGET:-${CHOST}}
|
||||
|
||||
case ${host} in
|
||||
alpha*) echo alpha;;
|
||||
arm*) echo arm;;
|
||||
avr*) ninj avr32 avr;;
|
||||
bfin*) ninj blackfin bfin;;
|
||||
cris*) echo cris;;
|
||||
hppa*) ninj parisc hppa;;
|
||||
i?86*) ninj i386 x86;;
|
||||
ia64*) echo ia64;;
|
||||
m68*) echo m68k;;
|
||||
mips*) echo mips;;
|
||||
nios2*) echo nios2;;
|
||||
nios*) echo nios;;
|
||||
powerpc*)
|
||||
# Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees
|
||||
# have been unified into simply 'powerpc', but until 2.6.16,
|
||||
# ppc32 is still using ARCH="ppc" as default
|
||||
if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then
|
||||
echo powerpc
|
||||
elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then
|
||||
if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then
|
||||
echo powerpc
|
||||
else
|
||||
echo ppc
|
||||
fi
|
||||
elif [[ ${host} == powerpc64* ]] ; then
|
||||
echo ppc64
|
||||
elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then
|
||||
ninj ppc64 ppc
|
||||
else
|
||||
echo ppc
|
||||
fi
|
||||
;;
|
||||
s390*) echo s390;;
|
||||
sh64*) ninj sh64 sh;;
|
||||
sh*) echo sh;;
|
||||
sparc64*) ninj sparc64 sparc;;
|
||||
sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \
|
||||
&& ninj sparc64 sparc \
|
||||
|| echo sparc
|
||||
;;
|
||||
vax*) echo vax;;
|
||||
x86_64*) ninj x86_64 amd64;;
|
||||
|
||||
# since our usage of tc-arch is largely concerned with
|
||||
# normalizing inputs for testing ${CTARGET}, let's filter
|
||||
# other cross targets (mingw and such) into the unknown.
|
||||
*) echo unknown;;
|
||||
esac
|
||||
}
|
||||
# @FUNCTION: tc-arch-kernel
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the kernel arch according to the compiler target
|
||||
tc-arch-kernel() {
|
||||
tc-ninja_magic_to_arch kern "$@"
|
||||
}
|
||||
# @FUNCTION: tc-arch
|
||||
# @USAGE: [toolchain prefix]
|
||||
# @RETURN: name of the portage arch according to the compiler target
|
||||
tc-arch() {
|
||||
tc-ninja_magic_to_arch portage "$@"
|
||||
}
|
||||
|
||||
tc-endian() {
|
||||
local host=$1
|
||||
[[ -z ${host} ]] && host=${CTARGET:-${CHOST}}
|
||||
host=${host%%-*}
|
||||
|
||||
case ${host} in
|
||||
alpha*) echo big;;
|
||||
arm*b*) echo big;;
|
||||
arm*) echo little;;
|
||||
cris*) echo little;;
|
||||
hppa*) echo big;;
|
||||
i?86*) echo little;;
|
||||
ia64*) echo little;;
|
||||
m68*) echo big;;
|
||||
mips*l*) echo little;;
|
||||
mips*) echo big;;
|
||||
powerpc*) echo big;;
|
||||
s390*) echo big;;
|
||||
sh*b*) echo big;;
|
||||
sh*) echo little;;
|
||||
sparc*) echo big;;
|
||||
x86_64*) echo little;;
|
||||
*) echo wtf;;
|
||||
esac
|
||||
}
|
||||
|
||||
# @FUNCTION: gcc-fullversion
|
||||
# @RETURN: compiler version (major.minor.micro: [3.4.6])
|
||||
gcc-fullversion() {
|
||||
$(tc-getCC "$@") -dumpversion
|
||||
}
|
||||
# @FUNCTION: gcc-version
|
||||
# @RETURN: compiler version (major.minor: [3.4].6)
|
||||
gcc-version() {
|
||||
gcc-fullversion "$@" | cut -f1,2 -d.
|
||||
}
|
||||
# @FUNCTION: gcc-major-version
|
||||
# @RETURN: major compiler version (major: [3].4.6)
|
||||
gcc-major-version() {
|
||||
gcc-version "$@" | cut -f1 -d.
|
||||
}
|
||||
# @FUNCTION: gcc-minor-version
|
||||
# @RETURN: minor compiler version (minor: 3.[4].6)
|
||||
gcc-minor-version() {
|
||||
gcc-version "$@" | cut -f2 -d.
|
||||
}
|
||||
# @FUNCTION: gcc-micro-version
|
||||
# @RETURN: micro compiler version (micro: 3.4.[6])
|
||||
gcc-micro-version() {
|
||||
gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d-
|
||||
}
|
||||
|
||||
# Returns the installation directory - internal toolchain
|
||||
# function for use by _gcc-specs-exists (for flag-o-matic).
|
||||
_gcc-install-dir() {
|
||||
echo "$($(tc-getCC) -print-search-dirs 2> /dev/null |\
|
||||
awk '$1=="install:" {print $2}')"
|
||||
}
|
||||
# Returns true if the indicated specs file exists - internal toolchain
|
||||
# function for use by flag-o-matic.
|
||||
_gcc-specs-exists() {
|
||||
[[ -f $(_gcc-install-dir)/$1 ]]
|
||||
}
|
||||
|
||||
# Returns requested gcc specs directive unprocessed - for used by
|
||||
# gcc-specs-directive()
|
||||
# Note; later specs normally overwrite earlier ones; however if a later
|
||||
# spec starts with '+' then it appends.
|
||||
# gcc -dumpspecs is parsed first, followed by files listed by "gcc -v"
|
||||
# as "Reading <file>", in order. Strictly speaking, if there's a
|
||||
# $(gcc_install_dir)/specs, the built-in specs aren't read, however by
|
||||
# the same token anything from 'gcc -dumpspecs' is overridden by
|
||||
# the contents of $(gcc_install_dir)/specs so the result is the
|
||||
# same either way.
|
||||
_gcc-specs-directive_raw() {
|
||||
local cc=$(tc-getCC)
|
||||
local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}')
|
||||
${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \
|
||||
'BEGIN { pspec=""; spec=""; outside=1 }
|
||||
$1=="*"directive":" { pspec=spec; spec=""; outside=0; next }
|
||||
outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next }
|
||||
spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next }
|
||||
{ spec=spec $0 }
|
||||
END { print spec }'
|
||||
return 0
|
||||
}
|
||||
|
||||
# Return the requested gcc specs directive, with all included
|
||||
# specs expanded.
|
||||
# Note, it does not check for inclusion loops, which cause it
|
||||
# to never finish - but such loops are invalid for gcc and we're
|
||||
# assuming gcc is operational.
|
||||
gcc-specs-directive() {
|
||||
local directive subdname subdirective
|
||||
directive="$(_gcc-specs-directive_raw $1)"
|
||||
while [[ ${directive} == *%\(*\)* ]]; do
|
||||
subdname=${directive/*%\(}
|
||||
subdname=${subdname/\)*}
|
||||
subdirective="$(_gcc-specs-directive_raw ${subdname})"
|
||||
directive="${directive//\%(${subdname})/${subdirective}}"
|
||||
done
|
||||
echo "${directive}"
|
||||
return 0
|
||||
}
|
||||
|
||||
# Returns true if gcc sets relro
|
||||
gcc-specs-relro() {
|
||||
local directive
|
||||
directive=$(gcc-specs-directive link_command)
|
||||
return $([[ ${directive/\{!norelro:} != ${directive} ]])
|
||||
}
|
||||
# Returns true if gcc sets now
|
||||
gcc-specs-now() {
|
||||
local directive
|
||||
directive=$(gcc-specs-directive link_command)
|
||||
return $([[ ${directive/\{!nonow:} != ${directive} ]])
|
||||
}
|
||||
# Returns true if gcc builds PIEs
|
||||
gcc-specs-pie() {
|
||||
local directive
|
||||
directive=$(gcc-specs-directive cc1)
|
||||
return $([[ ${directive/\{!nopie:} != ${directive} ]])
|
||||
}
|
||||
# Returns true if gcc builds with the stack protector
|
||||
gcc-specs-ssp() {
|
||||
local directive
|
||||
directive=$(gcc-specs-directive cc1)
|
||||
return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]])
|
||||
}
|
||||
# Returns true if gcc upgrades fstack-protector to fstack-protector-all
|
||||
gcc-specs-ssp-to-all() {
|
||||
local directive
|
||||
directive=$(gcc-specs-directive cc1)
|
||||
return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]])
|
||||
}
|
||||
|
||||
|
||||
# @FUNCTION: gen_usr_ldscript
|
||||
# @USAGE: <list of libs to create linker scripts for>
|
||||
# @DESCRIPTION:
|
||||
# This function generate linker scripts in /usr/lib for dynamic
|
||||
# libs in /lib. This is to fix linking problems when you have
|
||||
# the .so in /lib, and the .a in /usr/lib. What happens is that
|
||||
# in some cases when linking dynamic, the .a in /usr/lib is used
|
||||
# instead of the .so in /lib due to gcc/libtool tweaking ld's
|
||||
# library search path. This causes many builds to fail.
|
||||
# See bug #4411 for more info.
|
||||
#
|
||||
# Note that you should in general use the unversioned name of
|
||||
# the library (libfoo.so), as ldconfig should usually update it
|
||||
# correctly to point to the latest version of the library present.
|
||||
gen_usr_ldscript() {
|
||||
local lib libdir=$(get_libdir) output_format=""
|
||||
# Just make sure it exists
|
||||
dodir /usr/${libdir}
|
||||
|
||||
# OUTPUT_FORMAT gives hints to the linker as to what binary format
|
||||
# is referenced ... makes multilib saner
|
||||
output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p')
|
||||
[[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )"
|
||||
|
||||
for lib in "$@" ; do
|
||||
if [[ ${USERLAND} == "Darwin" ]] ; then
|
||||
ewarn "Not creating fake dynamic library for $lib on Darwin;"
|
||||
ewarn "making a symlink instead."
|
||||
dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}"
|
||||
else
|
||||
cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT
|
||||
/* GNU ld script
|
||||
Since Gentoo has critical dynamic libraries
|
||||
in /lib, and the static versions in /usr/lib,
|
||||
we need to have a "fake" dynamic lib in /usr/lib,
|
||||
otherwise we run into linking problems.
|
||||
|
||||
See bug http://bugs.gentoo.org/4411 for more info.
|
||||
*/
|
||||
${output_format}
|
||||
GROUP ( /${libdir}/${lib} )
|
||||
END_LDSCRIPT
|
||||
fi
|
||||
fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}"
|
||||
done
|
||||
}
|
2385
eclass/toolchain-gcc.eclass
Normal file
2385
eclass/toolchain-gcc.eclass
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
9
sys-devel/llvm/Manifest
Normal file
9
sys-devel/llvm/Manifest
Normal file
@ -0,0 +1,9 @@
|
||||
DIST llvm-2.1-patches-1.0.tar.bz2 1573 RMD160 d96dc943b009841b9d83b409ea8680ac172693b7 SHA1 d223775c1a09d653a8d911e862d3b5eb78dd8e5e SHA256 3bee0bfe07291a3e133eb43fcd8e245c3c7605122d9b68ef8b09f071ff1f059f
|
||||
DIST llvm-2.1.tar.gz 5062241 RMD160 df28ee93be79b8d436deb7c0e1cff1c21e1328be SHA1 e57081e1bc7c2cb168859f534c08b579276c3398 SHA256 8cabd422f249ada736d864fc8a1f4d14aabefacb6f860c9beefbc53f93e0f96c
|
||||
EBUILD llvm-2.1.ebuild 176 RMD160 9f7b33bdedc3eca0ce04a61c5c82ef8b331aef6a SHA1 8c52175a0cf89471c3a9d27a118898b4d15ba90b SHA256 77abaacb58f0eab70168cf6636e0578ae078e80051739cbf606f0a3424d91acf
|
||||
MD5 df4cb1f76ce0ffa0f2f327492e78dcf6 llvm-2.1.ebuild 176
|
||||
RMD160 9f7b33bdedc3eca0ce04a61c5c82ef8b331aef6a llvm-2.1.ebuild 176
|
||||
SHA256 77abaacb58f0eab70168cf6636e0578ae078e80051739cbf606f0a3424d91acf llvm-2.1.ebuild 176
|
||||
MD5 67e5687abc2e18ffcdf0c6e0d781de10 files/digest-llvm-2.1 488
|
||||
RMD160 07969f3cb2e375afe8f6ba62c66f38837f44ba4e files/digest-llvm-2.1 488
|
||||
SHA256 02c18aea4c9ce3944e51a1b1497a9e88dd50431b76a31289344cb686f839281d files/digest-llvm-2.1 488
|
6
sys-devel/llvm/files/digest-llvm-2.1
Normal file
6
sys-devel/llvm/files/digest-llvm-2.1
Normal file
@ -0,0 +1,6 @@
|
||||
MD5 1d9935665e12aa49545a95847a44bde3 llvm-2.1-patches-1.0.tar.bz2 1573
|
||||
RMD160 d96dc943b009841b9d83b409ea8680ac172693b7 llvm-2.1-patches-1.0.tar.bz2 1573
|
||||
SHA256 3bee0bfe07291a3e133eb43fcd8e245c3c7605122d9b68ef8b09f071ff1f059f llvm-2.1-patches-1.0.tar.bz2 1573
|
||||
MD5 b930e7213b37acc934d0d163cf13af18 llvm-2.1.tar.gz 5062241
|
||||
RMD160 df28ee93be79b8d436deb7c0e1cff1c21e1328be llvm-2.1.tar.gz 5062241
|
||||
SHA256 8cabd422f249ada736d864fc8a1f4d14aabefacb6f860c9beefbc53f93e0f96c llvm-2.1.tar.gz 5062241
|
8
sys-devel/llvm/llvm-2.1.ebuild
Normal file
8
sys-devel/llvm/llvm-2.1.ebuild
Normal file
@ -0,0 +1,8 @@
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
PATCHVER="1.0"
|
||||
inherit toolchain-llvm
|
||||
|
||||
KEYWORDS="~x86"
|
Loading…
Reference in New Issue
Block a user