aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nnn
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-27 01:15:40 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-27 01:15:40 +0100
commit95e0bf677215f936936eddfd7a1b4b01cc729c54 (patch)
tree832f2776e1951de9a32895fcfa6212b790b66338 /testing/nnn
parent9bdc86efaf439ef9f771ac6f79a334fb69930bf2 (diff)
downloadaports-95e0bf677215f936936eddfd7a1b4b01cc729c54.tar.bz2
aports-95e0bf677215f936936eddfd7a1b4b01cc729c54.tar.xz
testing/nnn: disable on armhf
gcc -O2 -Os -fomit-frame-pointer -pipe -Wall -Wextra -Wno-unused-parameter -o nnn nnn.c -Wl,--as-needed -lreadline -lncursesw nnn.c: In function 'show_stats': nnn.c:1557:20: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'dev_t {aka long long unsigned int}' [-Wformat=] sprintf(g_buf, "%lxh/%lud", sb->st_dev, sb->st_dev); ^ nnn.c:1557:25: warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'dev_t {aka long long unsigned int}' [-Wformat=] sprintf(g_buf, "%lxh/%lud", sb->st_dev, sb->st_dev); ^ gcc -O2 -Os -fomit-frame-pointer -pipe -Wall -Wextra -Wno-unused-parameter -o nnn nnn.c -Wl,--as-needed -lreadline -lncursesw nnn.c: In function 'show_stats': nnn.c:1557:20: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'dev_t {aka long long unsigned int}' [-Wformat=] sprintf(g_buf, "%lxh/%lud", sb->st_dev, sb->st_dev); ^ nnn.c:1557:25: warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'dev_t {aka long long unsigned int}' [-Wformat=] sprintf(g_buf, "%lxh/%lud", sb->st_dev, sb->st_dev); ^ /usr/lib/gcc/armv6-alpine-linux-musleabihf/6.4.0/../../../../armv6-alpine-linux-musleabihf/bin/ld: cannot open output file nnn: No such file or directory collect2: error: ld returned 1 exit status
Diffstat (limited to 'testing/nnn')
-rw-r--r--testing/nnn/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/nnn/APKBUILD b/testing/nnn/APKBUILD
index 2431975aa6..fe4d040cf9 100644
--- a/testing/nnn/APKBUILD
+++ b/testing/nnn/APKBUILD
@@ -6,7 +6,7 @@ pkgver=1.6
pkgrel=0
pkgdesc="The missing terminal file browser for X"
url="https://github.com/jarun/nnn"
-arch="all"
+arch="all !armhf" # armhf: fails to build
license="BSD-2-Clause"
depends="bash"
makedepends="ncurses-dev readline-dev"