diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-03-19 07:23:09 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-03-19 07:26:04 +0000 |
commit | 2d1408e574479b33c32170227541bbfc7ec7bd50 (patch) | |
tree | 3a5448601f614386198fc80ab066944cd8d9140a /testing/wrk | |
parent | 2e05aedf3864cf3a0ec64a6c06f9051ec84ba86a (diff) | |
download | aports-2d1408e574479b33c32170227541bbfc7ec7bd50.tar.bz2 aports-2d1408e574479b33c32170227541bbfc7ec7bd50.tar.xz |
testing/wrk: disable on x86
would require -march=i586 to build on x86
Diffstat (limited to 'testing/wrk')
-rw-r--r-- | testing/wrk/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/wrk/APKBUILD b/testing/wrk/APKBUILD index 685cc95bcf..49776b7d0b 100644 --- a/testing/wrk/APKBUILD +++ b/testing/wrk/APKBUILD @@ -5,7 +5,8 @@ pkgver=4.0.0 pkgrel=0 pkgdesc="wrk is a modern HTTP benchmarking tool" url="https://github.com/wg/wrk" -arch="all" +# requires -march=i586 to build on x86 +arch="x86_64" license="Apache v2" makedepends="$depends_dev openssl-dev" subpackages="$pkgname-doc" |