libffi: disable symbol versioning

Fixes linking with lld.
This commit is contained in:
jeremyd2019
2021-01-07 20:18:09 -08:00
committed by GitHub
parent f0a2c195ad
commit 2ab5b86b59

View File

@@ -5,7 +5,7 @@ _realname=libffi
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=3.3
pkgrel=2
pkgrel=3
pkgdesc="A portable, high level programming interface to various calling conventions (mingw-w64)"
arch=('any')
makedepends=("${MINGW_PACKAGE_PREFIX}-gcc")
@@ -27,7 +27,8 @@ build() {
--build=${MINGW_CHOST} \
--host=${MINGW_CHOST} \
--enable-shared \
--enable-static
--enable-static \
--disable-symvers
make
}