Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Nov 2015 22:54:30 +0000 (GMT)
From:      jenkins-admin@FreeBSD.org
To:        ngie@FreeBSD.org, lidl@FreeBSD.org, bdrewery@FreeBSD.org,  jenkins-admin@FreeBSD.org, freebsd-arm@FreeBSD.org
Subject:   FreeBSD_HEAD_arm64 - Build #1781 - Still Failing
Message-ID:  <1388469366.175.1448492072113.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <1094348940.169.1448485492329.JavaMail.jenkins@jenkins-9.freebsd.org>
References:  <1094348940.169.1448485492329.JavaMail.jenkins@jenkins-9.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
FreeBSD_HEAD_arm64 - Build #1781 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_arm64/1781/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_arm64/1781/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_arm64/1781/console

Change summaries:

291335 by ngie:
Fix building sys/modules/if_enc by adding missing headers

X-MFC with: r291292, r291299 (if that ever happens)
Pointyhat to: ae

291332 by bdrewery:
Rename Makefile.inc1 to dtrace.test.mk to avoid clash with top-level Makefile.inc1.

Discussed with:	ngie, markj
Sponsored by:	EMC / Isilon Storage Division

291331 by bdrewery:
Avoid requiring 'make depend' here.

Really this should not be a DPSRCS.  The acct_test.c should not #include
convert.c, but just link it in as a normal SRCS.

MFC after:	1 week
Sponsored by:	EMC / Isilon Storage Division

291330 by bdrewery:
Replace DPSRCS that work fine in SRCS.

This is so that 'make depend' is not a required build step in these
files.

DPSRCS is overall unneeded.  DPSRCS already contains SRCS, so anything
which can safely be in SRCS should be.  DPSRCS is mostly just a way to
generate files that should not be linked into the final PROG/LIB.  For
headers and grammars it is safe for them to be in SRCS since they will
be excluded during linking and installation.

The only remaining uses of DPSRCS are for generating .c or .o files that
must be built before 'make depend' can run 'mkdep' on the SRCS c files
list.  A semi-proper example is in tests/sys/kern/acct/Makefile where a
checked-in .c file has an #include on a generated .c file.  The
generated .c file should not be linked into the final PROG though since
it is #include'd.  The more proper way here is just to build/link it in
though without DPSRCS.  Another example is in sys/modules/linux/Makefile
where a shell script runs to parse a DPSRCS .o file that should not be
linked into the module.  Beyond those, the need for DPSRCS is largely
unneeded, redundant, and forces 'make depend' to be ran.  Generally,
these Makefiles should avoid the need for DPSRCS and define proper
dependencies for their files as well.

An example of an improper usage and why this matters is in usr.bin/netstat.
nl_defs.h was only in DPSRCS and so was not generated during 'make all',
but only during 'make depend'.  The files including it lacked proper
depenencies on it, which forced running 'make depend' to workaround that
bug.  The 'make depend' target should mostly be used for incremental build
help, not to produce a working build.  This specific example was broken in
the meta build until r287905 since it does not run 'make depend'.

The gnu/lib/libreadline/readline case is fine since bsd.lib.mk has 'OBJS:
SRCS:M*.h' when there is no .depend file.

Sponsored by:	EMC / Isilon Storage Division
MFC after:	1 week

291329 by bdrewery:
Remove redundant DPSRCS which were already in SRCS.

DPSRCS already contains all of SRCS.

MFC after:	1 week
Sponsored by:	EMC / Isilon Storage Division

291328 by lidl:
Have syslogd honor 'mesg' status when logging to users.

PR:		bin/196742
Submitted by:	jef at mail acme com
Approved by:	rpaulo (mentor)
Differential Revision:	https://reviews.freebsd.org/D4270



The end of the build log:

[...truncated 96563 lines...]
chmod +x nsdispatch_test.tmp
mv nsdispatch_test.tmp nsdispatch_test
--- protoent_test ---
echo '#! /usr/libexec/atf-sh' > protoent_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/net/t_protoent.sh >>protoent_test.tmp
chmod +x protoent_test.tmp
mv protoent_test.tmp protoent_test
--- servent_test ---
echo '#! /usr/libexec/atf-sh' > servent_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/net/t_servent.sh >>servent_test.tmp
chmod +x servent_test.tmp
mv servent_test.tmp servent_test
--- Kyuafile.auto ---
===> lib/libc/tests/regex (all)
--- h_regex ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.h_regex  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=h_regex )
--- all_subdir_sbin ---
--- tunefs.8.gz ---
gzip -cn /usr/src/sbin/tunefs/tunefs.8 > tunefs.8.gz
--- tunefs ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-arguments  -o tunefs tunefs.o   -lufs
--- all_subdir_lib ---
--- main.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/main.c -o main.o
--- all_subdir_sbin ---
--- all_subdir_umount ---
===> sbin/umount (all)
--- all_subdir_rescue ---
--- ifconfig_make ---
(cd /usr/src/rescue/rescue/../../sbin/ifconfig &&  make -DRESCUE CRUNCH_CFLAGS=-DRESCUE DIRPRFX=rescue/rescue/ifconfig/ depend && make -DRESCUE CRUNCH_CFLAGS=-DRESCUE DIRPRFX=rescue/rescue/ifconfig/ ifconfig.o af_link.o af_inet.o af_inet6.o af_nd6.o ifclone.o ifmac.o ifmedia.o iffib.o ifvlan.o ifvxlan.o ifgre.o ifgif.o sfp.o ifieee80211.o regdomain.o carp.o ifgroup.o ifpfsync.o ifbridge.o iflagg.o)
--- all_subdir_sbin ---
--- umount.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/sbin/umount/../mount -I/usr/src/sbin/umount/../../usr.sbin/rpc.umntall -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/sbin/umount/umount.c -o umount.o
--- all_subdir_rescue ---
--- .depend ---
rm -f .depend
CC='cc -B/usr/local/aarch64-freebsd/bin/' mkdep -f .depend -a    -DINET6 -DINET -DRESCUE -std=gnu99   /usr/src/sbin/ifconfig/ifconfig.c /usr/src/sbin/ifconfig/af_link.c /usr/src/sbin/ifconfig/af_inet.c /usr/src/sbin/ifconfig/af_inet6.c /usr/src/sbin/ifconfig/af_nd6.c /usr/src/sbin/ifconfig/ifclone.c /usr/src/sbin/ifconfig/ifmac.c /usr/src/sbin/ifconfig/ifmedia.c /usr/src/sbin/ifconfig/iffib.c /usr/src/sbin/ifconfig/ifvlan.c /usr/src/sbin/ifconfig/ifvxlan.c /usr/src/sbin/ifconfig/ifgre.c /usr/src/sbin/ifconfig/ifgif.c /usr/src/sbin/ifconfig/sfp.c /usr/src/sbin/ifconfig/ifieee80211.c /usr/src/sbin/ifconfig/regdomain.c /usr/src/sbin/ifconfig/carp.c /usr/src/sbin/ifconfig/ifgroup.c /usr/src/sbin/ifconfig/ifpfsync.c /usr/src/sbin/ifconfig/ifbridge.c /usr/src/sbin/ifconfig/iflagg.c
--- all_subdir_kerberos5 ---
--- store_mem.po ---
cc -B/usr/local/aarch64-freebsd/bin/ -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/store_mem.c -o store_mem.po
--- all_subdir_lib ---
--- split.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/split.c -o split.o
--- debug.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/debug.c -o debug.o
--- h_regex ---
--- all_subdir_sbin ---
--- vfslist.o ---
--- all_subdir_lib ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -I/usr/src/lib/libc/regex -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -o h_regex main.o split.o debug.o  
--- all_subdir_sbin ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/sbin/umount/../mount -I/usr/src/sbin/umount/../../usr.sbin/rpc.umntall -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/sbin/umount/../mount/vfslist.c -o vfslist.o
--- all_subdir_lib ---
--- exhaust_test ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.exhaust_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=exhaust_test )
--- all_subdir_sbin ---
--- mounttab.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/sbin/umount/../mount -I/usr/src/sbin/umount/../../usr.sbin/rpc.umntall -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/sbin/umount/../../usr.sbin/rpc.umntall/mounttab.c -o mounttab.o
--- all_subdir_lib ---
--- t_exhaust.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c -o t_exhaust.o
--- all_subdir_kerberos5 ---
--- ticket.po ---
cc -B/usr/local/aarch64-freebsd/bin/ -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/ticket.c -o ticket.po
--- all_subdir_sbin ---
--- umount.8.gz ---
gzip -cn /usr/src/sbin/umount/umount.8 > umount.8.gz
--- umount ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe -I/usr/src/sbin/umount/../mount -I/usr/src/sbin/umount/../../usr.sbin/rpc.umntall -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments  -o umount umount.o vfslist.o mounttab.o  
--- all_subdir_atm ---
===> sbin/atm (all)
--- all ---
===> sbin/atm/atmconfig (all)
--- all_subdir_lib ---
--- exhaust_test ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/arm64.aarch64/usr/src//lib/libnetbsd -o exhaust_test t_exhaust.o  -lnetbsd -lprivateatf-c
--- all_subdir_sbin ---
--- main.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/obj/arm64.aarch64/usr/src/sbin/atm/atmconfig -DWITH_BSNMP -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/sbin/atm/atmconfig/main.c -o main.o
--- all_subdir_lib ---
--- regex_att_test ---
(cd /usr/src/lib/libc/tests/regex &&  DEPENDFILE=.depend.regex_att_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/regex/Makefile _RECURSING_PROGS=  PROG=regex_att_test )
--- all_subdir_rescue ---
echo ifconfig: /usr/obj/arm64.aarch64/usr/src/tmp/usr/lib/libc.a /usr/obj/arm64.aarch64/usr/src/tmp/usr/lib/libm.a /usr/obj/arm64.aarch64/usr/src/tmp/usr/lib/libbsdxml.a /usr/obj/arm64.aarch64/usr/src/tmp/usr/lib/libsbuf.a >> .depend
--- all_subdir_lib ---
--- t_regex_att.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/contrib/netbsd-tests/lib/libc/regex/t_regex_att.c -o t_regex_att.o
--- all_subdir_rescue ---
--- ifconfig.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -DINET6 -DINET -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs -DRESCUE -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/sbin/ifconfig/ifconfig.c -o ifconfig.o
--- all_subdir_kerberos5 ---
/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/ticket.c:779:5: warning: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
        && abs(tmp_time - sec_now) > context->max_skew) {
           ^
/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/ticket.c:779:5: note: use function 'labs' instead
        && abs(tmp_time - sec_now) > context->max_skew) {
           ^~~
           labs
/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/ticket.c:783:11: warning: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Wabsolute-value]
                               abs(tmp_time - sec_now),
                               ^
