diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-06-16 18:27:13 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2022-06-16 18:27:16 +0200 |
commit | d890b43b77078b83cb485028e39a517f7d1f5b3a (patch) | |
tree | 9327fcb5b0762fec477fa4d82495bcbc79b71c72 /pcr/aflplusplus/PKGBUILD | |
parent | 3968840376a79d24d022dfcec9f1506bcbfa946b (diff) | |
download | abslibre-d890b43b77078b83cb485028e39a517f7d1f5b3a.tar.gz abslibre-d890b43b77078b83cb485028e39a517f7d1f5b3a.tar.bz2 abslibre-d890b43b77078b83cb485028e39a517f7d1f5b3a.zip |
pcr: aflplusplus: fix typo
We need lld not lldb. Without lld we have:
[+] llvm_mode detected llvm 11+, enabling afl-lto LTO implementation
GNUmakefile.llvm:218: ld.lld not found, cannot enable LTO mode
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/aflplusplus/PKGBUILD')
-rw-r--r-- | pcr/aflplusplus/PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pcr/aflplusplus/PKGBUILD b/pcr/aflplusplus/PKGBUILD index 96427cee0..bf14d1b7e 100644 --- a/pcr/aflplusplus/PKGBUILD +++ b/pcr/aflplusplus/PKGBUILD @@ -5,18 +5,18 @@ # - Added armv7h and i686 architectures # - Added workaround for -fvar-tracking-assignments being in the # default /etc/makepkg.conf -# - Added depends=('lldb' 'llvm') to be able to build llvm-lto +# - Added depends=('lld' 'llvm') to be able to build llvm-lto pkgname=aflplusplus pkgver=4.00c -pkgrel=3 +pkgrel=4 pkgdesc="afl++ is afl with community patches, AFLfast power schedules, qemu 3.1 upgrade + laf-intel support, MOpt mutators, InsTrim instrumentation, unicorn_mode and a lot more!" arch=('armv7h' 'i686' 'x86_64') url="https://github.com/AFLplusplus/AFLplusplus" license=('Apache') provides=('afl') conflicts=('afl') -makedepends=('lldb' 'llvm') +makedepends=('lld' 'llvm') optdepends=('qemu: use QEMU with afl') source=("https://github.com/AFLplusplus/AFLplusplus/archive/${pkgver}.tar.gz") sha256sums=('f427294ed674e37d34a1b756a2190de17937e046ef21abb3ae37bba018a760f1') |