FreeBSD_HEAD_amd64_gcc - Build #1274 - Failure

From: <jenkins-admin_at_FreeBSD.org>
Date: Sat, 4 Jun 2016 10:58:05 +0000 (GMT)
FreeBSD_HEAD_amd64_gcc - Build #1274 - Failure:

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

Change summaries:

301309 by arybchik:
sfxge(4): always be ready to receive batched events

When the low-latency firmware variant is running, it is reported as not
being capable of batching RX events, but it can still do so if the
FORCE_EV_MERGING flag is set on an RXQ.  Therefore we need to handle
batched RX events even if the capability isn't set.

If this bug is fixed in the firmware such that the capability is set
even when running the low-latency firmware variant, it will almost
always be reported so I don't think we lose much by removing the check.

Submitted by:   Mark Spender <mspender at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D6705

301308 by arybchik:
sfxge(4): add helper to compute timer quantum

This also adjusts the timer values used to match the Linux net
driver implementation:
a) non-zero time intervals should result in at least one quantum
b) timer load/reload values are only zero biased for Falcon/Siena

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D6704

301307 by adrian:
[ath] remove now unused parameters.

These will move to being part of the driver btcoex stuff I'm working
on, since the HAL doesn't know what to do with them.

301306 by andrew:
Use the UEFI event timer to update the time on arm and arm64. The current
code uses the GetTime function from the Runtime Service, however this has
been shown to not return a useable time on many arm64 UEFI implementations.

Reviewed by:	jhb, smh
Sponsored by:	ABT Systems Ltd
Differential Revision:	https://reviews.freebsd.org/D6709

301305 by adrian:
[ath_hal] add STOMP_AUDIO for AR9462/QCA9565.

Obtained from:	Linux ath9k

301304 by adrian:
[ath_hal] add placeholders for AUDIO stomp for Kite/Kiwi.

It just stomps all; which is enough for some testing.

301303 by adrian:
[ath_hal] add BTCOEX_STOMP_AUDIO; delete unused methods.

301302 by adrian:
[run] fix TSF locking in RX radiotap.

Submitted by:	Imre Vadasz <imre_at_vdsz.com>

301300 by cem:
ioat(4): Always log capabilities on attach

Different, relatively recent Intel Xeon hardware support radically different
features.  E.g., BDX support CRC32 while BDX-DE does not.

Reviewed by:	rpokala (spiritually)
Sponsored by:	EMC / Isilon Storage Division

301297 by cem:
ioat(4): Export the number of available channels

Sponsored by:	EMC / Isilon Storage Division

301296 by cem:
ioat(4): Make channel indices unsigned

Sponsored by:	EMC / Isilon Storage Division

301295 by cy:
Enable daily_ntpd_leapfile_enable by default. Otherwise an expired
leapfile will be ignored and ntpd will behave as if it has no
leapfile.

While here, remove an extraneous blank line.

Suggested by:	ache
MFC after:	1 week

301293 by mav:
When negotiating NTB_SB01BASE_LOCKUP workaround, don't try to limit the
BAR size to 1MB.  According to Xeon v3 specifications and my tests, that
size register is write-once and so not writeable after BIOS written it.

Instead of that, make the code work with BAR of any sufficient size,
properly calculating offset within its base.  It also simplifies the code.

Discussed with:	cem
MFC after:	2 weeks
Sponsored by:	iXsystems, Inc.

301292 by mav:
When negotiating MSIX parameters, give other head time to see our
NTB_MSIX_RECEIVED status, before making upper layers overwrite it.

This is not completely perfect, but now it works better then before.

MFC after:	2 weeks
Sponsored by:	iXsystems, Inc.

301291 by pfg:
libiberty: prevent integer overflow.

Take care of very old bug leading to heap-buffer overflow by
processing certain file headers via bfd binary.

PR:		200888
Obtained from:	OpenBSD
MFC after:	2 weeks

301290 by bdrewery:
WITH_META_MODE: Avoid "building" .depend if there is nothing to do.

This avoids 'Building /path/.depend' when it will not actually produce a
file.

Sponsored by:	EMC / Isilon Storage Division

301289 by pfg:
MFV r300961:
one-true-awk: replace 0 with NULL for pointers

Also remove a redundant semicolon.

301288 by pfg:
tegra124: use roundup/rounddown macros from <sys/param.h>.

301287 by bdrewery:
WITHOUT_CROSS_COMPILER: Fix installworld.

Since no WORLDTMP/usr/bin/cc is created, cc cannot be found
during installworld time since /usr/bin is not in the PATH.
Pass along the known compiler metadata to allow installworld
to work.  The same fix was used for WITH_SYSTEM_COMPILER.

A better route would be to store a cookie in buildworld
containing this compiler metadata and then using that
at install time, rather than rerunning cc.

Reported by:	Mark Millard
Sponsored by:	EMC / Isilon Storage Division

301286 by bdrewery:
WITH_CCACHE_BUILD + WITH_META_MODE: Ignore ccache changes.

Ccache will not affect the output of the objects, so just ignore it for
meta mode handling.  This avoids having everything rebuild if ccache is
updated.

Sponsored by:	EMC / Isilon Storage Division

301285 by bdrewery:
WITH_META_MODE: Don't expect meta files for side-effect generated files.

The first file in these lists will generate everything else so only
it should be getting a .meta file.  With bmake's missing=yes meta
feature these would otherwise cause a rebuild without the
.NOMETA hint.

Sponsored by:	EMC / Isilon Storage Division

301284 by bdrewery:
Revert r301079.

This breaks cross-building with WITH_META_MODE since it will rebuild
'build-tools' during the 'everything' phase.

A more proper fix is coming to bmake to implicitly require .META unless
.NOMETA (and other restrictions) are in place.

301283 by bdrewery:
DIRDEPS_BUILD: Connect new directories and update dependencies.

Sponsored by:	EMC / Isilon Storage Division

301282 by zbb:
Use proper interface for FDT parsing and memory mapping in CESA

Improvements after r301220.
Bus space methods are not called so simple pmap_mapdev will suffice.
Use OF_getencprop to get buffer with already converted endianess.

Pointed out by: ian
Submitted by:   Michal Stanek <mst_at_semihalf.com>
Obtained from:  Semihalf

301281 by zbb:
Use nitems() macro instead of re-inventing it

Fixed after r301221.

Pointed out by:	oshogbo
Submitted by:	Michal Stanek <mst_at_semihalf.com>
Obtained from:	Semihalf

301280 by garga:
One of the already implemented options in release/Makefile is NOSRC. When
it's defined, installation image is shipped without source distribution
(src.txz)

Add the hability of defining NOSRC in release.conf and pass it to
'make release' argument

Approved by:	gjb
Sponsored by:	Rubicon Communications (Netgate)
Differential Revision:	https://reviews.freebsd.org/D6710

301279 by kib:
Trim some spaces to record correct commit message for the r301278.

Reduce number of iterations used for calibrating ICR read loop.  The
new number of iteration still gives the same ICR latency as before,
tested on Intel SandyBridge and Haswell machines, and on AMD.  But it
significantly reduces the unneeded pause on boot in some VMs, from ~10
secs to less then 1 sec.  It was reported to occur in bhyve on AMD
host.

Reported and tested by:	avg
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week

301278 by kib:
diff --git a/sys/x86/x86/local_apic.c b/sys/x86/x86/local_apic.c
index d8bda77..bb15df0 100644
--- a/sys/x86/x86/local_apic.c
+++ b/sys/x86/x86/local_apic.c
_at__at_ -511,7 +511,7 _at__at_ native_lapic_init(vm_paddr_t addr)
 	}

 #ifdef SMP
-#define	LOOPS	1000000
+#define	LOOPS	100000
 	/*
 	 * Calibrate the busy loop waiting for IPI ack in xAPIC mode.
 	 * lapic_ipi_wait_mult contains the number of iterations which

301277 by dim:
For clang, move the definition of FREEBSD_CC_VERSION into its own header
file, lib/clang/freebsd_cc_version.h, instead of reusing Version.inc.
The header is only included from one .cpp file in the clang tree.

This minimizes the number of .cpp files that need to be rebuilt if the
version is bumped.

Discussed with:	bdrewery

301276 by pfg:
nxge(4): Remove useless self-assignment.

Apparently the original implementation brought a self-assignment
to work around some bogus lint issue that is not relevant anymore.

CID:	1347070

301275 by avg:
zfs: set VROOT / VV_ROOT consistently and in a single place

This is a followup to r300131.

A filesystem's root vnode can be reached not only through VSF_ROOT, but
by other means as well.  For example, via a dot-dot lookup.
Also, a root vnode can get reclaimed and then re-created.  For these
reasons it was insufficient to clear VV_ROOT flag from a root vnode of a
snapshot mounted under .zfs in zfsctl_snapdir_lookup().

So, now we set the flag in zfs_znode_sa_init() only if a vnode
represent a root of a filesystem or a standalone snapshot.
That is, the flag is not set for snapshots mounted under .zfs.

MFC after:	2 weeks

301274 by vangyzen:
Improve errno documentation in pthread_create(3) and thr_new(2)

Add some missing errno values to thr_new(2) and pthread_create(3).
In particular, EDEADLK was not documented in the latter.
While I'm here, improve some English and cross-references.

Reviewed by:	kib
Sponsored by:	Dell Inc.
Differential Revision:	https://reviews.freebsd.org/D6663

301273 by avg:
zfs_root: fix a potential root vnode reference leak

It could happen in an unlikely case that we fail to lock the root vnode
with requested flags (which appear to never include LK_NOWAIT).

MFC after:	1 week

301271 by avg:
openssl: change SHLIB_VERSION_NUMBER to reflect the reality

Some consumers actually use this definition.

We probably need some procedure to ensure that SHLIB_VERSION_NUMBER
is updated whenever we change the library version in
secure/lib/libssl/Makefile.

301270 by bz:
Introduce a per-VNET flag to enable/disable netisr prcessing on that VNET.
Add accessor functions to toggle the state per VNET.
The base system (vnet0) will always enable itself with the normal
registration. We will share the registered protocol handlers in all
VNETs minimising duplication and management.
Upon disabling netisr processing for a VNET drain the netisr queue from
packets for that VNET.

Update netisr consumers to (de)register on a per-VNET start/teardown using
VNET_SYS(UN)INIT functionality.

The change should be transparent for non-VIMAGE kernels.

Reviewed by:	gnn (, hiren)
Obtained from:	projects/vnet
MFC after:	2 weeks
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D6691

301269 by royger:
xen-blkback: fix error path on failed attach

The current error path in case of failure during attach/initialization is
not correct and leaves blkback in a stuck state. This is due to blkback
waiting for blkfront to switch to state XenbusStateClosed, but if blkfront
never attached (because the guest is not even started) it cannot possibly
make it to that state.

Instead just wait for the frontend to be in a state different than
XenbusStateConnected in order to proceed with the shutdown. Also, it is
wrong to call xbb_detach directly because it destroys the lock which can
still be used by xbb_frontend_changed.

Sponsored by: Citrix Systems R&D

301268 by royger:
blkback: add support for hotplug scripts

Hotplug scripts are needed in order to use fancy disk configurations in xl,
like iSCSI disks. The job of hotplug scripts is to locally attach the disk
and present it to blkback as a block device or a regular file.

This change introduces a new xenstore node in the blkback hierarchy, called
"physical-device-path". This is a straigh replacement for the "params" node,
which was used before.

Hotplug scripts will need to read the "params" node, perform whatever
actions are necessary and then write the "physical-device-path" node. The
hotplug script is also in charge of detaching the disk once the domain has
been shutdown.

Sponsored by: Citrix Systems R&D

301267 by skra:
Define irq variable only in the block where used.

301266 by skra:
Postpone allocation of IRQ resource to the time when interrupt
controller devices are attached. This has already been done for
bus_setup_intr().

There was no doubt that if someone wants to setup an interrupt,
corresponding interrupt controller device must already be attached.
However, the same must be valid for allocation of an interrupt resource
unless the allocation is done blindly, without any information that
such interrupt even exists. While it was done this blind way before,
it won't be possible after next INTRNG change.



The end of the build log:

[...truncated 54815 lines...]
--- includes_subdir_usr.sbin/rwhod ---
===> usr.sbin/rwhod (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_delta ---
===> usr.bin/svn/lib/libsvn_delta (includes)
--- includes_subdir_usr.bin/svn/svndumpfilter ---
===> usr.bin/svn/svndumpfilter (includes)
--- includes_subdir_usr.bin/svn/svnfsfs ---
===> usr.bin/svn/svnfsfs (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/etcupdate ---
===> usr.sbin/etcupdate (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_diff ---
===> usr.bin/svn/lib/libsvn_diff (includes)
--- includes_subdir_usr.bin/svn/svnlook ---
===> usr.bin/svn/svnlook (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/etcupdate/tests ---
===> usr.sbin/etcupdate/tests (includes)
--- includes_subdir_usr.sbin/editmap ---
===> usr.sbin/editmap (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_fs ---
===> usr.bin/svn/lib/libsvn_fs (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/mailstats ---
===> usr.sbin/mailstats (includes)
--- includes_subdir_usr.sbin/makemap ---
===> usr.sbin/makemap (includes)
--- includes_subdir_usr.sbin/praliases ---
===> usr.sbin/praliases (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib/libsvn_fs_fs ---
===> usr.bin/svn/lib/libsvn_fs_fs (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/sendmail ---
===> usr.sbin/sendmail (includes)
--- includes_subdir_usr.sbin/tcpdchk ---
===> usr.sbin/tcpdchk (includes)
--- includes_subdir_usr.sbin/tcpdmatch ---
===> usr.sbin/tcpdmatch (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib/libsvn_fs_util ---
===> usr.bin/svn/lib/libsvn_fs_util (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/timed ---
===> usr.sbin/timed (includes)
--- includes_subdir_usr.sbin/config ---
===> usr.sbin/config (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib/libsvn_fs_x ---
===> usr.bin/svn/lib/libsvn_fs_x (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/timed ---
--- includes_subdir_usr.sbin/timed/timed ---
===> usr.sbin/timed/timed (includes)
--- includes_subdir_usr.sbin/timed/timedc ---
===> usr.sbin/timed/timedc (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib/libsvn_ra ---
===> usr.bin/svn/lib/libsvn_ra (includes)
--- includes_subdir_usr.bin/svn/svnserve ---
===> usr.bin/svn/svnserve (includes)
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_ra_local ---
===> usr.bin/svn/lib/libsvn_ra_local (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/crunch ---
===> usr.sbin/crunch (includes)
--- includes_subdir_usr.sbin/crunch/crunchgen ---
===> usr.sbin/crunch/crunchgen (includes)
--- includes_subdir_usr.sbin/unbound ---
===> usr.sbin/unbound (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/svnsync ---
===> usr.bin/svn/svnsync (includes)
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_ra_serf ---
===> usr.bin/svn/lib/libsvn_ra_serf (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/unbound/daemon ---
===> usr.sbin/unbound/daemon (includes)
--- includes_subdir_usr.sbin/crunch ---
--- includes_subdir_usr.sbin/crunch/crunchide ---
===> usr.sbin/crunch/crunchide (includes)
--- includes_subdir_usr.sbin/unbound ---
--- includes_subdir_usr.sbin/unbound/anchor ---
===> usr.sbin/unbound/anchor (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib/libsvn_ra_svn ---
===> usr.bin/svn/lib/libsvn_ra_svn (includes)
--- includes_subdir_usr.bin/svn/lib/libsvn_repos ---
===> usr.bin/svn/lib/libsvn_repos (includes)
--- includes_subdir_usr.bin/svn/lib/libsvn_subr ---
===> usr.bin/svn/lib/libsvn_subr (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/unbound/checkconf ---
===> usr.sbin/unbound/checkconf (includes)
--- includes_subdir_usr.sbin/uathload ---
===> usr.sbin/uathload (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/svnversion ---
===> usr.bin/svn/svnversion (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/unbound ---
--- includes_subdir_usr.sbin/unbound/control ---
===> usr.sbin/unbound/control (includes)
--- includes_subdir_usr.sbin/unbound/local-setup ---
===> usr.sbin/unbound/local-setup (includes)
--- includes_subdir_usr.bin ---
--- includes_subdir_usr.bin/svn/lib ---
--- includes_subdir_usr.bin/svn/lib/libsvn_wc ---
===> usr.bin/svn/lib/libsvn_wc (includes)
--- includes_subdir_usr.bin/svn/svnmucc ---
===> usr.bin/svn/svnmucc (includes)
--- includes_subdir_usr.bin/svn/svnrdump ---
===> usr.bin/svn/svnrdump (includes)
--- includes_subdir_usr.sbin ---
--- includes_subdir_usr.sbin/uhsoctl ---
===> usr.sbin/uhsoctl (includes)
--- includes_subdir_usr.sbin/usbconfig ---
===> usr.sbin/usbconfig (includes)
--- includes_subdir_usr.sbin/usbdump ---
===> usr.sbin/usbdump (includes)
--- includes_subdir_usr.sbin/ac ---
===> usr.sbin/ac (includes)
--- includes_subdir_usr.sbin/lastlogin ---
===> usr.sbin/lastlogin (includes)
--- includes_subdir_usr.sbin/utx ---
===> usr.sbin/utx (includes)
--- includes_subdir_usr.sbin/ancontrol ---
===> usr.sbin/ancontrol (includes)
--- includes_subdir_usr.sbin/wlandebug ---
===> usr.sbin/wlandebug (includes)
--- includes_subdir_usr.sbin/wpa ---
===> usr.sbin/wpa (includes)
--- includes_subdir_usr.sbin/tests ---
===> usr.sbin/tests (includes)
--- includes_subdir_usr.sbin/wpa ---
--- includes_subdir_usr.sbin/wpa/wpa_supplicant ---
===> usr.sbin/wpa/wpa_supplicant (includes)
--- includes_subdir_usr.sbin/wpa/wpa_cli ---
===> usr.sbin/wpa/wpa_cli (includes)
--- includes_subdir_usr.sbin/wpa/wpa_passphrase ---
===> usr.sbin/wpa/wpa_passphrase (includes)
--- includes_subdir_usr.sbin/wpa/hostapd ---
===> usr.sbin/wpa/hostapd (includes)
--- includes_subdir_usr.sbin/wpa/hostapd_cli ---
===> usr.sbin/wpa/hostapd_cli (includes)
--- includes_subdir_usr.sbin/wpa/ndis_events ---
===> usr.sbin/wpa/ndis_events (includes)
--- _libraries ---
--------------------------------------------------------------
>>> stage 4.2: building libraries
--------------------------------------------------------------
cd /builds/FreeBSD_HEAD_amd64_gcc;  CROSS_TOOLCHAIN="amd64-gcc" COMPILER_VERSION=30401  COMPILER_TYPE=clang  COMPILER_FREEBSD_VERSION=1000001 MAKEOBJDIRPREFIX=/builds/FreeBSD_HEAD_amd64_gcc/obj  MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE= GROFF_BIN_PATH=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/usr/bin  GROFF_FONT_PATH=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/usr/share/groff_font  GROFF_TMAC_PATH=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/usr/share/tmac CC="/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/" CXX="/usr/local/bin/x86_64-portbld-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include/c++/v1 -std=c++11  -nostdinc++ -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/../lib/libc++ -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/"  CPP="/usr/local/bin/x86_64-portbld-freebsd10.1-cpp -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/"  AS="/usr/local/x86_64-freebsd/bin/as" AR="/usr/local/x86_64-freebsd/bin/ar" LD="/usr/local/x86_64-freebsd/bin/ld" NM=/usr/local/x86_64-freebsd/bin/nm  OBJDUMP=/usr/local/x86_64-freebsd/bin/objdump OBJCOPY="/usr/local/x86_64-freebsd/bin/objcopy"  RANLIB=/usr/local/x86_64-freebsd/bin/ranlib STRINGS=/usr/local/x86_64-freebsd/bin/  SIZE="/usr/local/x86_64-freebsd/bin/size"  INSTALL="sh /builds/FreeBSD_HEAD_amd64_gcc/tools/install.sh"  PATH=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/usr/sbin:/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/usr/bin:/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/legacy/bin:/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/sbin:/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/bin:/sbin:/bin:/usr/sbin:/usr/bin /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake  -f Makefile.inc1 DESTDIR=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no  MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=yes libraries
--- libraries ---
cd /builds/FreeBSD_HEAD_amd64_gcc;  /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -f Makefile.inc1 _prereq_libs;  /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -f Makefile.inc1 _startup_libs;  /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -f Makefile.inc1 _prebuild_libs;  /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -f Makefile.inc1 _generic_libs
--- gnu/lib/libssp/libssp_nonshared__PL ---
--- gnu/lib/libgcc__PL ---
--- lib/libcompiler_rt__PL ---
--- gnu/lib/libssp/libssp_nonshared__PL ---
===> gnu/lib/libssp/libssp_nonshared (obj,all,install)
--- gnu/lib/libgcc__PL ---
===> gnu/lib/libgcc (obj,all,install)
--- lib/libcompiler_rt__PL ---
===> lib/libcompiler_rt (obj,all,install)
--- gnu/lib/libssp/libssp_nonshared__PL ---
--- obj ---
--- gnu/lib/libgcc__PL ---
--- obj ---
--- gnu/lib/libssp/libssp_nonshared__PL ---
--- ssp-local.o ---
/usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp -B/usr/local/x86_64-freebsd/bin/  -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared/..  -I/builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared/../../../../contrib/gcclibs/libssp  -I/builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared/../../../../contrib/gcclibs/include -fPIC -DPIC -fvisibility=hidden   -MD  -MF.depend.ssp-local.o -MTssp-local.o -std=gnu99 -fstack-protector    -Qunused-arguments  -c /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared/../../../../contrib/gcclibs/libssp/ssp-local.c -o ssp-local.o
--- gnu/lib/libgcc__PL ---
--- tm.h ---
--- tconfig.h ---
--- tm.h ---
TARGET_CPU_DEFAULT=""  HEADERS="options.h i386/biarch64.h i386/i386.h i386/unix.h i386/att.h dbxelf.h elfos-undef.h elfos.h freebsd-native.h freebsd-spec.h freebsd.h i386/x86-64.h i386/freebsd.h i386/freebsd64.h defaults.h"  DEFINES=""  /bin/sh /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/mkconfig.sh tm.h
--- tconfig.h ---
TARGET_CPU_DEFAULT=""  HEADERS="auto-host.h ansidecl.h"  DEFINES="USED_FOR_TARGET"  /bin/sh /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/mkconfig.sh tconfig.h
--- lib/libcompiler_rt__PL ---
--- obj ---
--- gnu/lib/libgcc__PL ---
--- tm.h ---
echo '#define EXTRA_MODES_FILE "i386/i386-modes.def"' >> tm.h
--- optionlist ---
--- gthr-default.h ---
--- optionlist ---
LC_ALL=C awk -f /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/opt-gather.awk /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/c.opt /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/common.opt /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/config/i386/i386.opt > optionlist
--- gthr-default.h ---
ln -sf /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/gthr-posix.h gthr-default.h
--- unwind.h ---
ln -sf /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc/../../../contrib/gcc/unwind-generic.h unwind.h
--- gnu/lib/libssp/libssp_nonshared__PL ---
x86_64-portbld-freebsd10.1-gcc: error: unrecognized command line option '-Qunused-arguments'
*** [ssp-local.o] Error code 1

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared
1 error

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libssp/libssp_nonshared
*** [gnu/lib/libssp/libssp_nonshared__PL] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
--- lib/libcompiler_rt__PL ---
A failure has been detected in another branch of the parallel make

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libcompiler_rt
*** [lib/libcompiler_rt__PL] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
--- gnu/lib/libgcc__PL ---
A failure has been detected in another branch of the parallel make

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/lib/libgcc
*** [gnu/lib/libgcc__PL] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
3 errors

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [libraries] Error code 2

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [_libraries] Error code 2

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [buildworld] Error code 2

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
Build step 'Execute shell' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
IRC notifier plugin: Sending notification to: #freebsd-commits
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Received on Sat Jun 04 2016 - 08:58:12 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:05 UTC