/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/ticket.c:783:11: note: use function 'labs' instead
                               abs(tmp_time - sec_now),
                               ^~~
                               labs
2 warnings generated.

--- time.po ---
cc -B/usr/local/aarch64-freebsd/bin/ -pg  -O2 -pipe   -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/asn1  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/roken  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/ipc  -I/usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/base -I. -DHAVE_CONFIG_H -I/usr/src/kerberos5/lib/libkrb5/../../include -std=gnu99 -fstack-protector-strong   -Qunused-arguments -c /usr/src/kerberos5/lib/libkrb5/../../../crypto/heimdal/lib/krb5/time.c -o time.po
--- all_subdir_sbin ---
--- diag.o ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe   -I/usr/obj/arm64.aarch64/usr/src/sbin/atm/atmconfig -DWITH_BSNMP -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/sbin/atm/atmconfig/diag.c -o diag.o
--- all_subdir_lib ---
--- regex_att_test ---
cc -B/usr/local/aarch64-freebsd/bin/ -O2 -pipe -I/usr/src/contrib/netbsd-tests/lib/libc/regex -DREGEX_SPENCER -I/usr/src/lib/libnetbsd -I/usr/src/contrib/netbsd-tests -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments  -L/usr/obj/arm64.aarch64/usr/src//lib/libnetbsd -o regex_att_test t_regex_att.o  -lnetbsd -lutil -lprivateatf-c
--- regex_test ---
echo '#! /usr/libexec/atf-sh' > regex_test.tmp
cat /usr/src/contrib/netbsd-tests/lib/libc/regex/t_regex.sh >>regex_test.tmp
chmod +x regex_test.tmp
mv regex_test.tmp regex_test
--- Kyuafile.auto ---
===> lib/libc/tests/rpc (all)
--- rpc_test ---
(cd /usr/src/lib/libc/tests/rpc &&  DEPENDFILE=.depend.rpc_test  NO_SUBDIR=1 make -f /usr/src/lib/libc/tests/rpc/Makefile _RECURSING_PROGS=  PROG=rpc_test )
make[7]: make[7]: don't know how to make .o. Stop

