See <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/611/changes> Changes: [ken] Fix a problem with async notifications in the mpr(4) driver. This problem only occurs on versions of FreeBSD prior to the recent CAM locking changes. (i.e. stable/9 and older versions of stable/10) This change should be a no-op for head and stable/10. If a path isn't specified, xpt_register_async() will create a fully wildcarded path and acquire a lock (the XPT lock in older versions, and via xpt_path_lock() in newer versions) to call xpt_action() for the XPT_SASYNC_CB CCB. It will then drop the lock and if the requested event includes AC_FOUND_DEVICE or AC_PATH_REGISTERED, it will get the caller up to date with any device arrivals or path registrations. The issue is that before the locking changes, each SIM lock would get acquired in turn during the EDT tree traversal process. If a path is specified for xpt_register_async(), it won't acquire and drop its own lock, but instead expects the caller to hold its own SIM lock. That works for the first part of xpt_register_async(), but causes a recursive lock acquisition once the EDT traversal happens and it comes to the SIM in question. And it isn't possible to call xpt_action() without holding a SIM lock. The locking changes fix this by using the XPT topology lock for EDT traversal, so it is no longer an issue to hold the SIM lock while calling xpt_register_async(). The solution for FreeBSD versions before the locking changes is to request notification of all device arrivals (so we pass a NULL path into xpt_register_async()) and then filter out the arrivals that are not ours. MFC After: 3 days Sponsored by: Spectra Logic Corporation [imp] Remove support for WITHOUT_BMAKE. bmake is now the only make that can build world, so it is the only make we build or install. fmake is still in the tree, but disconnected, and upgrades from older systems that still have bmake has not been removed, but its state has not been tested (it should work given how minimal the work to upgrade to bmake is). [imp] Document src.opts.mk changes and the decoupling of /etc/src.conf from anything but the source tree. [imp] Use src.opts.mk in preference to bsd.own.mk except where we need stuff from the latter. [imp] Move the /usr/src specific options to src.opts.mk. Move inclusion of /etc/src.conf to this file as well. Now, it will only affect builds of /usr/src and not others that use the bsd.*.mk files. Specifically don't install src.opts.mk so we can catch when it 'leaks' into bsd.*.mk again and have there be errors when this happens. Future commits will move to including src.opts.mk instead of bsd.own.mk when all that's needed is one of the MK_FOO options from src.opts.mk. Future options should be placed here, unless they directly affect a bsd.*.mk file, in which case they should be placed in bsd.opts.mk. [alc] Prior to r254304, a separate function, vm_pageout_page_stats(), was used to periodically update the reference status of the active pages. This function was called, instead of vm_pageout_scan(), when memory was not scarce. The objective was to provide up to date reference status for active pages in case memory did become scarce and active pages needed to be deactivated. The active page queue scan performed by vm_pageout_page_stats() was virtually identical to that performed by vm_pageout_scan(), and so r254304 eliminated vm_pageout_page_stats(). Instead, vm_pageout_scan() is called with the parameter "pass" set to zero. The intention was that when pass is zero, vm_pageout_scan() would only scan the active queue. However, the variable page_shortage can still be greater than zero when memory is not scarce and vm_pageout_scan() is called with pass equal to zero. Consequently, the inactive queue may be scanned and dirty pages laundered even though that was not intended by r254304. This revision fixes that. Reported by: avg MFC after: 1 week Sponsored by: EMC / Isilon Storage Division ------------------------------------------ [...truncated 205203 lines...] --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 librt.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 librt_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 -fschg -S librt.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s librt.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/librt.so> ===> lib/librtld_db (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 librtld_db.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 librtld_db_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 librtld_db.so.2 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s librtld_db.so.2 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/librtld_db.so> ===> lib/libsdp (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libsdp.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libsdp_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libsdp.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libsdp.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libsdp.so> ===> lib/libsm (install) ===> lib/libsmb (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libsmb.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libsmb_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libsmb.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libsmb.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libsmb.so> ===> lib/libsmdb (install) ===> lib/libsmutil (install) ===> lib/libstand (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libstand.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> ===> lib/libstdbuf (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libstdbuf.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libstdbuf_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libstdbuf.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libstdbuf.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libstdbuf.so> ===> lib/libstdthreads (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libstdthreads.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libstdthreads_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libstdthreads.so.0 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libstdthreads.so.0 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libstdthreads.so> ===> lib/libtelnet (install) ===> lib/libthr (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libthr.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libthr_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 -fschg -S libthr.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libthr.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libthr.so> --- _installlinks --- /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libpthread.a> -> libthr.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libpthread.so> -> libthr.so /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libpthread_p.a> -> libthr_p.a ===> lib/libthread_db (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libthread_db.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libthread_db_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libthread_db.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libthread_db.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libthread_db.so> ===> lib/libucl (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libucl.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libucl_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libucl.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libucl.so.1 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private/libucl.so> ===> lib/libufs (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libufs.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libufs_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -o root -g wheel -m 444 libufs.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libufs.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libufs.so> ===> lib/libugidfw (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libugidfw.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libugidfw_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libugidfw.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libugidfw.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libugidfw.so> ===> lib/libulog (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libulog.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libulog_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libulog.so.0 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libulog.so.0 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libulog.so> --- _installlinks --- /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libutempter.a> -> libulog.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libutempter.so> -> libulog.so /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libutempter_p.a> -> libulog_p.a ===> lib/libunbound (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libunbound.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libunbound_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libunbound.so.5 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libunbound.so.5 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/private/libunbound.so> ===> lib/libusbhid (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libusbhid.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libusbhid_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libusbhid.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libusbhid.so.4 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libusbhid.so> ===> lib/libusb (install) --- beforeinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib/libusb/libusb-0.1.pc> /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/libdata/pkgconfig> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib/libusb/libusb-1.0.pc> /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/libdata/pkgconfig> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib/libusb/libusb-2.0.pc> /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/libdata/pkgconfig> --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libusb.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libusb_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libusb.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libusb.so.3 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libusb.so> ===> lib/libvgl (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libvgl.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libvgl_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libvgl.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libvgl.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libvgl.so> ===> lib/libwrap (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libwrap.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libwrap_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libwrap.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libwrap.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libwrap.so> ===> lib/liby (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 liby.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 liby_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> ===> lib/libz (install) --- _libinstall --- sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libz.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -C -o root -g wheel -m 444 libz_p.a /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -s -o root -g wheel -m 444 libz.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh> -l s libz.so.6 /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libz.so> cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf;> PROG=ld-elf32.so.1 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=libexec/rtld-elf/ obj --- obj --- /usr/obj/lib32<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> created for <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd;> PROG=ldd32 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=usr.bin/ldd obj --- obj --- /usr/obj/lib32<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd> created for <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd> cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf;> PROG=ld-elf32.so.1 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=libexec/rtld-elf/ depend --- .depend --- rm -f .depend CC='cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32'> mkdep -f .depend -a -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -DPIC -std=gnu99 <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386/rtld_start.S> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386/reloc.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld_lock.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld_printf.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/map_object.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/malloc.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/xmalloc.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/debug.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/libmap.c> cc: warning: argument unused during compilation: '-L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32'> echo ld-elf32.so.1: /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libc_pic.a> >> .depend cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd;> PROG=ldd32 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=usr.bin/ldd depend --- .depend --- rm -f .depend CC='cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32'> mkdep -f .depend -a -std=gnu99 <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd/ldd.c> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd/sods.c> cc: warning: argument unused during compilation: '-L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32'> echo ldd32: /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32/libc.a> >> .depend cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf;> PROG=ld-elf32.so.1 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=libexec/rtld-elf/ all --- Version.map --- --- rtld_start.o --- --- reloc.o --- --- rtld.o --- --- Version.map --- cat <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/Symbol.map> <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386/Symbol.map> | cpp - - | awk -v vfile=<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/libc/Versions.def> -f <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/share/mk/version_gen.awk> > Version.map --- rtld_start.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386/rtld_start.S> --- reloc.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386/reloc.c> --- rtld.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld.c> --- rtld_lock.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld_lock.c> --- rtld_printf.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/rtld_printf.c> --- map_object.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/map_object.c> --- malloc.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/malloc.c> --- xmalloc.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/xmalloc.c> --- debug.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/debug.c> --- libmap.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/libmap.c> --- ld-elf32.so.1 --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -Wall -DFREEBSD_ELF -DIN_RTLD -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/../../lib/csu/common> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf/i386> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/libexec/rtld-elf> -fpic -DPIC -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wformat=2 -Wno-format-extra-args -Werror -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-format-nonliteral -Qunused-arguments -nostdlib -e .rtld_start -shared -Wl,-Bsymbolic -Wl,--version-script=Version.map -o ld-elf32.so.1 rtld_start.o reloc.o rtld.o rtld_lock.o rtld_printf.o map_object.o malloc.o xmalloc.o debug.o libmap.o -lc_pic cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd;> PROG=ldd32 MACHINE=i386 MACHINE_ARCH=i386 MACHINE_CPU="i686 mmx sse sse2" MAKEOBJDIRPREFIX=/usr/obj/lib32 _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> _LDSCRIPTROOT=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin LIBDIR=/usr/lib32 SHLIBDIR=/usr/lib32 LIBPRIVATEDIR=/usr/lib32/private make AS="as --32" LD="ld -m elf_i386_fbsd -Y P,/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CC="cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> CXX="c++ -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32"> DESTDIR=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32> -DCOMPAT_32BIT -DLIBRARIES_ONLY -DNO_CPU_CFLAGS MK_CTF=no -DNO_LINT MK_TESTS=no MK_MAN=no MK_INFO=no MK_HTML=no DIRPRFX=usr.bin/ldd all --- ldd.o --- --- sods.o --- --- ldd.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd/ldd.c> --- sods.o --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/usr.bin/ldd/sods.c> --- ldd32 --- cc -m32 -march=i686 -mmmx -msse -msse2 -DCOMPAT_32BIT -isystem /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/include/> -L/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -B/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/lib32/usr/lib32> -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -o ldd32 ldd.o sods.o --- buildworld_epilogue --- -------------------------------------------------------------- >>> World build completed on Tue May 6 07:44:54 UTC 2014 -------------------------------------------------------------- + make -j 4 buildkernel --- buildkernel --- --- buildkernel --- -------------------------------------------------------------- >>> Kernel build for GENERIC started on Tue May 6 07:44:55 UTC 2014 -------------------------------------------------------------- ===> GENERIC mkdir -p /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys> -------------------------------------------------------------- >>> stage 1: configuring the kernel -------------------------------------------------------------- cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/conf;> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin config -d /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC> -I '<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/conf'> '<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/conf/GENERIC'> Kernel build directory is /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC> Don't forget to do ``make cleandepend && make depend'' -------------------------------------------------------------- >>> stage 2.1: cleaning up the object tree -------------------------------------------------------------- cd /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC;> MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=amd64 MACHINE=amd64 CPUTYPE= GROFF_BIN_PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin> GROFF_FONT_PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/share/groff_font> GROFF_TMAC_PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/share/tmac> _SHLIBDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp> _LDSCRIPTROOT= VERSION="FreeBSD 11.0-CURRENT amd64 1100020" INSTALL="sh <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tools/install.sh"> PATH=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/usr/games>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/legacy/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/sbin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/bin>:/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/tmp/usr/games>:/sbin:/bin:/usr/sbin:/usr/bin CC="cc " CXX="c++ " CPP="cpp " AS="as" AR="ar" LD="ld" NM=nm OBJDUMP= RANLIB=ranlib STRINGS= make -j 4 -J 15,16 -m <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/share/mk> KERNEL=kernel cleandir --- kernel-clean --- --- kernel-cleandepend --- --- modules-cleandir --- --- kernel-clean --- rm -f *.o *.so *.So *.ko *.s eddep errs kernel.debug kernel kernel.symbols linterrs tags vers.c vnode_if.c vnode_if.h vnode_if_newproto.h vnode_if_typedef.h agp_if.c ata_if.c eisa_if.c fb_if.c miibus_if.c mmcbr_if.c mmcbus_if.c mvs_if.c card_if.c power_if.c pci_if.c pcib_if.c ppbus_if.c sdhci_if.c hdac_if.c ac97_if.c channel_if.c feeder_if.c mixer_if.c mpu_if.c mpufoi_if.c synth_if.c uart_if.c usb_if.c g_part_if.c g_raid_md_if.c g_raid_tr_if.c isa_if.c bus_if.c clock_if.c cpufreq_if.c device_if.c linker_if.c serdev_if.c xenbus_if.c xenbusb_if.c acpi_if.c acpi_wmi_if.c virtio_bus_if.c virtio_if.c agp_if.h ata_if.h eisa_if.h fb_if.h miibus_if.h mmcbr_if.h mmcbus_if.h mvs_if.h card_if.h power_if.h pci_if.h pcib_if.h ppbus_if.h sdhci_if.h hdac_if.h ac97_if.h channel_if.h feeder_if.h mixer_if.h mpu_if.h mpufoi_if.h synth_if.h uart_if.h usb_if.h g_part_if.h g_raid_md_if.h g_raid_tr_if.h isa_if.h bus_if.h clock_if.h cpufreq_if.h device_if.h linker_if.h serdev_if.h xenbus_if.h xenbusb_if.h acpi_if.h acpi_wmi_if.h--- kernel-cleandepend --- rm -f .depend machine x86 --- modules-cleandir --- cd <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules;> MAKEOBJDIRPREFIX=/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/modules> KMODDIR=/boot/kernel MACHINE_CPUARCH=amd64 MACHINE=amd64 MACHINE_ARCH=amd64 DEBUG_FLAGS="-g" KERNBUILDDIR="/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC"> SYSDIR="<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys"> WITH_CTF="1" make cleandir --- kernel-clean --- virtio_bus_if.h virtio_if.h acpi_quirks.h feeder_eq_gen.h feeder_rate_gen.h snd_fxdiv_gen.h miidevs.h pccarddevs.h teken_state.h usbdevs.h usbdevs_data.h ia32_genassym.o ia32_assym.h acpi_wakecode.o acpi_wakecode.bin acpi_wakecode.h acpi_wakedata.h --- modules-cleandir --- --- cleandir --- ===> aac (cleandir) make[4]: "<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/conf/kmod.mk"> line 292: Malformed conditional (defined(DEBUG_FLAGS) && !defined(INSTALL_NODEBUG) && ${MK_KERNEL_SYMBOLS} != "no") make[4]: Fatal errors encountered -- cannot continue make[4]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/aac> *** [cleandir] Error code 1 make[3]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules> 1 error make[3]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules> *** [modules-cleandir] Error code 2 make[2]: stopped in /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC> 1 error make[2]: stopped in /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC> *** [buildkernel] Error code 2 make[1]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/> 1 error make[1]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/> *** [buildkernel] Error code 2 make: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/> 1 error make: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/> Build step 'Execute shell' marked build as failureReceived on Tue May 06 2014 - 05:45:11 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:40:48 UTC