Build of atop with vanilla toolchain

The build took 00h 00m 28s and was NOT successful.

The program in this build is written in the following languages, according to sloccount:

SLOCLanguage
15,897 ansic
171 sh
145 makefile
16,213 total

The process tree of the build process is here.

Log

To avoid scrolling, you may jump to the last line of the invocation of makepkg that was used to build this package.

Removed vanilla repositories from pacman.conf and added:
# [tuscan]
# Server = file:///var/cache/pacman/pkg/

CMD: pacman -Syy --noconfirm
# :: Synchronizing package databases...
# downloading tuscan.db...

CMD: sudo -u tuscan red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
# ==> Making package: atop 2.2_3-3 (Wed Aug 24 14:32:50 UTC 2016)
# ==> Checking runtime dependencies...
# ==> Installing missing dependencies...
# resolving dependencies...
# looking for conflicting packages...
#
# Packages (1) cronie-1.5.1-1
#
# Total Installed Size: 0.26 MiB
#
# :: Proceed with installation? [Y/n]
# checking keyring...
# checking package integrity...
# loading package files...
# checking for file conflicts...
# checking available disk space...
# :: Processing package changes...
# installing cronie...
# Optional dependencies for cronie
# pm-utils: defer anacron on battery power
# smtp-server: send job output via email
# smtp-forwarder: forward job output to email server
# :: Running post-transaction hooks...
# (1/1) Updating manpage index...
# ==> Checking buildtime dependencies...
# ==> WARNING: Using existing $srcdir/ tree
# ==> Starting build()...
# cc -O2 -I. -Wall -c -o atop.o atop.c
# cc -O2 -I. -Wall -c -o version.o version.c
# cc -O2 -I. -Wall -c -o various.o various.c
# atop.c:274:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: atop.c,v 1.49 2010/10/23 14:01:00 gerlof Exp $";
# ^~~~~
# various.c: In function 'cleanstop':
# various.c:573:1: warning: type of 'exitcode' defaults to 'int' [-Wimplicit-int]
# cleanstop(exitcode)
# ^~~~~~~~~
# At top level:
# various.c:101:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: various.c,v 1.21 2010/11/12 06:16:16 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o deviate.o deviate.c
# cc -O2 -I. -Wall -c -o procdbase.o procdbase.c
# deviate.c:171:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: deviate.c,v 1.45 2010/10/23 14:02:03 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o acctproc.o acctproc.c
# procdbase.c:61:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: procdbase.c,v 1.8 2010/04/23 12:19:35 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o photoproc.o photoproc.c
# acctproc.c:116:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: acctproc.c,v 1.28 2010/04/23 12:20:19 gerlof Exp $";
# ^~~~~
# photoproc.c:139:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: photoproc.c,v 1.33 2010/04/23 12:19:35 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o photosyst.o photosyst.c
# cc -O2 -I. -Wall -c -o rawlog.o rawlog.c
# rawlog.c:138:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: rawlog.c,v 1.32 2010/11/26 06:06:35 gerlof Exp $";
# ^~~~~
# photosyst.c:152:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: photosyst.c,v 1.38 2010/11/19 07:40:40 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o ifprop.o ifprop.c
# cc -O2 -I. -Wall -c -o parseable.o parseable.c
# cc -O2 -I. -Wall -c -o showgeneric.o showgeneric.c
# cc -O2 -I. -Wall -c -o showlinux.o showlinux.c
# showgeneric.c:258:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: showgeneric.c,v 1.71 2010/10/25 19:08:32 gerlof Exp $";
# ^~~~~
# showlinux.c: In function 'compcpu':
# showlinux.c:1927:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (acpu > bcpu) return -1;
# ^~
# showlinux.c:1928:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return compmem(a, b);
# ^~~~~~
# showlinux.c: In function 'compdsk':
# showlinux.c:1951:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (adsk > bdsk) return -1;
# ^~
# showlinux.c:1952:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return compcpu(a, b);
# ^~~~~~
# showlinux.c: In function 'compmem':
# showlinux.c:1962:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (amem > bmem) return -1;
# ^~
# showlinux.c:1963:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'compnet':
# showlinux.c:1979:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (anet > bnet) return -1;
# ^~
# showlinux.c:1980:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return compcpu(a, b);
# ^~~~~~
# showlinux.c: In function 'compusr':
# showlinux.c:1990:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (uida < uidb) return -1;
# ^~
# showlinux.c:1991:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'cpucompar':
# showlinux.c:2012:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (aidle > bidle) return 1;
# ^~
# showlinux.c:2013:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'diskcompar':
# showlinux.c:2023:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (amsio > bmsio) return -1;
# ^~
# showlinux.c:2024:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'intfcompar':
# showlinux.c:2072:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (afactor > bfactor) return -1;
# ^~
# showlinux.c:2073:41: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c:2079:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if ((arbyte + asbyte) > (brbyte + bsbyte)) return -1;
# ^~
# showlinux.c:2080:65: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'nfsmcompar':
# showlinux.c:2105:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (aused > bused) return -1;
# ^~
# showlinux.c:2106:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# showlinux.c: In function 'contcompar':
# showlinux.c:2119:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
# if (aused > bused) return -1;
# ^~
# showlinux.c:2120:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
# return 0;
# ^~~~~~
# At top level:
# showlinux.c:265:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: showlinux.c,v 1.70 2010/10/23 14:04:12 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o showsys.o showsys.c
# cc -O2 -I. -Wall -c -o showprocs.o showprocs.c
# showprocs.c:85:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: showprocs.c,v 1.15 2011/09/05 11:44:16 gerlof Exp $";
# ^~~~~
# showsys.c:71:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "XXXXXX";
# ^~~~~
# cc -O2 -I. -Wall -c -o atopsar.o atopsar.c
# atopsar.c:32:19: warning: 'rcsid' defined but not used [-Wunused-const-variable=]
# static const char rcsid[] = "$Id: atopsar.c,v 1.28 2010/11/26 06:19:43 gerlof Exp $";
# ^~~~~
# cc -O2 -I. -Wall -c -o netatopif.o netatopif.c
# cc -O2 -I. -Wall -c -o atopacctd.o atopacctd.c
# cc -I. -Wall -c netlink.c
# cc atop.o version.o various.o deviate.o procdbase.o acctproc.o photoproc.o photosyst.o rawlog.o ifprop.o parseable.o showgeneric.o showlinux.o showsys.o showprocs.o atopsar.o netatopif.o -o atop -lncurses -lz -lm -lrt
# cc atopacctd.o netlink.o -o atopacctd
# ln -sf atop atopsar
# ==> Entering fakeroot environment...
# ==> Starting package()...
# if [ ! -d /tmp/atop/pkg/atop/var/log/atop ]; \
# then mkdir -p /tmp/atop/pkg/atop/var/log/atop; fi
# if [ ! -d /tmp/atop/pkg/atop/usr/bin ]; \
# then mkdir -p /tmp/atop/pkg/atop/usr/bin; fi
# if [ ! -d /tmp/atop/pkg/atop/usr/bin ]; \
# then mkdir -p /tmp/atop/pkg/atop/usr/bin; fi
# if [ ! -d /tmp/atop/pkg/atop/etc/atop ]; \
# then mkdir -p /tmp/atop/pkg/atop/etc/atop; fi
# if [ ! -d /tmp/atop/pkg/atop/usr/share/man/man1 ]; \
# then mkdir -p /tmp/atop/pkg/atop/usr/share/man/man1; fi
# if [ ! -d /tmp/atop/pkg/atop/usr/share/man/man5 ]; \
# then mkdir -p /tmp/atop/pkg/atop/usr/share/man/man5; fi
# if [ ! -d /tmp/atop/pkg/atop/usr/share/man/man8 ]; \
# then mkdir -p /tmp/atop/pkg/atop/usr/share/man/man8; fi
# if [ ! -d /tmp/atop/pkg/atop/etc/cron.d ]; \
# then mkdir -p /tmp/atop/pkg/atop/etc/cron.d; fi
# if [ ! -d /tmp/atop/pkg/atop/etc/logrotate.d ]; \
# then mkdir -p /tmp/atop/pkg/atop/etc/logrotate.d; fi
# #
# cp atop /tmp/atop/pkg/atop/usr/bin/atop
# chown root /tmp/atop/pkg/atop/usr/bin/atop
# chown: changing ownership of '/tmp/atop/pkg/atop/usr/bin/atop': Operation not permitted
# make: *** [Makefile:132: genericinstall] Error 1
# ==> ERROR: A failure occurred in package().
# Aborting...