make[7]: stopped in /usr/src/lib/libc/tests/rpc
*** [rpc_test] Error code 2

make[6]: stopped in /usr/src/lib/libc/tests/rpc
1 error

make[6]: stopped in /usr/src/lib/libc/tests/rpc
*** [all] Error code 2

make[5]: stopped in /usr/src/lib/libc/tests
1 error

make[5]: stopped in /usr/src/lib/libc/tests
*** [all] Error code 2

make[4]: stopped in /usr/src/lib/libc
1 error

make[4]: stopped in /usr/src/lib/libc
*** [all_subdir_libc] Error code 2

make[3]: stopped in /usr/src/lib
1 error

make[3]: stopped in /usr/src/lib
*** [all_subdir_lib] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_rescue ---
A failure has been detected in another branch of the parallel make

make[6]: stopped in /usr/src/sbin/ifconfig
*** [ifconfig_make] Error code 2

make[5]: stopped in /usr/obj/arm64.aarch64/usr/src/rescue/rescue
1 error

make[5]: stopped in /usr/obj/arm64.aarch64/usr/src/rescue/rescue
*** [objs] Error code 2

make[4]: stopped in /usr/src/rescue/rescue
1 error

make[4]: stopped in /usr/src/rescue/rescue
*** [all] Error code 2

make[3]: stopped in /usr/src/rescue
1 error

make[3]: stopped in /usr/src/rescue
*** [all_subdir_rescue] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_kerberos5 ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in /usr/src/kerberos5/lib/libkrb5
*** [all] Error code 2

make[4]: stopped in /usr/src/kerberos5/lib
1 error

make[4]: stopped in /usr/src/kerberos5/lib
*** [all_subdir_lib] Error code 2

make[3]: stopped in /usr/src/kerberos5
1 error

make[3]: stopped in /usr/src/kerberos5
*** [all_subdir_kerberos5] Error code 2

make[2]: stopped in /usr/src
--- all_subdir_sbin ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in /usr/src/sbin/atm/atmconfig
*** [all] Error code 2

make[4]: stopped in /usr/src/sbin/atm
1 error

make[4]: stopped in /usr/src/sbin/atm
*** [all_subdir_atm] Error code 2

make[3]: stopped in /usr/src/sbin
1 error

make[3]: stopped in /usr/src/sbin
*** [all_subdir_sbin] Error code 2

make[2]: stopped in /usr/src
4 errors

make[2]: stopped in /usr/src
*** [everything] Error code 2

make[1]: stopped in /usr/src
1 error

make[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_arm64] $ /bin/sh -xe /tmp/hudson3571669733526394053.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_arm64'
+ echo 'clean up jail FreeBSD_HEAD_arm64'
clean up jail FreeBSD_HEAD_arm64
+ sudo jail -r FreeBSD_HEAD_arm64
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::104:1 -alias
+ sudo umount FreeBSD_HEAD_arm64/usr/src
+ sudo umount FreeBSD_HEAD_arm64/dev
+ sudo rm -fr FreeBSD_HEAD_arm64
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_arm64
+ sudo rm -fr FreeBSD_HEAD_arm64
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1388469366.175.1448492072113.JavaMail.jenkins>