2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
# Slackware build script for llvm
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# Copyright 2008-2016 Heinz Wiesinger, Amsterdam, The Netherlands
|
2022-06-28 21:16:08 +02:00
|
|
|
# Copyright 2012, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021, 2022 Patrick J. Volkerding, Sebeka, MN, USA
|
2012-09-26 03:10:42 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
PKGNAM=llvm
|
2016-06-30 22:26:57 +02:00
|
|
|
VERSION=${VERSION:-$(echo llvm-*.tar.xz | rev | cut -f 4- -d . | cut -f 1 -d - | rev)}
|
2022-02-10 02:46:55 +01:00
|
|
|
BUILD=${BUILD:-1}
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2018-09-21 20:51:07 +02:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-06-30 22:26:57 +02:00
|
|
|
i?86) ARCH=i586 ;;
|
2012-09-26 03:10:42 +02:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-05-14 04:38:35 +02:00
|
|
|
# Building clangd will be determined automatically unless BUILD_CLANG is
|
|
|
|
# preset to YES or NO:
|
|
|
|
if [ -z $BUILD_CLANGD ]; then
|
|
|
|
if [ "$ARCH" = "i586" -o "$ARCH" = "i686" ]; then
|
|
|
|
BUILD_CLANGD=NO
|
|
|
|
else
|
|
|
|
BUILD_CLANGD=YES
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$BUILD_CLANGD" = "NO" ]; then
|
|
|
|
CLANGD="-DCLANG_ENABLE_CLANGD=OFF"
|
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-$PKGNAM
|
2022-06-28 21:16:08 +02:00
|
|
|
BUILDDIR=${TMP}/llvm-build-${VERSION}
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2012-09-26 03:10:42 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
# Python2 short version:
|
|
|
|
PY2=$(python -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())' | cut -f 2 -d n | cut -f 1 -d /)
|
|
|
|
# Python3 short version:
|
|
|
|
PY3=$(python3 -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())' | cut -f 2 -d n | cut -f 1 -d /)
|
|
|
|
|
2019-09-30 23:08:32 +02:00
|
|
|
# Sadly, glibc-2.30 exposed some sort of problem with clang and icecream.
|
|
|
|
# The symptom is a compile failure that says none of the types in
|
|
|
|
# <linux/types.h> are defined, even though they are. gcc/g++ seem unaffected.
|
|
|
|
# For now, not much choice other than to disable this.
|
|
|
|
# Don't use icecream:
|
2021-05-14 04:38:35 +02:00
|
|
|
#PATH=$(echo $PATH | sed "s|/usr/libexec/icecc/bin||g" | tr -s : | sed "s/^://g" | sed "s/:$//g")
|
2019-09-30 23:08:32 +02:00
|
|
|
|
2022-06-28 21:16:08 +02:00
|
|
|
rm -rf $PKG $BUILDDIR
|
|
|
|
mkdir -p $TMP $PKG $BUILDDIR
|
|
|
|
cd $BUILDDIR
|
|
|
|
|
|
|
|
# Add a fake configure script so the cleanup script used here at Slackware
|
|
|
|
# knows to delete this stuff later. Other folks can just ignore this... it
|
|
|
|
# doesn't have any other purpose.
|
|
|
|
touch configure
|
|
|
|
chmod 755 configure
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
rm -rf $PKGNAM-${VERSION}.src $PKGNAM-${VERSION}
|
2013-11-04 18:08:47 +01:00
|
|
|
tar xvf $CWD/$PKGNAM-$VERSION.src.tar.xz || exit 1
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2022-06-28 21:16:08 +02:00
|
|
|
cd $PKGNAM-${VERSION}.src/tools || cd $PKGNAM-${VERSION}/tools || exit 1
|
Sat Dec 21 01:04:26 UTC 2019
a/aaa_elflibs-15.0-x86_64-17.txz: Rebuilt.
Upgraded: libcap.so.2.28, libelf-0.178.so, libglib-2.0.so.0.6200.4,
libgmodule-2.0.so.0.6200.4, libgobject-2.0.so.0.6200.4,
libgthread-2.0.so.0.6200.4, libidn2.so.0.3.7, libpcre2-8.so.0.9.0,
libtdb.so.1.4.3.
Added: libffi.so.6.0.4, libffi.so.7.1.0.
a/file-5.38-x86_64-2.txz: Rebuilt.
Patched to fix ELF shared libraries misidentified as "statically linked."
a/kernel-firmware-20191220_6871bff-noarch-1.txz: Upgraded.
a/openssl10-solibs-1.0.2u-x86_64-1.txz: Upgraded.
(* Security fix *)
d/guile-2.2.6-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
d/llvm-9.0.1-x86_64-1.txz: Upgraded.
Compiled against libffi-3.3.
d/python-2.7.17-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
d/python3-3.7.6-x86_64-1.txz: Upgraded.
Compiled against libffi-3.3.
d/ruby-2.6.5-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
l/glib2-2.62.4-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
l/libffi-3.3-x86_64-1.txz: Upgraded.
Shared library .so-version bump.
l/libvpx-1.8.2-x86_64-1.txz: Upgraded.
l/pygobject-2.28.7-x86_64-4.txz: Rebuilt.
Recompiled against libffi-3.3.
l/pygobject3-3.34.0-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
l/sip-4.19.20-x86_64-1.txz: Upgraded.
n/cifs-utils-6.10-x86_64-1.txz: Upgraded.
n/dhcpcd-8.1.3-x86_64-1.txz: Upgraded.
n/openssl10-1.0.2u-x86_64-1.txz: Upgraded.
This update fixes a low severity security issue:
Fixed an an overflow bug in the x86_64 Montgomery squaring procedure used in
exponentiation with 512-bit moduli.
For more information, see:
https://www.openssl.org/news/secadv/20191206.txt
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1551
(* Security fix *)
n/p11-kit-0.23.18.1-x86_64-2.txz: Rebuilt.
Recompiled against libffi-3.3.
extra/tigervnc/tigervnc-1.10.1-x86_64-1.txz: Upgraded.
From tigervnc.org: "This is a security release to fix a number of issues
that were found by Kaspersky Lab. These issues affect both the client and
server and could theoretically allow a malicious peer to take control
over the software on the other side. No working exploit is known at this
time, and the issues require the peer to first be authenticated. We still
urge users to upgrade when possible."
(* Security fix *)
2019-12-21 02:04:26 +01:00
|
|
|
tar xvf $CWD/clang-$VERSION.src.tar.xz || exit 1
|
|
|
|
mv clang-${VERSION} clang 2>/dev/null || mv clang-${VERSION}.src clang || exit 1
|
2020-10-14 05:52:13 +02:00
|
|
|
#tar xvf $CWD/flang-$VERSION.src.tar.xz || exit 1
|
|
|
|
#mv flang-${VERSION} flang 2>/dev/null || mv flang-${VERSION}.src flang || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
tar xvf $CWD/lldb-$VERSION.src.tar.xz || exit 1
|
|
|
|
mv lldb-${VERSION} lldb 2>/dev/null || mv lldb-${VERSION}.src lldb || exit 1
|
2022-06-28 21:16:08 +02:00
|
|
|
tar xvf $CWD/lld-$VERSION.src.tar.xz || exit 1
|
|
|
|
mv lld-${VERSION} lld 2>/dev/null || mv lld-${VERSION}.src lld || exit 1
|
2013-11-04 18:08:47 +01:00
|
|
|
cd ../
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
cd tools/clang/tools || exit 1
|
|
|
|
tar xvf $CWD/clang-tools-extra-$VERSION.src.tar.xz || exit 1
|
|
|
|
mv clang-tools-extra-${VERSION} extra 2>/dev/null \
|
|
|
|
|| mv clang-tools-extra-${VERSION}.src extra || exit 1
|
2021-05-14 04:38:35 +02:00
|
|
|
# HACK # Otherwise the build fails because files aren't found.
|
|
|
|
rm -rf $TMP/clang-tools-extra
|
|
|
|
cp -a extra $TMP/clang-tools-extra
|
2016-06-30 22:26:57 +02:00
|
|
|
cd ../../../
|
|
|
|
|
|
|
|
cd projects || exit 1
|
|
|
|
tar xvf $CWD/compiler-rt-$VERSION.src.tar.xz || exit 1
|
2020-01-31 04:36:03 +01:00
|
|
|
mv compiler-rt-${VERSION} compiler-rt 2>/dev/null || mv compiler-rt-${VERSION}.src compiler-rt || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
tar xvf $CWD/openmp-$VERSION.src.tar.xz || exit 1
|
2020-01-31 04:36:03 +01:00
|
|
|
mv openmp-${VERSION} openmp 2>/dev/null || mv openmp-${VERSION}.src openmp || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
tar xvf $CWD/libcxx-${VERSION}.src.tar.xz || exit 1
|
2020-01-31 04:36:03 +01:00
|
|
|
mv libcxx-${VERSION} libcxx 2>/dev/null || mv libcxx-${VERSION}.src libcxx || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
tar xvf $CWD/libcxxabi-${VERSION}.src.tar.xz || exit 1
|
2020-01-31 04:36:03 +01:00
|
|
|
mv libcxxabi-${VERSION} libcxxabi 2>/dev/null || mv libcxxabi-${VERSION}.src libcxxabi || exit 1
|
|
|
|
tar xvf $CWD/polly-$VERSION.src.tar.xz || exit 1
|
|
|
|
mv polly-${VERSION} polly 2>/dev/null || mv polly-${VERSION}.src polly || exit 1
|
2021-05-14 04:38:35 +02:00
|
|
|
# We just need a header file from this...
|
|
|
|
tar xvf $CWD/libunwind-${VERSION}.src.tar.xz || exit 1
|
2022-06-28 21:16:08 +02:00
|
|
|
mv libunwind-${VERSION}.src libunwind || mv libunwind-${VERSION} libunwind || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
cd ../
|
|
|
|
|
|
|
|
# Support GCC built for i586-slackware-linux:
|
|
|
|
zcat $CWD/clang.toolchains.i586.triple.diff.gz | patch -p1 --verbose || exit 1
|
|
|
|
|
2020-03-25 23:53:06 +01:00
|
|
|
# Hack to fix build with polly. Maybe we should just not use polly... ?
|
|
|
|
zcat $CWD/llvm.polly.hack.diff.gz | patch -p1 --verbose || exit 1
|
|
|
|
|
2022-06-28 21:16:08 +02:00
|
|
|
# We require libatomic on 32-bit platforms:
|
|
|
|
if [ "$ARCH" = "i586" -o "$ARCH" = "i686" ]; then
|
|
|
|
zcat $CWD/lldb.32-bit.link.libatomic.diff.gz | patch -p1 --verbose || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Won't build without this. See https://github.com/llvm/llvm-project/issues/54941
|
|
|
|
#zcat $CWD/llvm.bypass.broken.benchmarks.diff.gz | patch -p1 --verbose || exit 1
|
|
|
|
|
|
|
|
# These hackish links seem to be required...
|
|
|
|
cd ..
|
|
|
|
ln -sf */utils/gn/secondary/third-party .
|
|
|
|
ln -sf */runtimes .
|
|
|
|
ln -sf */projects/libcxx .
|
|
|
|
ln -sf */projects/libcxxabi .
|
|
|
|
cd -
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
chown -R root:root .
|
2016-06-30 22:26:57 +02:00
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 755 {} \+ -o \
|
2016-06-30 22:26:57 +02:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
2019-09-30 23:08:32 +02:00
|
|
|
-exec chmod 644 {} \+
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-05-14 04:38:35 +02:00
|
|
|
mkdir include
|
|
|
|
# Copy this LLVM libunwind header or it won't be found:
|
|
|
|
cp -a ../projects/libunwind/include/mach-o include
|
|
|
|
# Nuke LLVM libunwind as it conflicts with the one already on the system:
|
|
|
|
rm -r ../projects/libunwind
|
2019-09-30 23:08:32 +02:00
|
|
|
cmake -GNinja \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DCMAKE_C_COMPILER="clang" \
|
|
|
|
-DCMAKE_CXX_COMPILER="clang++" \
|
|
|
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=${LIBDIRSUFFIX} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2022-06-28 21:16:08 +02:00
|
|
|
-DLLVM_BUILD_LLVM_DYLIB=ON \
|
|
|
|
-DLLVM_LINK_LLVM_DYLIB=ON \
|
|
|
|
-DCLANG_LINK_CLANG_DYLIB=ON \
|
2018-09-21 20:51:07 +02:00
|
|
|
-DLLVM_USE_LINKER=gold \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DLLVM_ENABLE_RTTI=ON \
|
|
|
|
-DLLVM_ENABLE_FFI=ON \
|
|
|
|
-DLLVM_ENABLE_ASSERTIONS=OFF \
|
2019-05-04 03:29:20 +02:00
|
|
|
-DLLVM_INSTALL_UTILS=ON \
|
2016-06-30 22:26:57 +02:00
|
|
|
-DLLVM_BINUTILS_INCDIR=/usr/include \
|
|
|
|
-DCLANG_RESOURCE_DIR="../lib${LIBDIRSUFFIX}/clang/${VERSION}" \
|
2019-09-30 23:08:32 +02:00
|
|
|
-DLLVM_TARGETS_TO_BUILD="host;AMDGPU;BPF" \
|
2020-03-30 01:05:46 +02:00
|
|
|
-DLLDB_USE_SYSTEM_SIX=1 \
|
2022-06-28 21:16:08 +02:00
|
|
|
-DLLVM_INCLUDE_BENCHMARKS=OFF \
|
|
|
|
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
|
2019-09-30 23:08:32 +02:00
|
|
|
$CLANGD \
|
|
|
|
.. || exit 1
|
|
|
|
|
|
|
|
"${NINJA:=ninja}" $NUMJOBS || exit 1
|
|
|
|
DESTDIR=$PKG "$NINJA" install || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
cd ..
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2013-11-04 18:08:47 +01:00
|
|
|
# Add symlinks for $ARCH-slackware-linux-{clang,clang++}:
|
|
|
|
( cd $PKG/usr/bin
|
|
|
|
ln -sf clang $ARCH-slackware-linux-clang
|
|
|
|
ln -sf clang++ $ARCH-slackware-linux-clang++
|
|
|
|
)
|
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Install clang-static-analyzer:
|
2013-11-04 18:08:47 +01:00
|
|
|
for i in ccc c++; do
|
2016-06-30 22:26:57 +02:00
|
|
|
ln -s /usr/libexec/$i-analyzer \
|
2013-11-04 18:08:47 +01:00
|
|
|
$PKG/usr/bin/$i-analyzer || exit 1
|
|
|
|
done
|
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Ensure lit-cpuid is installed:
|
|
|
|
if [ ! -r $PKG/usr/bin/lit-cpuid ]; then
|
|
|
|
cp -a build/bin/lit-cpuid $PKG/usr/bin/lit-cpuid
|
|
|
|
chown root:root $PKG/usr/bin/lit-cpuid
|
|
|
|
chmod 755 $PKG/usr/bin/lit-cpuid
|
|
|
|
fi
|
|
|
|
# Remove symlink to libgomp, which is already provided by gcc:
|
2018-05-28 21:12:29 +02:00
|
|
|
rm -f $PKG/usr/lib$LIBDIRSUFFIX/libgomp.so
|
2016-06-30 22:26:57 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Install Python bindings:
|
2019-02-21 00:59:17 +01:00
|
|
|
for pyver in ${PY2} ${PY3}; do
|
2018-09-06 08:15:46 +02:00
|
|
|
mkdir -p "$PKG/usr/lib$LIBDIRSUFFIX/python$pyver/site-packages"
|
|
|
|
cp -a tools/clang/bindings/python/clang "$PKG/usr/lib$LIBDIRSUFFIX/python$pyver/site-packages/"
|
|
|
|
done
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Remove bundled python-six:
|
2019-02-21 00:59:17 +01:00
|
|
|
rm -f "$PKG/usr/lib$LIBDIRSUFFIX/python${PY2}/site-packages/six.py"
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2020-03-30 01:05:46 +02:00
|
|
|
# Compile Python scripts:
|
2019-02-21 00:59:17 +01:00
|
|
|
python -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY2}/site-packages/clang"
|
|
|
|
python -O -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY2}/site-packages/clang"
|
|
|
|
python3 -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY3}/site-packages/clang"
|
|
|
|
python3 -O -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY3}/site-packages/clang"
|
|
|
|
python -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY2}/site-packages/lldb"
|
|
|
|
python -O -m compileall "$PKG/usr/lib$LIBDIRSUFFIX/python${PY2}/site-packages/lldb"
|
2018-05-28 21:12:29 +02:00
|
|
|
python -m compileall "$PKG/usr/share/scan-view"
|
|
|
|
python -O -m compileall "$PKG/usr/share/scan-view"
|
|
|
|
python -m compileall "$PKG/usr/share/clang"
|
|
|
|
python -O -m compileall "$PKG/usr/share/clang"
|
2018-09-06 08:15:46 +02:00
|
|
|
python -m compileall "$PKG/usr/share/opt-viewer"
|
|
|
|
python -O -m compileall "$PKG/usr/share/opt-viewer"
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
# Move man page directory:
|
|
|
|
mv $PKG/usr/share/man $PKG/usr/
|
2013-11-04 18:08:47 +01:00
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
# Strip binaries:
|
|
|
|
( cd $PKG
|
|
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
)
|
|
|
|
|
|
|
|
# Compress manual pages:
|
2019-09-30 23:08:32 +02:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \+
|
2012-09-26 03:10:42 +02:00
|
|
|
for i in $( find $PKG/usr/man -type l ) ; do
|
|
|
|
ln -s $( readlink $i ).gz $i.gz
|
|
|
|
rm $i
|
|
|
|
done
|
|
|
|
|
2020-01-31 04:36:03 +01:00
|
|
|
mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/{clang,lldb,clang-tools-extra,compiler-rt,openmp,polly}
|
2012-09-26 03:10:42 +02:00
|
|
|
cp -a CREDITS* LICENSE* README* $PKG/usr/doc/$PKGNAM-$VERSION
|
2013-11-04 18:08:47 +01:00
|
|
|
cp -a tools/clang/{INSTALL,LICENSE,NOTES,README}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/clang
|
2018-05-28 21:12:29 +02:00
|
|
|
cp -a tools/lldb/{CODE_OWNERS,INSTALL,LICENSE}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/lldb
|
|
|
|
cp -a tools/clang/tools/extra/{CODE_OWNERS,LICENSE,README}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/clang-tools-extra
|
|
|
|
cp -a projects/compiler-rt/{CODE_OWNERS,CREDITS,LICENSE,README}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/compiler-rt
|
|
|
|
cp -a projects/openmp/{CREDITS,LICENSE}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/openmp
|
2020-01-31 04:36:03 +01:00
|
|
|
cp -a projects/polly/{CREDITS,LICENSE,README}* \
|
|
|
|
$PKG/usr/doc/$PKGNAM-$VERSION/polly
|
2012-09-26 03:10:42 +02:00
|
|
|
mv $PKG/usr/docs/llvm/* $PKG/usr/doc/$PKGNAM-$VERSION
|
|
|
|
rm -rf $PKG/usr/docs
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
|