gcc: automatically create LTO plugin path
Fixes https://github.com/void-linux/void-packages/issues/18725.
This commit is contained in:
parent
1b865c9e40
commit
7b9fb8c60b
1 changed files with 6 additions and 1 deletions
|
@ -8,7 +8,7 @@ _isl_version=0.21
|
|||
|
||||
pkgname=gcc
|
||||
version=${_minorver}.0
|
||||
revision=1
|
||||
revision=2
|
||||
short_desc="GNU Compiler Collection"
|
||||
maintainer="Enno Boland <gottox@voidlinux.org>"
|
||||
homepage="http://gcc.gnu.org"
|
||||
|
@ -368,6 +368,11 @@ do_install() {
|
|||
# rpcgen wants /lib/cpp, make a symlink
|
||||
ln -sfr ${DESTDIR}/usr/bin/cpp ${DESTDIR}/usr/lib/cpp
|
||||
|
||||
# lto plugin symlink
|
||||
vmkdir usr/lib/bfd-plugins
|
||||
ln -sfr ${DESTDIR}/usr/lib/gcc/${_triplet}/${version}/liblto_plugin.so \
|
||||
${DESTDIR}/usr/lib/bfd-plugins
|
||||
|
||||
if [ -e ${DESTDIR}/usr/lib64 ]; then
|
||||
rm -f ${DESTDIR}/usr/lib64
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue