FreeBSD_HEAD_amd64_gcc - Build #1308 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1308/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1308/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1308/console Change summaries: 302222 by delphij: Fix build: explicitly reference the generated magic.h as dependency of mkmagic and point its location. Reported by: jenkins Pointy hat to: delphij MFC after: 2 weeks X-MFC-With: 302221 Approved by: re (kib) 302221 by delphij: MFV r302218: file 5.28. Relnotes: yes MFC after: 2 weeks Approved by: re (gjb) 302216 by kib: When sleeping waiting for either local or remote advisory lock, interrupt sleeps with the ERESTART on the suspension attempts. Otherwise, single-threading requests are deferred until the locks are granted for NFS files, which causes hangs. When retrying local registration of the remotely-granted adv lock, allow full suspension and check for suspension, for usual reasons. Reported by: markj, pho Reviewed by: jilles Tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302215 by kib: Rewrite sigdeferstop(9) and sigallowstop(9) into more flexible framework allowing to set the suspension policy for the dynamic block. Extend the currently possible policies of stopping on interruptible sleeps and ignoring such sleeps by two more: do not suspend at interruptible sleeps, but interrupt them with either EINTR or ERESTART. Reviewed by: jilles Tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302214 by nwhitehorn: Enter 64-bit mode as early as possible in the 64-bit PowerPC boot sequence. Most of the effect of setting MSR[SF] is that the CPU will stop ignoring the high 32 bits of registers containing addresses in load/store instructions. As such, the kernel was setting it only when it began to need access to high memory. MSR[SF] also affects the operation of some conditional instructions, however, and so setting it at late times could subtly break code at very early times. This fixes use of the FDT mode in loader, and FDT boot more generally, on 64-bit PowerPC systems. Hardware provided by: IBM LTC Approved by: re (kib) 302213 by dchagin: Fix a bug introduced in r283433. [1] Remove unneeded sockaddr conversion before kern_recvit() call as the from argument is used to record result (the source address of the received message) only. [2] In Linux the type of msg_namelen member of struct msghdr is signed but native msg_namelen has a unsigned type (socklen_t). So use the proper storage to fetch fromlen from userspace and than check the user supplied value and return EINVAL if it is less than 0 as a Linux do. Reported by: Thomas Mueller <tmueller at sysgo dot com> [1] Reviewed by: kib_at_ Approved by: re (gjb, kib) MFC after: 3 days 302212 by tuexen: This patch fixes two bugs related to the SCTP message recovery for messages which have been put on the send queue: * Do not report any DATA or I-DATA chunk padding. * Correctly deal with the I-DATA chunk header instead of the DATA chunk header when the I-DATA extension is used. Approved by: re (kib) MFC after: 1 week 302211 by novel: bhyve: improve memory size documentation A couple of minor memory size option related nits: - use common name 'memsize' (instead of 'max-size' or just 'size') - bhyve: update usage with memsize unit suffix, drop legacy "MB" unit - bhyveload: update usage with memsize unit suffix - bhyve(8): document default size - bhyveload(8): use memsize formatting like it's done in bhyve(8) Reviewed by: wblock, grehan Approved by: re (kib), wblock, grehan Differential Revision: https://reviews.freebsd.org/D6952 302210 by kib: Clean other flags in ncl_inactive, only. Add comment explaining why other flags should be unset. Suggested and reviewed by: rmacklem Sponsored by: The FreeBSD Foundation MFC after: 12 days Approved by: re (gjb) 302207 by tuexen: This patch fixes a locking bug when a send() call blocks on an SCTP socket and the association is aborted by the peer. Approved by: re (kib) MFC after: 1 week 302206 by asomers: Skip lastcomm and sa tests on unsupported architectures usr.bin/lastcom/tests/Makefile usr.sbin/sa/tests/Makefile Set allow_architectures appropriately. These tests depend on golden files that must be generated for each architecture, and haven't yet been generated for all of them. PR: 210566 PR: 204154 Reviewed by: ngie Approved by: re (gjb) MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6960 302204 by bz: Unbreak building of LINT kernels after r302163. Approved by: re (gjb) 302202 by adrian: [net80211] re-revert the ibss "is this local to the bss" patch. avos_at_ pointed out to me that this broke IBSS merging because the rest of the input path no longer was called for non-IBSS frames. I committed a change to not input non-IBSS frames, which stopped nodes being created for BSSes that weren't ours. Unfortunately thta stopped the input path for non-IBSS frames in general, so the management input path didn't work. So, I'll revert this until I come up with a better solution. (Hopefully before 11.) Reviewed by: avos Approved by: re (gjb) 302201 by kib: Revert r302194, there are issues with some applications after changing the return value, in particular console-kit-daemon. Reported by: Ivan Klymenko <fidaj_at_ukr.net> Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302198 by bapt: Remove reference to mroute6d in /etc/netstart. mroute6d has been removed in r298512. PR: 209405 Submitted by: Trond.Endrestol_at_ximalas.info Approved by: re (gjb) 302197 by tuexen: This patch fixes two bugs: * sctp46, tcp46, and udp46 sockets are displayed as such and not as sctp4 6, tcp4 6, udp4 6. This bug was introduced in http://svnweb.freebsd.org/base?view=revision&revision=187915 * For SCTP sockets, the the -4 and -6 flags are honoured as much as possible. This means IPv4 sockets are handled correctly, IPv6 sockets are displayed as sctp46, since it is currently not possible to distinguish between sctp6 and sctp46. Approved by: re (gjb) MFC after: 1 week 302196 by kib: Since VOP_INACTIVE() is not guaranteed to be called, all cleanups executed by inactive methods, must be repeated on reclaim. In particular, unlink and free sillyrenamed vnode both on inactivation and reclaim. Reported and tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302195 by kib: Do not clear robust lists pointers on fork. The forked child thread lists must be functional. Reported by: Daniel Engberg <daniel.engberg.lists_at_pyret.net>, Guy Yur <guyyur_at_gmail.com> Tested by: Guy Yur <guyyur_at_gmail.com> Sponsored by: The FreeBSD Foundation Approved by: re (gjb), including the KBI change 302194 by kib: For pthread_mutex_trylock() call on owned error-check or non-portable adaptive mutex, return EDEADLK as required by POSIX. The pthread_mutex_lock() is already compliant. Tested by: Guy Yur <guyyur_at_gmail.com> Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302191 by landonf: bhnd(4): Add devinfo allocation and child addition methods, modeled on pci_if. This allows bhnd(4) to manage per-device state (such as per-core pmu/clock refcounting) on behalf of subclass driver instances. Approved by: re (gjb), adrian (mentor) Differential Revision: https://reviews.freebsd.org/D6959 302190 by landonf: Replace mips/sentry5 with mips/broadcom The delta between SENTRY5 and BCM was already small due to BCM being derived from SENTRY5; re-integrating the two avoids the maintenance overhead of keeping them both in sync with bhnd(4) changes. - Re-integrate minor SENTRY5 deltas in bcm_machdep.c - Modify uart_cpu_chipc to allow specifying UART debug/console flags via kenv and device hints. - Switch SENTRY5 to std.broadcom - Enabled CFI flash support for SENTRY5 Reviewed by: Michael Zhilin <mizkha_at_gmail.com> (Broadcom MIPS support) Approved by: re (gjb), adrian (mentor) Differential Revision: https://reviews.freebsd.org/D6897 302189 by landonf: bhnd(4): Perform explicit chipc child enumeration. Replaces use of DEVICE_IDENTIFY with explicit enumeration of chipc child devices using the chipc capability structure. This is a precursor to PMU support, which requires more complex resource assignment handling than achievable with the static device name-based hints table. Reviewed by: Michael Zhilin <mizkha_at_gmail.com> (Broadcom MIPS support) Approved by: re (gjb), adrian (mentor) Differential Revision: https://reviews.freebsd.org/D6896 302186 by avos: urtwn: use m_get2() in Rx path. Replace m_getcl() with m_get2(); this fixes 'frame too long' messages for frames, which are longer than MCLBYTES (can be easily triggered when A-MSDU is used). Tested with RTL8188CUS (AP) and RTL8188EU (STA). Approved by: re (marius) 302185 by gjb: Update the release notes following r302182. Approved by: re (implicit, relnotes) Sponsored by: The FreeBSD Foundation 302184 by cperciva: Turn off MSI-X interrupt migration by default in EC2 instances; this works around a bug in older versions of Xen and unbreaks SR-IOV (aka. "EC2 Enhanced Networking"). Approved by: re (gjb) Thanks to: jhb, Jeremiah Lott 302183 by avos: urtwn: fix memory leak on device restart Free data buffers every time when device is stopped, not when it is detached; they are allocated at the initialization stage. How-to-reproduce: 1) ifconfig wlan0 create wlandev urtwn0 up 2) vmstat -m | grep USBdev 3) service netif restart 4) vmstat -m | grep USBdev Also, remove usbd_transfer_drain() call; it is already called by usbd_transfer_unsetup(). Tested with RTL8188CUS, STA mode. Approved by: re (marius) 302182 by gjb: Revert r301551, which added blacklistd(8) to sshd(8). This change has functional impact, and other concerns raised by the OpenSSH maintainer. Requested by: des PR: 210479 (related) Approved by: re (marius) Sponsored by: The FreeBSD Foundation 302181 by jhb: Add a tunable to disable migration of MSI-X interrupts. The new 'machdep.disable_msix_migration' tunable can be set to 1 to disable migration of MSI-X interrupts. Xen versions prior to 4.6.0 do not properly handle updates to MSI-X table entries after the initial write. In particular, the operation to unmask a table entry after updating it during migration is not propagated to the "real" table for passthrough devices causing the interrupt to remain masked. At least some systems in EC2 are affected by this bug when using SRIOV. The tunable can be set in loader.conf as a workaround. Submitted by: Jeremiah Lott <jlott_at_averesystems.com> (original patch) Approved by: re (marius) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D6947 302180 by asomers: Fix bitstring allocation on 32-bit platforms sys/sys/bitstring.h Fix a rounding calculation that could undersize a bitstring on 32-bit platforms. tests/sys/sys/bitstring_test.h Add a test for bitstr_size PR: 210260 Reported by: Mark Millard Reviewed by: gibbs Approved by: re (marius) Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6848 302179 by markj: gcore: Forward pending signals when detaching from the target. Otherwise gcore's ptrace attach operation can race with delivery of a signal and cause it to be lost. In collaboration with: Suraj Raju <sraju_at_isilon.com> Reviewed by: bdrewery Approved by: re (gjb, kib) MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division 302178 by bdrewery: Regenerate Approved by: re (implicit, r302177) 302177 by bdrewery: WITH_SYSTEM_COMPILER: Enable by default This improves buildworld, toolchain, kernel-toolchain, and universe targets. See r300354 or src.conf(5) for more details. Approved by: re (gjb) Relnotes: yes (r300354) Sponsored by: EMC / Isilon Storage Division 302176 by emaste: bsd.prog.mk: add "/usr/lib" to list of base system directories kgzldr.o is installed into /usr/lib but using bsd.prog.mk. Add /usr/lib to the base system directory list so that debug files are installed into /usr/lib/debug/usr/lib, not /usr/lib/.debug . Approved by: re (gjb) MFC after: 1 week Sponsored by: The FreeBSD Foundation 302175 by jhb: Add pci_get_max_payload() to fetch the PCI-express maximum payload size. Approved by: re (gjb) MFC after: 2 weeks Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D6951 302174 by asomers: Fix "sysctl vm.vmtotal" output on machines with > 2TB virtual memory sbin/sysctl/sysctl.c Fix integer overflows in printf format strings PR: 199673 Submitted by: Vitaly Magerya Reviewed by: cem Approved by: re (marius) MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6941 302173 by bz: The void isn't void. Unbreak sparc64 and powerpc builds. Approved by: re (gjb) Sponsored by: The FreeBSD Foundation MFC after: 12 days 302171 by hselasky: Resolve issue with libusb C++ header file inclusion. Approved by: re (marius) PR: 210509 MFC after: 1 week 302164 by gjb: Update head to ALPHA5 in preparation of new snapshot builds. Approved by: re (implicit) Sponsored by: The FreeBSD Foundation 302163 by imp: Rename CAM_NETFLIX_IOSCHED to CAM_IOSCHED_DYNAMIC to better reflect its nature. Approved by: re Reviewed By: jhb Differential Revision: https://reviews.freebsd.org/D6811 302162 by asomers: Fix gstat's interactive f and q commands curses and libedit don't play well together. After last year's libedit upgrade in head, they play even less well together. This change resets some curses settings after they get screwed up by libedit calls. Without it, gstat's interactive commands require an extra "enter", screw up the terminal on exit, and screw up the display if the user enters an invalid filter string. PR: 204852 Submitted by: Keith White Reviewed by: pfg Approved by: re (gjb) MFC after: 4 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D6934 302160 by bz: Proerply virtualize pfsync for bringup after pf is initialized and teardown of VNETs once pf(4) has been shut down. Properly split resources into VNET_SYS(UN)INITs and one time module loading. While here cover the INET parts in the uninit callpath with proper #ifdefs. Approved by: re (gjb) Obtained from: projects/vnet MFC after: 2 weeks Sponsored by: The FreeBSD Foundation 302159 by bz: Make sure pflog is attached after pf is initializaed so we can borrow pf's lock, and also make sure pflog goes after pf is gone in order to avoid callouts in VNETs to an already freed instance. Reported by: Ivan Klymenko, Johan Hendriks on current_at_ today Obtained from: projects/vnet Sponsored by: The FreeBSD Foundation MFC after: 13 days Approved by: re (gjb) 302157 by bz: PFSTATE_NOSYNC goes onto state_flags, not sync_state; this prevents: panic: pfsync_delete_state: unexpected sync state 8 Reviewed by: kp Approved by: re (gjb) MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6942 302156 by bz: Update pf(4) and pflog(4) to survive basic VNET testing, which includes proper virtualisation, teardown, avoiding use-after-free, race conditions, no longer creating a thread per VNET (which could easily be a couple of thousand threads), gracefully ignoring global events (e.g., eventhandlers) on teardown, clearing various globally cached pointers and checking them before use. Reviewed by: kp Approved by: re (gjb) Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D6924 302155 by bz: Try to avoid a 2nd conditional by re-writing the loop, pause, and escape clause another time. Submitted by: jhb Approved by: re (gjb) MFC after: 12 days 302154 by brooks: Fix two typos in r302152. Approved by: re (implicit) 302153 by np: Add spares to struct ifnet and socket for packet pacing and/or general use. Update comments regarding the spare fields in struct inpcb. Bump __FreeBSD_version for the changes to the size of the structures. Reviewed by: gnn_at_ Approved by: re_at_ (gjb_at_) Sponsored by: Chelsio Communications 302152 by brooks: Add an UPDATING entry for the pipe() -> pipe2() transition. Approved by: re (gjb) Sponsored by: DARPA, AFRL 302151 by jilles: posixshm: Fix lock leak when mac_posixshm_check_read rejects read. While reading the code, I noticed that shm_read() returns without unlocking foffset and rangelock if mac_posixshm_check_read() rejects the read. Reviewed by: kib, jhb, rwatson Approved by: re (gjb) MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D6927 302150 by ken: Switch geom_disk over to using a pool mutex. The GEOM disk d_mtx is only acquired on disk creation and destruction. It is a good candidate for replacement with a pool mutex. This eliminates the mutex initialization and teardown and the mutex and name variables themselves from struct disk. sys/geom/geom_disk.h: Take d_mtx and d_mtx_name out of struct disk. sys/geom/geom_disk.c: Use mtx_pool_lock() and mtx_pool_unlock() to guard the disk initialization state instead of a dedicated mutex. This allows removing the initialization and destruction of d_mtx. sys/sys/param.h: Bump __FreeBSD_version to 1100119 for the change to struct disk. Suggested by: jhb Sponsored by: Spectra Logic Approved by: re (gjb) 302149 by lidl: Add support for a /etc/defaults/vendor.conf override file Reviewed by: stas, imp Approved by: re (gjb) Differential Revision: https://reviews.freebsd.org/D6895 302148 by tuexen: Fix a bug in the handling of non-blocking SCTP 1-to-1 sockets. When using this code in the userland stack, it could result in a loop. This happened on iOS. However, I was not able to reproduce this when using the code in the kernel. Thanks to Eugen-Andrei Gavriloaie for reporting the issue and proving detailed information to find the root of the problem. Approved by: re (gjb) MFC after: 1 week 302147 by markj: Use M_NOWAIT when allocating memory for the ACPI wakeup handler. If the allocation attempt fails, we may otherwise VM_WAIT after a failed attempt to reclaim contiguous memory in the requested range. After r297466, this results in the thread going to sleep, causing a hang during boot. Reviewed by: jkim, kib Approved by: re (gjb) Sponsored by: EMC / Isilon Storage Division Differential Revision: https://reviews.freebsd.org/D6945 302146 by emaste: makeroot: zero out subsecond component of time= keywords They are currently not supported by makefs(1). PR: 194703 Reviewed by: brooks Approved by: re (gjb) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6925 302145 by emaste: bsdinstall: increase EFI partition size to 200MB A larger EFI file system size will facilitate multi-boot configurations and the installation other EFI applications like firmware update tools. 200MB matches OS X. Note that this changes only the partition size, not the file system that bsdinstall places there. We need to do both, but as the partition size is difficult to adjust later make this change for now so that at least systems installed with FreeBSD 11.0 have a partition layout with room to grow. Reviewed by: allanjude, imp Approved by: re (gjb) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6935 302141 by asomers: Raise the WARNS level in cddl/lib cddl/lib/libavl/Makefile cddl/lib/libctf/Makefile cddl/lib/libnvpair/Makefile cddl/lib/libumem/Makefile cddl/lib/libuutil/Makefile Increase WARNS to the highest working level for each of these libraries Approved by: re (gjb, hrs) MFC after: 4 weeks Sponsored by: Spectra Logic Corp 302140 by bz: In VNET TCP teardown Do not sleep unconditionally but only if we have any TCP connections left. Submitted by: zec Approved by: re (hrs) MFC after: 13 days 302139 by hselasky: Use correct Q-counter output array. Sponsored by: Mellanox Technologies Approved by: re (kib) MFC after: 3 days 302138 by tuexen: Don't consider the socket when processing an incoming ICMP/ICMP6 packet, which was triggered by an SCTP packet. Whether a socket exists, is just not relevant. Approved by: re (kib) MFC after: 1 week 302131 by kib: In vm_page_xunbusy_maybelocked(), add fast path for unbusy when no waiters exist, same as for vm_page_xunbusy(). If previous value of busy_lock was VPB_SINGLE_EXCLUSIVER, no waiters existed and wakeup is not needed. Move common code from vm_page_xunbusy_maybelocked() and vm_page_xunbusy_hard() to vm_page_xunbusy_locked(). Reviewed by: alc Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302130 by kib: Add a comment noting locking regime for vm_page_xunbusy(). Reviewed by: alc Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Approved by: re (gjb) 302125 by hselasky: Add support for USB streams to the LibUSB v1.0 API and update the libusb(3) manual page. Approved by: re (gjb) Requested by: swills MFC after: 1 week 302123 by avg: fix deadlock-prone code in getzfsvfs() getzfsvfs() called vfs_busy() in the waiting mode while having a hold on a pool (via a call to dmu_objset_hold). In other words, dp_config_rwlock was held in the shared mode while a thread could be sleeping in vfs_busy(). The pool's txg sync thread needs to take dp_config_rwlock in the exclusive mode for some actions, e.g., for executing sync tasks. If the sync thread gets blocked, then any thread waiting for its sync task to get executed is also blocked. Which, in turn, could mean that vfs_busy() will keep waiting indefinitely. The solution is to use vfs_ref() in the locked section and to call vfs_busy() only after dropping other locks. Note that a reference on a struct mount object does not prevent an associated zfsvfs_t object from being destroyed. So, we have to be careful to operate only on the struct mount object until we successfully vfs_busy it. Approved by: re (gjb) MFC after: 2 weeks 302117 by bz: Import a fix for and old security issue (CVE-2010-3830) in pf which was not relevant to FreeBSD as only root could open /dev/pf by default. With VIMAGE this is will longer be the case. As pf(4) starts to be supported with VNETs 3rd party users may open /dev/pf inside the virtual jail instance; thus we need to address this issue after all. While OpenBSD largely rewrote code parts for the fix [1], and it's unclear what Apple [3] did, import the minimal fix from NetBSD [2]. [1] http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/net/pf_ioctl.c.diff?r1=1.235&r2=1.236 [2] http://mail-index.netbsd.org/source-changes/2011/01/19/msg017518.html [3] https://support.apple.com/en-gb/HT202154 Obtained from: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dist/pf/net/pf_ioctl.c.diff?r1=1.42&r2=1.43&only_with_tag=MAIN MFC After: 2 weeks Approved by: re (gjb) Sponsored by: The FreeBSD Foundation Security: CVE-2010-3830 302110 by np: cxgbe(4): Merge netmap support from the ncxgbe/ncxl interfaces to the vcxgbe/vcxl interfaces and retire the 'n' interfaces. The main cxgbe/cxl interfaces and tunables related to them are not affected by any of this and will continue to operate as usual. The driver used to create an additional 'n' interface for every cxgbe/cxl interface if "device netmap" was in the kernel. The 'n' interface shared the wire with the main interface but was otherwise autonomous (with its own MAC address, etc.). It did not have normal tx/rx but had a specialized netmap-only data path. r291665 added another set of virtual interfaces (the 'v' interfaces) to the driver. These had normal tx/rx but no netmap support. This revision consolidates the features of both the interfaces into the 'v' interface which now has a normal data path, TOE support, and native netmap support. The 'v' interfaces need to be created explicitly with the hw.cxgbe.num_vis tunable. This means "device netmap" will not result in the automatic creation of any virtual interfaces. The following tunables can be used to override the default number of queues allocated for each 'v' interface. nofld* = 0 will disable TOE on the virtual interface and nnm* = 0 to will disable native netmap support. # number of normal NIC queues hw.cxgbe.ntxq_vi hw.cxgbe.nrxq_vi # number of TOE queues hw.cxgbe.nofldtxq_vi hw.cxgbe.nofldrxq_vi # number of netmap queues hw.cxgbe.nnmtxq_vi hw.cxgbe.nnmrxq_vi hw.cxgbe.nnm{t,r}xq{10,1}g tunables have been removed. --- tl;dr version --- The workflow for netmap on cxgbe starting with FreeBSD 11 is: 1) "device netmap" in the kernel config. 2) "hw.cxgbe.num_vis=2" in loader.conf. num_vis > 2 is ok too, you'll end up with multiple autonomous netmap-capable interfaces for every port. 3) "dmesg | grep vcxl | grep netmap" to verify that the interface has netmap queues. 4) Use any of the 'v' interfaces for netmap. pkt-gen -i vcxl<n>... . One major improvement is that the netmap interface has a normal data path as expected. 5) Just ignore the cxl interfaces if you want to use netmap only. No need to bring them up. The vcxl interfaces are completely independent and everything should just work. --------------------- Approved by: re_at_ (gjb_at_) Relnotes: Yes Sponsored by: Chelsio Communications 302106 by adrian: revert error commit from previous commit. my bad! Approved by: re (implicit) 302105 by adrian: [BHND/bcma] Add implementation of BHND_BUS_RESET_CORE function for BCMA This patch addes missing implementation of BHND_BUS_RESET_CORE function for BCMA. The reset procedure is very simple: enable reset mode, stop clocking, enable clocking & force clock gating, disable reset mode, stop clock gating. Tested: * (michael) Tested on ASUS RT-N53 for enabling/reset USB core Submitted by: Michael Zhilin <mizhka_at_gmail.com> Approved by: re (gjb) 302104 by adrian: [iwm] Use mbuf for large firmware commands, like OpenBSD does. We also need to consider the size of large firmware commands in iwm_alloc_tx_ring(), in the dma tag creation, when qid == IWM_MVM_CMD_QUEUE. The old code apparently only allocated a 2KB (MCLBYTES) sized buffer when it actually expected 4KB. Submitted by: Imre Vadasz <imre_at_vdsz.com> Approved by: re (gjb) Differential Revision: https://reviews.freebsd.org/D6824 302103 by adrian: [iwm] Add and use iwm_phy_db_free(), to plug phy_db memory leak. (Together with other iwm(4) memory leak fixes) Memory leakage in M_DEVBUF is now at ca. 2KB for each iwm(4) module load/unload cycle. Submitted by: Imre Vadasz <imre_at_vdsz.com> Approved by: re (gjb) Obtained from: DragonflyBSD git eaf551a1d464c643e98ce5781971dd32124e9af1 Differential Revision: https://reviews.freebsd.org/D6819 302102 by adrian: [iwm] Fix iwm_dma_contig_free(). dma->map is always NULL here. * When bus_dmamem_alloc is used, the bus_dmamap_t is usually set to NULL, so we were never actually freeing any dma memory allocations done via iwm_dma_contig_alloc(). So we should check dma->vaddr instead of dma->map here. * Also, the dmamap is actually supposed to be invalidated as part of bus_dmamem_free(), so bus_dmamap_destroy() is never needed here. Submitted by: Imre Vadasz <imre_at_vdsz.com> Approved by: re (gjb) Obtained from: DragonflyBSD git ef2b29a7ba6ca8a9d2c82ab591c0622227ff84cb 302101 by adrian: [iwm] Use vap->iv_myaddr instead of ic->ic_macaddr when vap != NULL. ic_macaddr is only used for the initial mac address provided by NVM. We should rather use vap->iv_myaddr when vap != NULL, to allow the MAC address to be changed later with ifconfig(8). Submitted by: Imre Vadasz <imre_at_vdsz.com> Reviewed by: avos Approved by: re (gjb) Obtained from: DragonflyBSD git 4aee7a78275676d22d14c04177bd0c9377d91478 Differential Revision: https://reviews.freebsd.org/D6743 302100 by adrian: [ath] fix comments! I keep asking myself "what do these fields mean" and so now I've clarified it for myself. Tested: * Reading the comments, going "a-ha!" a couple times. Approved by: re (gjb) 302099 by bz: Check the V_tcbinfo.ipi_count to hit 0 before doing the full TCP cleanup. That way timers can finish cleanly and we do not gamble with a DELAY(). Reviewed by: gnn, jtl Approved by: re (gjb) Obtained from: projects/vnet MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6923 302098 by bz: No longer mark TCP TW zone NO_FREE. Timewait code does a proper cleanup after itself. Reviewed by: gnn Approved by: re (gjb) Obtained from: projects/vnet MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6922 302097 by brooks: Regen post r302096 and implement svr4_pipe(). Approved by: re (implict, fixing build) Sponsored by: DARPA, AFRL 302096 by brooks: Declare a svr4 version of pipe() now that sys_pipe() is no more. Approved by: re (implicit, fixing build) Sponsored by: DARPA, AFRL 302095 by brooks: Generate syscall tables and update pipe() implementation after r302094. Mark the pipe() system call as COMPAT10. As of r302092 libc uses pipe2() with a zero flags value instead of pipe(). Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D6816 302094 by brooks: Mark the pipe() system call as COMPAT10. As of r302092 libc uses pipe2() with a zero flags value instead of pipe(). Commit with regenerated files and implementation to follow. Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D6816 302093 by brooks: Add support for COMPAT10 keywords in syscalls.master. Approved by: re (gjb) Sponsored by: DARPA, AFRL 302092 by brooks: Replace use of the pipe(2) system call with pipe2(2) with a zero flags value. This eliminates the need for machine dependant assembly wrappers for pipe(2). It also make passing an invalid address to pipe(2) return EFAULT rather than triggering a segfault. Document this behavior (which was already true for pipe2(2), but undocumented). Reviewed by: andrew Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D6815 302091 by markj: Do not complete pending gmirror BIOs when tearing down the provider. This will result in lock recursion and is more generally incorrect since the completion handlers will just reinsert the BIOs into the queue we're trying to drain. Reviewed by: imp, ngie Approved by: re (gjb) MFC after: 3 weeks Sponsored by: EMC / Isilon Storage Division Differential Revision: https://reviews.freebsd.org/D6908 302090 by bdrewery: Add AFLAGS.IMPSRC and document A[C]FLAGS Approved by: re (gjb) Sponsored by: EMC / Isilon Storage Division 302089 by kib: Fix a LOR between vnode locks and allproc_lock. There is an order between covered vnode lock and allproc_lock, which is established by calling mountcheckdirs() while owning the covered vnode lock. mountcheckdirs() iterates over the processes, protected by allproc_lock. This order is needed and seems to be not avoidable. On the other hand, various VM daemons also need to iterate over all processes, and they lock and unlock user maps. Since unlock of the user map may trigger processing of the deferred map entries, it causes vnode locking to occur. Or, when vmspace is freed, dropping references on the vnode-backed object also lock vnodes. We get reverted order comparing with the mount/unmount order. For VM daemons, there is no need to own allproc_lock while we operate on vmspaces. If the process is held, it serves as the marker for allproc list, which allows to continue the iteration. Add _PHOLD_LITE() macro, similar to _PHOLD(), but not causing swap-in of the kernel stacks. It is used instead of _PHOLD() in vm code, since e.g. calling faultin() in OOM conditions only exaggerates the problem. Modernize comment describing PHOLD. Reported by: lists_at_yamagi.org Tested by: pho (previous version) Reviewed by: jhb Sponsored by: The FreeBSD Foundation MFC after: 3 week Approved by: re (gjb) Differential revision: https://reviews.freebsd.org/D6679 302088 by bdrewery: WITH_META_MODE: Whitelist 'make kernel-toolchain' Approved by: re (blanket, META_MODE) Sponsored by: EMC / Isilon Storage Division 302087 by ken: Fix a bug that caused da(4) peripheral drivers to not fully go away after the underlying device went away. The problem was that callers who queue the GEOM resize provider event didn't check to make sure that the provider had not been withered. For the other equivalent case, g_new_provider_event(), the code checks to see whether the provider has been withered before queueing a g_new_provider_event() to the event thread. In some cases, a resize provider event would come through after the provider had been withered and all of the existing consumers had been orphaned. When the resize event triggered a taste of the provider, that would attach a new consumer to the now withered provider. The wither washer (g_wither_washer() would never be able to completely tear down the GEOM because of the consumers that were hanging around. The solution was to check the G_PF_WITHER provider flag before queueing the g_resize_provider_event(), and add an assert to g_resize_provider_event() to insure that it isn't called on a withered provider. sys/geom/geom_subr.c: In g_resize_provider(), don't try to continue if the G_PF_WITHER flag is set. In g_resize_provider_event(), add an assert that the G_PF_WITHER flag is not set. In g_access(), if a provider has an error, print out the name of the provider with the error. Sponsored by: Spectra Logic Approved by: re (marius) MFC after: 3 days 302086 by bz: Add more fields to if_debug.c for ddb(4) 'show ifnet'; resort some fields to match the order in the struct. Especially needed if_pf_kif to do pf(4) VNET debugging. Approved by: re (marius) Obtained from: projects/vnet MFC after: 1 week Sponsored by: The FreeBSD Foundation 302084 by andrew: Fix a race when the hardware has raised an exception with an unknown or uncategorised reason. We need to read the fault address register before enabling interrupts as the interrupt handler may cause this register to change. Approved by: re (marius, kib) Obtained from: ABT Systems Ltd Sponsored by: The FreeBSD Foundation 302083 by bz: After r302054 unloading an network interface driver on a kernel without VIMAGE support would dereference a NULL point unconditionally leading to a panic. Wrap the entire VIMAGE related code with #ifdefs rather than just the decision making part to save an extra bit of resources. Reported by: np Sponsored by: The FreeBSD Foundation MFC After: 13 days Approved by: re (marius) 302081 by ae: Fix the NULL pointer dereference for unresolved link layer entries in the netinet6 code. Copy link layer address only when corresponding entry has LLE_VALID flag. PR: 210379 Approved by: re (kib) 302080 by hselasky: Implement libusb_hotplug_register_callback() and libusb_hotplug_deregister_callback() for the LibUSB v1.0 API and update the libusb(3) manual page. Approved by: re (kib) Requested by: swills MFC after: 1 week 302076 by hselasky: Update the definition for number of scratch pages to match the latest version of the XHCI specification. Make sure the code can handle the maximum number of allowed scratch pages. Submitted by: Shichun_Ma_at_Dell.com Approved by: re (hrs) MFC after: 1 week 302075 by mm: MFV r302003,r302037,r302038,r302056: Update libarchive to 3.2.1 (bugfix and security fix release) List of vendor fixes: - fix exploitable heap overflow vulnerability in Rar decompression (vendor issue 719, CVE-2016-4302, TALOS-2016-0154) - fix exploitable stack based buffer overflow vulnebarility in mtree parse_device functionality (vendor PR 715, CVE-2016-4301, TALOS-2016-0153) - fix exploitable heap overflow vulnerability in 7-zip read_SubStreamsInfo (vendor issue 718, CVE-2016-4300, TALOS-2016-152) - fix integer overflow when computing location of volume descriptor (vendor issue 717) - fix buffer overflow when reading a crafred rar archive (vendor issue 521) - fix possible buffer overflow when reading ISO9660 archives on machines where sizeof(int) < sizeof(size_t) (vendor issue 711) - tar and cpio should fail if an input file named on the command line is missing (vendor issue 708) - fix incorrect writing of gnutar filenames that are exactly 512 bytes long (vendor issue 682) - allow tests to be run from paths that are equal or longer than 128 characters (vendor issue 657) - add memory allocation errors in archive_entry_xattr.c (vendor PR 603) - remove dead code in archive_entry_xattr_add_entry() (vendor PR 716) - fix broken decryption of ZIP files (vendor issue 553) - manpage style, typo and description fixes Post-3.2.1 vendor fixes: - fix typo in cpio version reporting (Vendor PR 725, 726) - fix argument range of ctype functions in libarchive_fe/passphrase.c - fix ctype use and avoid empty loop bodies in WARC reader MFC after: 1 week Security: CVE-2016-4300, CVE-2016-4301, CVE-2016-4302 Approved by: re (kib) The end of the build log: [...truncated 119480 lines...] ((u_int32_t*)block)[0] ^= iv[0]; ^ --- all_subdir_lib --- --- wcslen.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcslen.po -MTwcslen.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcslen.c -o wcslen.po --- wcsncasecmp.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsncasecmp.po -MTwcsncasecmp.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsncasecmp.c -o wcsncasecmp.po --- all_subdir_kerberos5 --- --- init_c.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.init_c.po -MTinit_c.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/init_c.c -o init_c.po --- all_subdir_lib --- --- wcsncat.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsncat.po -MTwcsncat.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsncat.c -o wcsncat.po --- wcsncmp.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsncmp.po -MTwcsncmp.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsncmp.c -o wcsncmp.po --- wcsncpy.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsncpy.po -MTwcsncpy.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsncpy.c -o wcsncpy.po --- all_subdir_rescue --- --- sha512c.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 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/gbde/../../sys -DRESCUE -MD -MF.depend.sha512c.o -MTsha512c.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/sbin/gbde/../../sys/crypto/sha2/sha512c.c -o sha512c.o --- all_subdir_lib --- --- wcsnlen.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsnlen.po -MTwcsnlen.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsnlen.c -o wcsnlen.po --- wcspbrk.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcspbrk.po -MTwcspbrk.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcspbrk.c -o wcspbrk.po --- all_subdir_kerberos5 --- --- kadm5_err.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.kadm5_err.po -MTkadm5_err.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c kadm5_err.c -o kadm5_err.po --- all_subdir_lib --- --- wcsrchr.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsrchr.po -MTwcsrchr.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsrchr.c -o wcsrchr.po --- all_subdir_kerberos5 --- --- marshall.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.marshall.po -MTmarshall.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/marshall.c -o marshall.po --- all_subdir_lib --- --- wcsspn.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsspn.po -MTwcsspn.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsspn.c -o wcsspn.po --- wcsstr.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsstr.po -MTwcsstr.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsstr.c -o wcsstr.po --- wcstok.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcstok.po -MTwcstok.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcstok.c -o wcstok.po --- wcswidth.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcswidth.po -MTwcswidth.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcswidth.c -o wcswidth.po --- all_subdir_rescue --- --- g_bde_lock.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 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/gbde/../../sys -DRESCUE -MD -MF.depend.g_bde_lock.o -MTg_bde_lock.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/sbin/gbde/../../sys/geom/bde/g_bde_lock.c -o g_bde_lock.o --- all_subdir_kerberos5 --- --- modify_c.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.modify_c.po -MTmodify_c.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/modify_c.c -o modify_c.po --- all_subdir_lib --- --- wcsxfrm.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wcsxfrm.po -MTwcsxfrm.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wcsxfrm.c -o wcsxfrm.po --- wmemchr.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wmemchr.po -MTwmemchr.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wmemchr.c -o wmemchr.po --- wmemcmp.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wmemcmp.po -MTwmemcmp.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wmemcmp.c -o wmemcmp.po --- all_subdir_kerberos5 --- --- privs_c.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.privs_c.po -MTprivs_c.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/privs_c.c -o privs_c.po --- all_subdir_lib --- --- wmemcpy.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wmemcpy.po -MTwmemcpy.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wmemcpy.c -o wmemcpy.po --- all_subdir_rescue --- --- template.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 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/gbde/../../sys -DRESCUE -MD -MF.depend.template.o -MTtemplate.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c template.c -o template.o --- geom_make --- (cd /builds/FreeBSD_HEAD_amd64_gcc/rescue/rescue/../../sbin/geom && /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -DRESCUE CRUNCH_CFLAGS=-DRESCUE MK_AUTO_OBJ=no DIRPRFX=rescue/rescue/geom/ depend && /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/make.amd64/bmake -DRESCUE CRUNCH_CFLAGS=-DRESCUE MK_AUTO_OBJ=no DIRPRFX=rescue/rescue/geom/ geom.o geom_label.o geom_part.o subr.o) --- all_subdir_lib --- --- wmemmove.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wmemmove.po -MTwmemmove.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wmemmove.c -o wmemmove.po --- all_subdir_rescue --- --- .depend --- echo geom.full: /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib/libc.a /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib/libgeom.a /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib/libutil.a >> .depend --- geom.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 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/geom -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/geom/core -DSTATIC_GEOM_CLASSES -DRESCUE -MD -MF.depend.geom.o -MTgeom.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/sbin/geom/core/geom.c -o geom.o --- all_subdir_kerberos5 --- --- randkey_c.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.randkey_c.po -MTrandkey_c.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/randkey_c.c -o randkey_c.po --- all_subdir_lib --- --- wmemset.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.wmemset.po -MTwmemset.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/string/wmemset.c -o wmemset.po --- __iconv.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.__iconv.po -MT__iconv.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/__iconv.c -o __iconv.po --- __iconv_free_list.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.__iconv_free_list.po -MT__iconv_free_list.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/__iconv_free_list.c -o __iconv_free_list.po --- all_subdir_kerberos5 --- --- rename_c.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.rename_c.po -MTrename_c.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/rename_c.c -o rename_c.po --- all_subdir_lib --- --- __iconv_get_list.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.__iconv_get_list.po -MT__iconv_get_list.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/__iconv_get_list.c -o __iconv_get_list.po --- iconv.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv.po -MTiconv.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv.c -o iconv.po --- iconv_canonicalize.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv_canonicalize.po -MTiconv_canonicalize.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv_canonicalize.c -o iconv_canonicalize.po --- all_subdir_kerberos5 --- --- send_recv.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../include -MD -MF.depend.send_recv.po -MTsend_recv.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5clnt/../../../crypto/heimdal/lib/kadm5/send_recv.c -o send_recv.po --- all_subdir_lib --- --- iconv_close.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv_close.po -MTiconv_close.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv_close.c -o iconv_close.po --- iconv_open.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv_open.po -MTiconv_open.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv_open.c -o iconv_open.po --- iconv_open_into.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv_open_into.po -MTiconv_open_into.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv_open_into.c -o iconv_open_into.po --- all_subdir_kerberos5 --- --- libkadm5clnt_p.a --- building profiled kadm5clnt library /usr/local/x86_64-freebsd/bin/ar -crD libkadm5clnt_p.a `NM='/usr/local/x86_64-freebsd/bin/nm' NMFLAGS='' lorder ad.po chpass_c.po client_glue.po common_glue.po create_c.po delete_c.po destroy_c.po flush_c.po free.po get_c.po get_princs_c.po init_c.po kadm5_err.po marshall.po modify_c.po privs_c.po randkey_c.po rename_c.po send_recv.po | tsort -q` --- all_subdir_lib --- --- iconv_set_relocation_prefix.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconv_set_relocation_prefix.po -MTiconv_set_relocation_prefix.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconv_set_relocation_prefix.c -o iconv_set_relocation_prefix.po --- all_subdir_kerberos5 --- /usr/local/x86_64-freebsd/bin/ranlib -D libkadm5clnt_p.a ===> kerberos5/lib/libkadm5srv (all) --- all_subdir_lib --- --- iconvctl.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconvctl.po -MTiconvctl.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconvctl.c -o iconvctl.po --- all_subdir_rescue --- --- geom_label.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 -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/geom -I/builds/FreeBSD_HEAD_amd64_gcc/sbin/geom/core -DSTATIC_GEOM_CLASSES -DRESCUE -MD -MF.depend.geom_label.o -MTgeom_label.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/sbin/geom/class/label/geom_label.c -o geom_label.o --- all_subdir_kerberos5 --- --- acl.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv/../../../crypto/heimdal/lib/kadm5 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv/../../../crypto/heimdal/lib/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv/../../../crypto/heimdal/lib/roken -I. -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv/../../include -MD -MF.depend.acl.po -MTacl.po -std=gnu99 -fstack-protector-strong -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -c /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv/../../../crypto/heimdal/lib/kadm5/acl.c -o acl.po --- all_subdir_lib --- --- iconvlist.po --- /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/ -pg -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.iconvlist.po -MTiconvlist.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/iconv/iconvlist.c -o iconvlist.po --- pipe.po --- /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/ -DPROF -O2 -pipe -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/gdtoa -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib/libc -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../libmd -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/jemalloc/include -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/stdtime -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -MD -MF.depend.pipe.po -MTpipe.po -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-error=unused-function -Wno-error=enum-compare -Wno-error=logical-not-parentheses -Wno-error=bool-compare -Wno-error=uninitialized -Wno-error=array-bounds -Wno-error=clobbered -Wno-error=cast-align -Wno-error=extra -Wno-error=attributes -Wno-error=inline -Wno-error=unused-but-set-variable -Wno-error=unused-value -Wno-error=strict-aliasing -Wno-error=address -I/builds/FreeBSD_HEAD_amd64_gcc/lib/libutil -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/amd64 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/x86 -I/builds/FreeBSD_HEAD_amd64_gcc/lib/msun/src -c /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64/sys/pipe.S -o pipe.po x86_64-portbld-freebsd10.1-gcc: error: /builds/FreeBSD_HEAD_amd64_gcc/lib/libc/amd64/sys/pipe.S: No such file or directory x86_64-portbld-freebsd10.1-gcc: fatal error: no input files compilation terminated. *** [pipe.po] Error code 1 bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libc 1 error bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libc --- all_subdir_rescue --- A failure has been detected in another branch of the parallel make bmake[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/sbin/geom *** [geom_make] Error code 2 bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/rescue/rescue 1 error bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/rescue/rescue *** [objs] Error code 2 bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/rescue/rescue 1 error bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/rescue/rescue *** [all] Error code 2 bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/rescue 1 error bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/rescue *** [all_subdir_rescue] Error code 2 bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc --- all_subdir_lib --- *** [all_subdir_lib/libc] Error code 2 bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib 1 error bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib *** [all_subdir_lib] Error code 2 bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc --- all_subdir_kerberos5 --- A failure has been detected in another branch of the parallel make bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib/libkadm5srv *** [all] Error code 2 bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib 1 error bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/kerberos5/lib *** [all_subdir_kerberos5/lib] Error code 2 bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/kerberos5 1 error bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/kerberos5 *** [all_subdir_kerberos5] Error code 2 bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc --- all_subdir_gnu --- A failure has been detected in another branch of the parallel make bmake[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff/src/roff/troff *** [all_subdir_gnu/usr.bin/groff/src/roff/troff] Error code 2 bmake[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff/src/roff 1 error bmake[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff/src/roff *** [all_subdir_gnu/usr.bin/groff/src/roff] Error code 2 bmake[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff/src 1 error bmake[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff/src *** [all_subdir_gnu/usr.bin/groff/src] Error code 2 bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff 1 error bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin/groff *** [all_subdir_gnu/usr.bin/groff] Error code 2 bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin 1 error bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu/usr.bin *** [all_subdir_gnu/usr.bin] Error code 2 bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu 1 error bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/gnu *** [all_subdir_gnu] Error code 2 bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc 4 errors bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc *** [everything] 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 - AnyReceived on Mon Jun 27 2016 - 15:25:36 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:06 UTC