core/llvm/PKGBUILD

211 lines
7.5 KiB
Bash
Raw Normal View History

2010-08-12 01:18:31 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-08-12 01:18:31 +08:00
pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
pkgver=3.0
2011-11-20 02:37:53 +08:00
_gcc_ver=4.6.2
pkgrel=1
2010-06-07 21:12:50 +08:00
arch=('i686' 'x86_64')
url="http://llvm.org/"
2010-06-07 21:12:50 +08:00
license=('custom:University of Illinois/NCSA Open Source License')
makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=${_gcc_ver}" 'groff')
source=("http://llvm.org/releases/${pkgver}/${pkgname}-${pkgver}.tar.gz"
"http://llvm.org/releases/${pkgver}/clang-${pkgver}.tar.gz"
'clang-fix-gcc-paths.patch'
'archlinux-clang-pure64.patch'
'archlinux-enable-lto.patch'
'archlinux-fix-gold-lto-linking.patch'
'fedora-llvm-2.6-timestamp.patch')
md5sums=('a8e5f5f1c1adebae7b4a654c376a6005'
'43350706ae6cf05d0068885792ea0591'
'0dfddfb58f23470a14d8ef5e0c668137'
'ddf6c1d4aaf5c58a933247f423cf6c59'
'76f40a48805347fd5e0ba6f93517fec1'
'33eb8f686eb9b7bb02051e7fd7b53467'
'43c540ec04f23f07620357211d28c25c')
2010-06-07 21:12:50 +08:00
build() {
# Apply external patches
cd "${srcdir}/clang-${pkgver}.src"
patch -Np0 -i "${srcdir}/archlinux-clang-pure64.patch"
patch -Np0 -i "${srcdir}/archlinux-enable-lto.patch"
patch -Np1 -i "${srcdir}/clang-fix-gcc-paths.patch"
cd "${srcdir}/${pkgname}-${pkgver}.src"
2010-06-07 21:12:50 +08:00
# At the present, clang must reside inside the LLVM source code tree to build
# See http://llvm.org/bugs/show_bug.cgi?id=4840
2010-08-12 01:18:31 +08:00
rm -rf tools/clang
cp -r "${srcdir}/clang-${pkgver}.src" tools/clang
2010-06-07 21:12:50 +08:00
# Fix symbolic links from OCaml bindings to LLVM libraries
sed -i 's:\$(PROJ_libdir):/usr/lib/llvm:' bindings/ocaml/Makefile.ocaml
2010-06-07 21:12:50 +08:00
# Fix installation directories, ./configure doesn't seem to set them right
sed -i -e 's:\$(PROJ_prefix)/etc/llvm:/etc/llvm:' \
-e 's:\$(PROJ_prefix)/lib:$(PROJ_prefix)/lib/llvm:' \
-e 's:\$(PROJ_prefix)/docs/llvm:$(PROJ_prefix)/share/doc/llvm:' \
Makefile.config.in
2010-06-07 21:12:50 +08:00
# Fix insecure rpath (http://bugs.archlinux.org/task/14017)
sed -i 's:$(RPATH) -Wl,$(\(ToolDir\|LibDir\|ExmplDir\))::g' Makefile.rules
2010-06-07 21:12:50 +08:00
# Apply strip option to configure
_optimized_switch="enable"
[ "$(check_option strip)" == 'n' ] && _optimized_switch="disable"
2010-06-07 21:12:50 +08:00
# Include location of libffi headers in CPPFLAGS
export CPPFLAGS="${CPPFLAGS} $(pkg-config --cflags libffi)"
2010-06-07 21:12:50 +08:00
_cxx_headers="/usr/include/c++/${_gcc_ver}"
if [ ! -d "${_cxx_headers}" ]; then
error "Couldn't find the C++ headers, PKGBUILD needs fixing!"
return 1
fi
2011-11-20 02:37:53 +08:00
_32bit_headers=""
if [ "${CARCH}" == 'x86_64' ]; then
2011-11-20 02:37:53 +08:00
# Important for multilib
_32bit_headers="32"
fi
# Apply external patches
patch -Np1 -i "${srcdir}/archlinux-fix-gold-lto-linking.patch"
patch -Np1 -i "${srcdir}/fedora-llvm-2.6-timestamp.patch"
./configure --prefix=/usr \
--libdir=/usr/lib/llvm \
--sysconfdir=/etc \
--enable-shared \
--enable-libffi \
--enable-targets=all \
--disable-expensive-checks \
--disable-debug-runtime \
--disable-assertions \
--with-binutils-include=/usr/include \
--with-cxx-include-root="${_cxx_headers}" \
--with-cxx-include-arch="${CHOST}" \
--with-cxx-include-32bit-dir="${_32bit_headers}" \
--"${_optimized_switch}"-optimized
make REQUIRES_RTTI=1
2010-06-07 21:12:50 +08:00
}
package_llvm() {
pkgdesc="Low Level Virtual Machine"
depends=('perl' 'libffi')
cd "${srcdir}/${pkgname}-${pkgver}.src"
# The OCaml binding installation is currently broken, let's fix it
# see https://github.com/mxcl/homebrew/issues/8947#issuecomment-3256464
sed -i 's#^install-meta:: \$(ObjDir)/META.llvm$#install-meta:: $(OcamlDir)/META.llvm#g' bindings/ocaml/llvm/Makefile
2010-06-07 21:12:50 +08:00
# We move the clang directory out of the tree so it won't get installed and
# then we bring it back in for the clang package
mv tools/clang "${srcdir}"
2010-06-07 21:12:50 +08:00
# -j1 is due to race conditions during the installation of the OCaml bindings
make -j1 DESTDIR="${pkgdir}" install
mv "${srcdir}/clang" tools
2010-06-07 21:12:50 +08:00
# OCaml bindings go to a separate package
rm -rf "${srcdir}"/{ocaml,ocamldoc}
mv "${pkgdir}"/usr/{lib/ocaml,share/doc/llvm/ocamldoc} "${srcdir}"
2010-06-07 21:12:50 +08:00
# Remove duplicate files installed by the OCaml bindings
rm "${pkgdir}"/usr/{lib/llvm/libllvm*,share/doc/llvm/ocamldoc.tar.gz}
2010-06-07 21:12:50 +08:00
# Fix permissions of static libs
chmod -x "${pkgdir}"/usr/lib/llvm/*.a
2010-06-07 21:12:50 +08:00
# Fix libdir in llvm-config (http://bugs.archlinux.org/task/14487)
sed -i 's:\(ABS_RUN_DIR/lib\):\1/llvm:' "${pkgdir}/usr/bin/llvm-config"
2010-06-07 21:12:50 +08:00
# Get rid of example Hello transformation
rm "${pkgdir}"/usr/lib/llvm/*LLVMHello.*
2010-06-07 21:12:50 +08:00
# Symlink the gold plugin where clang expects it
ln -s llvm/LLVMgold.so "${pkgdir}/usr/lib/LLVMgold.so"
2010-06-07 21:12:50 +08:00
# Add ld.so.conf.d entry
install -d "${pkgdir}/etc/ld.so.conf.d"
echo /usr/lib/llvm >"${pkgdir}/etc/ld.so.conf.d/llvm.conf"
2010-06-07 21:12:50 +08:00
install -Dm644 LICENSE.TXT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
2010-06-07 21:12:50 +08:00
}
package_llvm-ocaml() {
pkgdesc="OCaml bindings for LLVM"
depends=("llvm=${pkgver}-${pkgrel}" 'ocaml')
2010-06-07 21:12:50 +08:00
cd "${srcdir}/${pkgname}-${pkgver}.src"
2010-06-07 21:12:50 +08:00
install -d "${pkgdir}"/{usr/lib,usr/share/doc/llvm}
cp -r "${srcdir}/ocaml" "${pkgdir}/usr/lib"
cp -r "${srcdir}/ocamldoc" "${pkgdir}/usr/share/doc/llvm"
2010-06-07 21:12:50 +08:00
# Remove execute bit from static libraries
chmod -x "${pkgdir}"/usr/lib/ocaml/libllvm*.a
2010-06-07 21:12:50 +08:00
install -Dm644 LICENSE.TXT "${pkgdir}/usr/share/licenses/llvm-ocaml/LICENSE"
2010-06-07 21:12:50 +08:00
}
package_clang() {
pkgdesc="C language family frontend for LLVM"
url="http://clang.llvm.org/"
# It looks like clang still needs GCC to assemble and link object files
# See http://old.nabble.com/%22clang--v%22-shows-a-GCC-call-td28378453.html
depends=("llvm=${pkgver}-${pkgrel}" "gcc=${_gcc_ver}")
2010-06-07 21:12:50 +08:00
# Fix installation path for clang docs
sed -i 's:$(PROJ_prefix)/share/doc/llvm:$(PROJ_prefix)/share/doc/clang:' \
"${srcdir}/${pkgname}-${pkgver}.src/Makefile.config"
2010-06-07 21:12:50 +08:00
cd "${srcdir}/${pkgname}-${pkgver}.src/tools/clang"
make DESTDIR="${pkgdir}" install
2010-06-07 21:12:50 +08:00
# Fix permissions of static libs
chmod -x "${pkgdir}"/usr/lib/llvm/*.a
2010-06-07 21:12:50 +08:00
# Revert the path change in case we want to do a repackage later
sed -i 's:$(PROJ_prefix)/share/doc/clang:$(PROJ_prefix)/share/doc/llvm:' \
"${srcdir}/${pkgname}-${pkgver}.src/Makefile.config"
2010-06-07 21:12:50 +08:00
2011-11-20 02:37:53 +08:00
# Install old libstdc++ headers. Contains combined headers from
# gcc 4.5.2-6-i686 and gcc-multilib-4.5.2-6-x86_64
# install -d "${pkgdir}/usr/include/c++"
# cp -rd "${srcdir}/gcc-headers-${_gcc_ver}" "${pkgdir}/usr/include/c++/clang-${pkgver}"
2011-11-20 02:37:53 +08:00
install -Dm644 LICENSE.TXT "${pkgdir}/usr/share/licenses/clang/LICENSE"
2010-06-07 21:12:50 +08:00
}
package_clang-analyzer() {
pkgdesc="A source code analysis framework"
url="http://clang-analyzer.llvm.org/"
depends=("clang=${pkgver}-${pkgrel}" 'python2')
2010-06-07 21:12:50 +08:00
cd "${srcdir}/${pkgname}-${pkgver}.src/tools/clang"
2010-06-07 21:12:50 +08:00
install -d "${pkgdir}"/usr/{bin,lib/clang-analyzer}
for _tool in scan-{build,view}; do
cp -r "tools/${_tool}" "${pkgdir}/usr/lib/clang-analyzer"
ln -s "/usr/lib/clang-analyzer/${_tool}/${_tool}" "${pkgdir}/usr/bin"
2010-06-07 21:12:50 +08:00
done
# Use Python 2
2011-11-20 02:37:53 +08:00
sed -i 's/env python$/&2/' \
"${pkgdir}/usr/lib/clang-analyzer/scan-view/scan-view" \
"${pkgdir}/usr/lib/clang-analyzer/scan-build/set-xcode-analyzer"
2010-06-07 21:12:50 +08:00
# Compile Python scripts
python2 -m compileall "${pkgdir}/usr/lib/clang-analyzer"
python2 -O -m compileall "${pkgdir}/usr/lib/clang-analyzer"
2010-06-07 21:12:50 +08:00
install -Dm644 LICENSE.TXT "${pkgdir}/usr/share/licenses/clang-analyzer/LICENSE"
2011-11-20 02:37:53 +08:00
}
# vim:set ts=2 sw=2 et: