From owner-freebsd-current@freebsd.org Sun Nov 29 00:10:10 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 250A4A3B552 for ; Sun, 29 Nov 2015 00:10:10 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from mx2.shrew.net (mx2.shrew.net [38.97.5.132]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70F1B1AA2; Sun, 29 Nov 2015 00:10:09 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from mail.shrew.net (mail.shrew.prv [10.24.10.20]) by mx2.shrew.net (8.14.7/8.14.7) with ESMTP id tAT07k1U069043; Sat, 28 Nov 2015 18:07:46 -0600 (CST) (envelope-from mgrooms@shrew.net) Received: from [10.22.200.30] (cpe-72-179-24-154.austin.res.rr.com [72.179.24.154]) by mail.shrew.net (Postfix) with ESMTPSA id B0DEA18BAFE; Sat, 28 Nov 2015 18:07:35 -0600 (CST) Subject: Re: Resizing a zpool as a VMware ESXi guest ... To: freebsd-current@freebsd.org References: <543841B8.4070007@shrew.net> <20141016081016.GA4670@brick.home> <5657F135.6080902@shrew.net> <56581F5A.4010009@digiware.nl> <56589C1A.1020702@shrew.net> <5658A764.5030508@shrew.net> <565906E8.9060005@shrew.net> From: Matthew Grooms Cc: mav@FreeBSD.org, trasz@FreeBSD.org Message-ID: <565A425C.7020101@shrew.net> Date: Sat, 28 Nov 2015 18:10:04 -0600 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <565906E8.9060005@shrew.net> Content-Type: multipart/mixed; boundary="------------030409010104040509000407" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mx2.shrew.net [10.24.10.11]); Sat, 28 Nov 2015 18:07:46 -0600 (CST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 00:10:10 -0000 This is a multi-part message in MIME format. --------------030409010104040509000407 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 11/27/2015 7:44 PM, Matthew Grooms wrote: > I spent the day looking over the FreeBSD cam and scsi_da source code. > After sprinkling a bunch of printf's around to see what code paths > were being called, It's obvious that Edward was correct in assuming > that ESXi doesn't return any 'Unit Attention' sense information in > response to a 'Read Capacity' request. This kinda makes sense as ESXi > emulates SCSI-2 disk devices and, as far as I can tell, the 0x2A/0x09 > ASC/ASCQ sense code that denotes 'Capacity Data Has Changed' wasn't > defined until the SCSCI-3 spec. It's frustrating that the only way to > get the scsci_da code to call reprobe() is by receiving a command from > the device. Would something like this work? ... > > 1) Register a callback using xpt_register_async( daasync, > AC_REPROBE_DEVICE, path ) that calls reprobe() > 2) Implement a new IOCTL in cam_xpt that camcontrol can call with the > bus:target:lun as the argument > 3) have cam_xpt capture the IOCTL request and call xpt_async( > AC_REPROBE_DEVICE, path ) as a result > > This way users would have the option of manually asking cam to > communicate the new size to geom. The only option now is one or more > reboots to gain access to the increased disk capacity. If this sounds > like a reasonable approach, I'll take a stab at implementing it. > Here is a proof of concept patch. I'm a complete noob when it comes to cam, scsi or freebsd kernel development for that matter, so I'm sure it could have been done a better way. In any case, I added a new command to camcontrol that allows you to specify a bus, target and lun as an argument. For example ... # camcontrol readcap da1 -h Device Size: 32 G, Block Length: 512 bytes # gpart show da1 => 40 58720176 da1 GPT (28G) 40 58720176 1 freebsd-ufs (28G) Note, I resized the VMDK disk in ESXi. The camcontrol output shows the size as 32G but geom thinks its 28G. # camcontrol devlist at scbus1 target 0 lun 0 (cd0,pass0) at scbus2 target 0 lun 0 (pass1,da0) at scbus2 target 1 lun 0 (pass2,da1) at scbus3 target 0 lun 0 (da2,pass3) # camcontrol reprobe 2:1:0 This generates an event that is captured by the scsci da device to forces a reprobe. The kernel output looks almost identical to when the 'Unit Attention' sense data is received ... Nov 28 17:46:13 iscsi-i kernel: (da1:mpt0:0:1:0): Re-probe requested Nov 28 17:46:13 iscsi-i kernel: GEOM_PART: da1 was automatically resized. Nov 28 17:46:13 iscsi-i kernel: Use `gpart commit da1` to save changes or `gpart undo da1` to revert them. Now that geom knows about the increased disk capacity, I can increase the partition size and grow the fs ... [root@iscsi-i /home/mgrooms]# gpart show da1 => 40 67108784 da1 GPT (32G) 40 58720176 1 freebsd-ufs (28G) 58720216 8388608 - free - (4.0G) # gpart resize -i 1 da1 da1p1 resized # growfs da1p1 Device is mounted read-write; resizing will result in temporary write suspension for /var/data1. It's strongly recommended to make a backup before growing the file system. OK to grow filesystem on /dev/da1p1, mounted on /var/data1, from 28GB to 32GB? [Yes/No] Yes super-block backups (for fsck_ffs -b #) at: 58983232, 60265472, 61547712, 62829952, 64112192, 65394432, 66676672 # df -h Filesystem Size Used Avail Capacity Mounted on /dev/da0p3 18G 5.3G 12G 31% / devfs 1.0K 1.0K 0B 100% /dev /dev/da1p1 31G 32M 28G 0% /var/data1 /dev/da2p1 15G 32M 14G 0% /var/data2 Sure would be nice to have something like this in the tree. It's really a drag to have to reboot production VMs to increase disk capacity when it could be easily avoided. I'm not sure what the correct IOCTL should look like. Maybe CAMIOCOMMAND is a better way to go? If someone with some experience with the cam/scsi subsystems was willing to give me some direction I'd be willing to try and rewrite the patch in a way that would be commit worthy. I just need some direction. Thanks, -Matthew --------------030409010104040509000407 Content-Type: text/plain; charset=UTF-8; name="cam-reprobe.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cam-reprobe.diff" Index: lib/libcam/camlib.c =================================================================== --- lib/libcam/camlib.c (revision 291390) +++ lib/libcam/camlib.c (working copy) @@ -752,3 +752,41 @@ bcopy(src, dst, sizeof(struct cam_device)); } + +/* + * Send a reprobe unit request for a given bus, target and lun + */ +int +cam_reprobe_btl(path_id_t path_id, target_id_t target_id, lun_id_t target_lun) +{ + int fd; + char *func_name = "cam_reprobe_btl"; + union ccb ccb; + + if ((fd = open(XPT_DEVICE, O_RDWR)) < 0) { + snprintf(cam_errbuf, CAM_ERRBUF_SIZE, + "%s: couldn't open %s\n%s: %s", func_name, XPT_DEVICE, + func_name, strerror(errno)); + return(-1); + } + + /* Setup our request ccb */ + bzero(&ccb.ccb_h, sizeof(struct ccb_hdr)); + ccb.ccb_h.path_id = path_id; + ccb.ccb_h.target_id = target_id; + ccb.ccb_h.target_lun = target_lun; + + /* + * Attempt to issue a unit reprobe request. This ioctl will fail if the + * kernel can't find a unit for the given path, target and lun. + */ + if (ioctl(fd, CAMUNITREPROBE, &ccb) != 0) { + snprintf(cam_errbuf, CAM_ERRBUF_SIZE, + "%s: failed to issue unit reprobe request", func_name ); + close(fd); + return(-1); + } + + close(fd); + return 0; +} Index: lib/libcam/camlib.h =================================================================== --- lib/libcam/camlib.h (revision 291390) +++ lib/libcam/camlib.h (working copy) @@ -146,6 +146,8 @@ struct cam_device *dst); int cam_get_device(const char *path, char *dev_name, int devnamelen, int *unit); +int cam_reprobe_btl(path_id_t path_id, target_id_t target_id, + lun_id_t target_lun); /* * Buffer encoding/decoding routines, from the old SCSI library. Index: sbin/camcontrol/camcontrol.c =================================================================== --- sbin/camcontrol/camcontrol.c (revision 291390) +++ sbin/camcontrol/camcontrol.c (working copy) @@ -100,7 +100,8 @@ CAM_CMD_APM = 0x00000021, CAM_CMD_AAM = 0x00000022, CAM_CMD_ATTRIB = 0x00000023, - CAM_CMD_OPCODES = 0x00000024 + CAM_CMD_OPCODES = 0x00000024, + CAM_CMD_REPROBE = 0x00000025 } cam_cmdmask; typedef enum { @@ -193,6 +194,7 @@ #endif /* MINIMALISTIC */ {"rescan", CAM_CMD_RESCAN, CAM_ARG_NONE, NULL}, {"reset", CAM_CMD_RESET, CAM_ARG_NONE, NULL}, + {"reprobe", CAM_CMD_REPROBE, CAM_ARG_NONE, NULL}, #ifndef MINIMALISTIC {"cmd", CAM_CMD_SCSI_CMD, CAM_ARG_NONE, scsicmd_opts}, {"command", CAM_CMD_SCSI_CMD, CAM_ARG_NONE, scsicmd_opts}, @@ -3127,6 +3129,34 @@ } static int +doreprobe(int argc, char **argv) +{ + static const char must[] = + "you must specify a bus:target:lun to reprobe"; + int rv; + path_id_t bus = CAM_BUS_WILDCARD; + target_id_t target = CAM_TARGET_WILDCARD; + lun_id_t lun = CAM_LUN_WILDCARD; + char *tstr; + + if (argc < 3) { + warnx(must); + return(1); + } + + tstr = argv[optind]; + while (isspace(*tstr) && (*tstr != '\0')) + tstr++; + rv = parse_btl(argv[optind], &bus, &target, &lun, &arglist); + if (rv != 3) { + warnx(must); + return(1); + } + + return(cam_reprobe_btl(bus, target, lun)); +} + +static int rescan_or_reset_bus(path_id_t bus, int rescan) { union ccb ccb, matchccb; @@ -8685,6 +8715,7 @@ #endif /* MINIMALISTIC */ " camcontrol rescan \n" " camcontrol reset \n" +" camcontrol reprobe bus:target:lun\n" #ifndef MINIMALISTIC " camcontrol defects [dev_id][generic args] <-f format> [-P][-G]\n" " [-q][-s][-S offset][-X]\n" @@ -9053,6 +9084,7 @@ */ if ((cmdlist == CAM_CMD_RESCAN) || (cmdlist == CAM_CMD_RESET) + || (cmdlist == CAM_CMD_REPROBE) || (cmdlist == CAM_CMD_DEVTREE) || (cmdlist == CAM_CMD_USAGE) || (cmdlist == CAM_CMD_DEBUG)) @@ -9204,6 +9236,9 @@ case CAM_CMD_RESET: error = dorescan_or_reset(argc, argv, 0); break; + case CAM_CMD_REPROBE: + error = doreprobe(argc, argv); + break; #ifndef MINIMALISTIC case CAM_CMD_READ_DEFECTS: error = readdefects(cam_dev, argc, argv, combinedopt, Index: sys/amd64/conf/GENERIC =================================================================== --- sys/amd64/conf/GENERIC (revision 291390) +++ sys/amd64/conf/GENERIC (working copy) @@ -366,3 +366,6 @@ # The crypto framework is required by IPSEC device crypto # Required by IPSEC + +# Cam Debug Support +options CAMDEBUG Index: sys/cam/cam_ccb.h =================================================================== --- sys/cam/cam_ccb.h (revision 291390) +++ sys/cam/cam_ccb.h (working copy) @@ -767,6 +767,7 @@ * Definitions for the asynchronous callback CCB fields. */ typedef enum { + AC_UNIT_REPROBE = 0x8000,/* Device reprobe user request */ AC_UNIT_ATTENTION = 0x4000,/* Device reported UNIT ATTENTION */ AC_ADVINFO_CHANGED = 0x2000,/* Advance info might have changes */ AC_CONTRACT = 0x1000,/* A contractual callback */ Index: sys/cam/cam_xpt.c =================================================================== --- sys/cam/cam_xpt.c (revision 291390) +++ sys/cam/cam_xpt.c (working copy) @@ -717,7 +717,41 @@ } xpt_unlock_buses(); break; + } + case CAMUNITREPROBE: { + union ccb *inccb; + struct cam_path path; + + inccb = (union ccb *)addr; + + /* + * Make sure a specific bus, target and lun were specified. + */ + if (inccb->ccb_h.path_id == CAM_BUS_WILDCARD || + inccb->ccb_h.target_id == CAM_TARGET_WILDCARD || + inccb->ccb_h.target_lun == CAM_LUN_WILDCARD) { + error = EINVAL; + break; } + + /* + * Compile a path using the bus, target, and lun the user passed in. + */ + if (xpt_compile_path(&path, NULL, + inccb->ccb_h.path_id, + inccb->ccb_h.target_id, + inccb->ccb_h.target_lun) != + CAM_REQ_CMP){ + error = EINVAL; + break; + } + + /* + * Notify interested parties + */ + xpt_async(AC_UNIT_REPROBE, &path, NULL); + break; + } default: error = ENOTTY; break; Index: sys/cam/scsi/scsi_da.c =================================================================== --- sys/cam/scsi/scsi_da.c (revision 291390) +++ sys/cam/scsi/scsi_da.c (working copy) @@ -1702,6 +1702,17 @@ } break; } + case AC_UNIT_REPROBE: + { + softc = (struct da_softc *)periph->softc; + + xpt_print(periph->path, + "Re-probe requested\n"); + softc->flags &= ~DA_FLAG_PROBED; + dareprobe(periph); + + break; + } case AC_UNIT_ATTENTION: { union ccb *ccb; @@ -2240,7 +2251,7 @@ * would be to not attach the device on failure. */ xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE | - AC_ADVINFO_CHANGED | AC_SCSI_AEN | AC_UNIT_ATTENTION, + AC_ADVINFO_CHANGED | AC_SCSI_AEN | AC_UNIT_ATTENTION | AC_UNIT_REPROBE, daasync, periph, periph->path); /* @@ -3244,12 +3255,11 @@ if (have_sense) scsi_sense_print( &done_ccb->csio); - else { + else xpt_print(periph->path, "got CAM status %#x\n", done_ccb->ccb_h.status); - } - + xpt_print(periph->path, "fatal error, " "failed to attach to device\n"); Index: sys/cam/scsi/scsi_pass.h =================================================================== --- sys/cam/scsi/scsi_pass.h (revision 291390) +++ sys/cam/scsi/scsi_pass.h (working copy) @@ -38,5 +38,6 @@ */ #define CAMIOCOMMAND _IOWR(CAM_VERSION, 2, union ccb) #define CAMGETPASSTHRU _IOWR(CAM_VERSION, 3, union ccb) +#define CAMUNITREPROBE _IOWR(CAM_VERSION, 4, union ccb) #endif --------------030409010104040509000407-- From owner-freebsd-current@freebsd.org Sun Nov 29 04:03:22 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A578EA3AA27 for ; Sun, 29 Nov 2015 04:03:22 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from mx1.shrew.net (mx1.shrew.net [38.97.5.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5ADE10AC; Sun, 29 Nov 2015 04:03:21 +0000 (UTC) (envelope-from mgrooms@shrew.net) Received: from mail.shrew.net (mail.shrew.prv [10.24.10.20]) by mx1.shrew.net (8.14.7/8.14.7) with ESMTP id tAT40q4o059375; Sat, 28 Nov 2015 22:00:52 -0600 (CST) (envelope-from mgrooms@shrew.net) Received: from [10.22.200.30] (cpe-72-179-24-154.austin.res.rr.com [72.179.24.154]) by mail.shrew.net (Postfix) with ESMTPSA id 48A6F18C42F; Sat, 28 Nov 2015 22:00:47 -0600 (CST) Subject: Re: Resizing a zpool as a VMware ESXi guest ... To: freebsd-current@freebsd.org, mav@FreeBSD.org, trasz@FreeBSD.org References: <543841B8.4070007@shrew.net> <20141016081016.GA4670@brick.home> <5657F135.6080902@shrew.net> <56581F5A.4010009@digiware.nl> <56589C1A.1020702@shrew.net> <5658A764.5030508@shrew.net> <565906E8.9060005@shrew.net> <565A425C.7020101@shrew.net> From: Matthew Grooms Message-ID: <565A7906.60106@shrew.net> Date: Sat, 28 Nov 2015 22:03:18 -0600 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <565A425C.7020101@shrew.net> Content-Type: multipart/mixed; boundary="------------090907040403050103020002" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mx1.shrew.net [10.24.10.10]); Sat, 28 Nov 2015 22:00:52 -0600 (CST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 04:03:22 -0000 This is a multi-part message in MIME format. --------------090907040403050103020002 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 11/28/2015 6:10 PM, Matthew Grooms wrote: > On 11/27/2015 7:44 PM, Matthew Grooms wrote: >> I spent the day looking over the FreeBSD cam and scsi_da source code. >> After sprinkling a bunch of printf's around to see what code paths >> were being called, It's obvious that Edward was correct in assuming >> that ESXi doesn't return any 'Unit Attention' sense information in >> response to a 'Read Capacity' request. This kinda makes sense as ESXi >> emulates SCSI-2 disk devices and, as far as I can tell, the 0x2A/0x09 >> ASC/ASCQ sense code that denotes 'Capacity Data Has Changed' wasn't >> defined until the SCSCI-3 spec. It's frustrating that the only way to >> get the scsci_da code to call reprobe() is by receiving a command >> from the device. Would something like this work? ... >> >> 1) Register a callback using xpt_register_async( daasync, >> AC_REPROBE_DEVICE, path ) that calls reprobe() >> 2) Implement a new IOCTL in cam_xpt that camcontrol can call with the >> bus:target:lun as the argument >> 3) have cam_xpt capture the IOCTL request and call xpt_async( >> AC_REPROBE_DEVICE, path ) as a result >> >> This way users would have the option of manually asking cam to >> communicate the new size to geom. The only option now is one or more >> reboots to gain access to the increased disk capacity. If this sounds >> like a reasonable approach, I'll take a stab at implementing it. >> > > Here is a proof of concept patch. I'm a complete noob when it comes to > cam, scsi or freebsd kernel development for that matter, so I'm sure > it could have been done a better way. In any case, I added a new > command to camcontrol that allows you to specify a bus, target and lun > as an argument. For example ... > > # camcontrol readcap da1 -h > Device Size: 32 G, Block Length: 512 bytes > > # gpart show da1 > => 40 58720176 da1 GPT (28G) > 40 58720176 1 freebsd-ufs (28G) > > Note, I resized the VMDK disk in ESXi. The camcontrol output shows the > size as 32G but geom thinks its 28G. > > # camcontrol devlist > at scbus1 target 0 lun 0 (cd0,pass0) > at scbus2 target 0 lun 0 (pass1,da0) > at scbus2 target 1 lun 0 (pass2,da1) > at scbus3 target 0 lun 0 (da2,pass3) > > # camcontrol reprobe 2:1:0 > > This generates an event that is captured by the scsci da device to > forces a reprobe. The kernel output looks almost identical to when the > 'Unit Attention' sense data is received ... > > Nov 28 17:46:13 iscsi-i kernel: (da1:mpt0:0:1:0): Re-probe requested > Nov 28 17:46:13 iscsi-i kernel: GEOM_PART: da1 was automatically resized. > Nov 28 17:46:13 iscsi-i kernel: Use `gpart commit da1` to save changes > or `gpart undo da1` to revert them. > > Now that geom knows about the increased disk capacity, I can increase > the partition size and grow the fs ... > > [root@iscsi-i /home/mgrooms]# gpart show da1 > => 40 67108784 da1 GPT (32G) > 40 58720176 1 freebsd-ufs (28G) > 58720216 8388608 - free - (4.0G) > > # gpart resize -i 1 da1 > da1p1 resized > > # growfs da1p1 > Device is mounted read-write; resizing will result in temporary write > suspension for /var/data1. > It's strongly recommended to make a backup before growing the file > system. > OK to grow filesystem on /dev/da1p1, mounted on /var/data1, from 28GB > to 32GB? [Yes/No] Yes > super-block backups (for fsck_ffs -b #) at: > 58983232, 60265472, 61547712, 62829952, 64112192, 65394432, 66676672 > > # df -h > Filesystem Size Used Avail Capacity Mounted on > /dev/da0p3 18G 5.3G 12G 31% / > devfs 1.0K 1.0K 0B 100% /dev > /dev/da1p1 31G 32M 28G 0% /var/data1 > /dev/da2p1 15G 32M 14G 0% /var/data2 > > Sure would be nice to have something like this in the tree. It's > really a drag to have to reboot production VMs to increase disk > capacity when it could be easily avoided. I'm not sure what the > correct IOCTL should look like. Maybe CAMIOCOMMAND is a better way to > go? If someone with some experience with the cam/scsi subsystems was > willing to give me some direction I'd be willing to try and rewrite > the patch in a way that would be commit worthy. I just need some > direction. > Ok, last post until I get some feedback. Here's a new version of the patch complete with man page updates. It communicates via CAMIOCOMMAND instead of introducing a new ioctl value. I tried to model it after the device reset option, hopefully with some degree of success. Functionally it should be the same as the first patch. Thanks, -Matthew --------------090907040403050103020002 Content-Type: text/plain; charset=UTF-8; name="cam-reprobe-v2.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cam-reprobe-v2.diff" Index: sbin/camcontrol/camcontrol.8 =================================================================== --- sbin/camcontrol/camcontrol.8 (revision 291390) +++ sbin/camcontrol/camcontrol.8 (working copy) @@ -104,6 +104,9 @@ .Ic reset .Aq all | bus Ns Op :target:lun .Nm +.Ic reprobe +.Aq bus:target:lun +.Nm .Ic defects .Op device id .Op generic args @@ -548,6 +551,9 @@ connecting to that device. Note that this can have a destructive impact on the system. +.It Ic reprobe +Tell the kernel to re-probe the given bus:target:lun +(XPT_REPROBE_DEV) by issuing an async event to peripheral device. .It Ic defects Send the .Tn SCSI Index: sbin/camcontrol/camcontrol.c =================================================================== --- sbin/camcontrol/camcontrol.c (revision 291390) +++ sbin/camcontrol/camcontrol.c (working copy) @@ -100,7 +100,8 @@ CAM_CMD_APM = 0x00000021, CAM_CMD_AAM = 0x00000022, CAM_CMD_ATTRIB = 0x00000023, - CAM_CMD_OPCODES = 0x00000024 + CAM_CMD_OPCODES = 0x00000024, + CAM_CMD_REPROBE = 0x00000025 } cam_cmdmask; typedef enum { @@ -193,6 +194,7 @@ #endif /* MINIMALISTIC */ {"rescan", CAM_CMD_RESCAN, CAM_ARG_NONE, NULL}, {"reset", CAM_CMD_RESET, CAM_ARG_NONE, NULL}, + {"reprobe", CAM_CMD_REPROBE, CAM_ARG_NONE, NULL}, #ifndef MINIMALISTIC {"cmd", CAM_CMD_SCSI_CMD, CAM_ARG_NONE, scsicmd_opts}, {"command", CAM_CMD_SCSI_CMD, CAM_ARG_NONE, scsicmd_opts}, @@ -273,6 +275,7 @@ static int rescan_or_reset_bus(path_id_t bus, int rescan); static int scanlun_or_reset_dev(path_id_t bus, target_id_t target, lun_id_t lun, int scan); +static int reprobe_dev(path_id_t bus, target_id_t target, lun_id_t lun); #ifndef MINIMALISTIC static int readdefects(struct cam_device *device, int argc, char **argv, char *combinedopt, int retry_count, int timeout); @@ -3127,6 +3130,34 @@ } static int +doreprobe(int argc, char **argv) +{ + static const char must[] = + "you must specify a bus:target:lun to reprobe"; + int rv; + path_id_t bus = CAM_BUS_WILDCARD; + target_id_t target = CAM_TARGET_WILDCARD; + lun_id_t lun = CAM_LUN_WILDCARD; + char *tstr; + + if (argc < 3) { + warnx(must); + return(1); + } + + tstr = argv[optind]; + while (isspace(*tstr) && (*tstr != '\0')) + tstr++; + rv = parse_btl(argv[optind], &bus, &target, &lun, &arglist); + if (rv != 3) { + warnx(must); + return(1); + } + + return(reprobe_dev(bus, target, lun)); +} + +static int rescan_or_reset_bus(path_id_t bus, int rescan) { union ccb ccb, matchccb; @@ -3382,6 +3413,59 @@ } } +static int +reprobe_dev(path_id_t bus, target_id_t target, lun_id_t lun) +{ + union ccb ccb; + struct cam_device *device; + int fd; + + device = NULL; + + if (bus == CAM_BUS_WILDCARD) { + warnx("invalid bus number %d", bus); + return(1); + } + + if (target == CAM_TARGET_WILDCARD) { + warnx("invalid target number %d", target); + return(1); + } + + if (lun == CAM_LUN_WILDCARD) { + warnx("invalid lun number %jx", (uintmax_t)lun); + return(1); + } + + fd = -1; + + bzero(&ccb, sizeof(union ccb)); + + if ((fd = open(XPT_DEVICE, O_RDWR)) < 0) { + warnx("error opening transport layer device %s\n", + XPT_DEVICE); + warn("%s", XPT_DEVICE); + return(1); + } + + ccb.ccb_h.func_code = XPT_REPROBE_DEV; + ccb.ccb_h.path_id = bus; + ccb.ccb_h.target_id = target; + ccb.ccb_h.target_lun = lun; + + if (ioctl(fd, CAMIOCOMMAND, &ccb) < 0) { + warn("CAMIOCOMMAND ioctl failed"); + close(fd); + return(1); + } + close(fd); + + fprintf(stdout, "Re-probe of %d:%d:%jx was successful\n", + bus, target, (uintmax_t)lun); + + return(0); +} + #ifndef MINIMALISTIC static struct scsi_nv defect_list_type_map[] = { @@ -8685,6 +8769,7 @@ #endif /* MINIMALISTIC */ " camcontrol rescan \n" " camcontrol reset \n" +" camcontrol reprobe bus:target:lun\n" #ifndef MINIMALISTIC " camcontrol defects [dev_id][generic args] <-f format> [-P][-G]\n" " [-q][-s][-S offset][-X]\n" @@ -9053,6 +9138,7 @@ */ if ((cmdlist == CAM_CMD_RESCAN) || (cmdlist == CAM_CMD_RESET) + || (cmdlist == CAM_CMD_REPROBE) || (cmdlist == CAM_CMD_DEVTREE) || (cmdlist == CAM_CMD_USAGE) || (cmdlist == CAM_CMD_DEBUG)) @@ -9204,6 +9290,9 @@ case CAM_CMD_RESET: error = dorescan_or_reset(argc, argv, 0); break; + case CAM_CMD_REPROBE: + error = doreprobe(argc, argv); + break; #ifndef MINIMALISTIC case CAM_CMD_READ_DEFECTS: error = readdefects(cam_dev, argc, argv, combinedopt, Index: sys/amd64/conf/GENERIC =================================================================== --- sys/amd64/conf/GENERIC (revision 291390) +++ sys/amd64/conf/GENERIC (working copy) @@ -366,3 +366,6 @@ # The crypto framework is required by IPSEC device crypto # Required by IPSEC + +# Cam Debug Support +options CAMDEBUG Index: sys/cam/cam_ccb.h =================================================================== --- sys/cam/cam_ccb.h (revision 291390) +++ sys/cam/cam_ccb.h (working copy) @@ -193,6 +193,11 @@ * Set SIM specific knob values. */ + XPT_REPROBE_DEV = 0x1a, + /* + * Re-probe the sepcified SCSI device. + */ + XPT_SMP_IO = 0x1b | XPT_FC_DEV_QUEUED, /* Serial Management Protocol */ @@ -767,6 +772,7 @@ * Definitions for the asynchronous callback CCB fields. */ typedef enum { + AC_UNIT_REPROBE = 0x8000,/* Device reprobe user request */ AC_UNIT_ATTENTION = 0x4000,/* Device reported UNIT ATTENTION */ AC_ADVINFO_CHANGED = 0x2000,/* Advance info might have changes */ AC_CONTRACT = 0x1000,/* A contractual callback */ Index: sys/cam/cam_xpt.c =================================================================== --- sys/cam/cam_xpt.c (revision 291390) +++ sys/cam/cam_xpt.c (working copy) @@ -433,6 +433,13 @@ return (EINVAL); } break; + case XPT_REPROBE_DEV: + if (inccb->ccb_h.target_id == CAM_TARGET_WILDCARD || + inccb->ccb_h.target_lun == CAM_LUN_WILDCARD) { + xpt_release_bus(bus); + return (EINVAL); + } + break; default: break; } @@ -472,6 +479,29 @@ xpt_free_ccb(ccb); break; + case XPT_REPROBE_DEV: { + struct cam_path path; + + /* + * Compile a path using the bus, target, and lun the + * user passed in. + */ + if (xpt_compile_path(&path, NULL, + inccb->ccb_h.path_id, + inccb->ccb_h.target_id, + inccb->ccb_h.target_lun) != + CAM_REQ_CMP){ + error = EINVAL; + break; + } + + /* + * Notify interested parties + */ + xpt_async(AC_UNIT_REPROBE, &path, NULL); + break; + + } case XPT_DEBUG: { union ccb ccb; @@ -717,7 +747,7 @@ } xpt_unlock_buses(); break; - } + } default: error = ENOTTY; break; Index: sys/cam/scsi/scsi_da.c =================================================================== --- sys/cam/scsi/scsi_da.c (revision 291390) +++ sys/cam/scsi/scsi_da.c (working copy) @@ -1702,6 +1702,17 @@ } break; } + case AC_UNIT_REPROBE: + { + softc = (struct da_softc *)periph->softc; + + xpt_print(periph->path, + "Re-probe requested\n"); + softc->flags &= ~DA_FLAG_PROBED; + dareprobe(periph); + + break; + } case AC_UNIT_ATTENTION: { union ccb *ccb; @@ -2240,7 +2251,7 @@ * would be to not attach the device on failure. */ xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE | - AC_ADVINFO_CHANGED | AC_SCSI_AEN | AC_UNIT_ATTENTION, + AC_ADVINFO_CHANGED | AC_SCSI_AEN | AC_UNIT_ATTENTION | AC_UNIT_REPROBE, daasync, periph, periph->path); /* @@ -3244,12 +3255,11 @@ if (have_sense) scsi_sense_print( &done_ccb->csio); - else { + else xpt_print(periph->path, "got CAM status %#x\n", done_ccb->ccb_h.status); - } - + xpt_print(periph->path, "fatal error, " "failed to attach to device\n"); --------------090907040403050103020002-- From owner-freebsd-current@freebsd.org Sun Nov 29 06:23:12 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64C1EA3C58A for ; Sun, 29 Nov 2015 06:23:12 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4AAF21F2A for ; Sun, 29 Nov 2015 06:23:12 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: by mailman.ysv.freebsd.org (Postfix) id 4ABD5A3C589; Sun, 29 Nov 2015 06:23:12 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 495C5A3C588 for ; Sun, 29 Nov 2015 06:23:12 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from mail.netplex.net (mail.netplex.net [204.213.176.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.netplex.net", Issuer "RapidSSL SHA256 CA - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0A58E1F29 for ; Sun, 29 Nov 2015 06:23:11 +0000 (UTC) (envelope-from eischen@vigrid.com) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.15.1/8.15.1/NETPLEX) with ESMTP id tAT6N4q0034808 for ; Sun, 29 Nov 2015 01:23:04 -0500 X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-4.4.3 (mail.netplex.net [204.213.176.9]); Sun, 29 Nov 2015 01:23:04 -0500 (EST) Date: Sun, 29 Nov 2015 01:23:04 -0500 (EST) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: current@freebsd.org Subject: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 06:23:12 -0000 On Fri, 27 Nov 2015, Daniel Eischen wrote: > Damn, please use deischen@freebsd.org for replies. > > On Fri, 27 Nov 2015, Daniel Eischen wrote: > >> On Fri, 27 Nov 2015, Daniel Eischen wrote: >> >>> $ uname -a >>> FreeBSD vega 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r277320: Mon Jan 19 >>> 09:02:50 EST 2015 >>> deischen@vega:/usr/FreeBSD/svn/obj/usr/FreeBSD/svn/src/sys/vega amd64 >>> >>> Upgrading to today's current, 'rm -rf /usr/obj/*; make -j8 buildworld' >>> fails here: >>> >>> ===> lib/libc/tests/gen/execve (buildconfig) >>> --- all_subdir_tests --- >>> --- all_subdir_mqueue --- >>> mqtest3.o: In function `main': >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x139): undefined >>> reference to `__mq_oshandle' >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x14c): undefined >>> reference to `__mq_oshandle' >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x16c): undefined >>> reference to `__mq_oshandle' >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3e6): undefined >>> reference to `__mq_oshandle' >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3f9): undefined >>> reference to `__mq_oshandle' >>> mqtest3.o:/usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x40f): >>> more undefined references to `__mq_oshandle' follow >>> cc: error: linker command failed with exit code 1 (use -v to see >>> invocation) >>> >>> Going to try make [-j1], next, but anyone come across this? >> >> Still fails. >> >> Why do the tests in tests/sys/mqueue/ try to use non-public APIs? So I found out that sometime in the last year or so, symbol versioning for librt was broken and leaking symbols that shouldn't have been leaked. I've just committed a fix for this. Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' and see the non FBSD_foo symbols that shouldn't be there. -- DE From owner-freebsd-current@freebsd.org Sun Nov 29 07:39:42 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 442ECA3B54F for ; Sun, 29 Nov 2015 07:39:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 2CF041BA2; Sun, 29 Nov 2015 07:39:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 46CF516E8; Sun, 29 Nov 2015 07:39:42 +0000 (UTC) Date: Sun, 29 Nov 2015 07:38:42 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: arybchik@FreeBSD.org, adrian@FreeBSD.org, deischen@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1379486280.223.1448782782258.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3583 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 07:39:42 -0000 FreeBSD_HEAD - Build #3583 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3583/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3583/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3583/console Change summaries: 291440 by deischen: Disable a couple of tests, perhaps temporarily, since they use private symbols that are not exported from librt. 291439 by deischen: Unbreak symbol versioning. I have no idea when it was broken, but it's bee= n at least a few months if not a year or more. 291438 by adrian: Add support for the integrated wifi for the QCA953x base config and AP143. Tested: * AP143 reference design board 291437 by adrian: Add initial support for the QCA953x SoC (honeybee) wifi. This is a 2x2 2GHz 802.11n part. It works enough at the moment to bring up, scan and associate. I haven't started using this as a day to day AP. The specifics: * add honeybee initvals * add in changes; a mix from the QCA HAL and ath9k; * fix a bug in AR_SREV_AR9580_10_OR_LATER(), which is only used for one capability check and we don't even implement it - so it's a big no-op. Shady things: * ath9k has the "platform data" define the 25/40MHz clock. This HAL .. doesn't. Honeybee gets hard-coded to 25MHz which it likely shouldn't be. I'll have to go and identify/fix those. Tested: * Qualcomm Atheros AP143 reference design board. Obtained from:=09Qualcomm Atheros; Linux ath9k 291436 by arybchik: sfxge: add prefast annotation to common code return types Using a typedef for common code return types (rather than "int") allows the Prefast static analyser to understand when a function has been successful (and thus when its postconditions must hold). This greatly reduces then number of false positives reported by prefast for error paths in common code functions. Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days 291435 by adrian: u32 -> uint32_t. 291434 by arybchik: sfxge: cleanup: fix prefast annotations on mac stats updates Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days X-MFC with: r291397 291433 by adrian: [ath_hal] add AR9461 (jupiter) 2.1 support. Obtained from:=09Linux ath9k 291432 by arybchik: sfxge: modify nvram update functions for uio platform to support RFID-selec= table presets Dynamic config partitions on boards that support RFID are divided into a number of segments, each formatted like a partition, with header, trailer and end tags. The first segment is the current active configuration. The segments are initialised by manftest and each contain a different configuration e.g. firmware variant. The firmware can be instructed via RFID to copy a segment over the first segment, hence changing the active configuration. This allows ops to change the configuration of a board prior to shipment using RFID. Changes to the dynamic config may need to be written to all segments (in particular firmware versions written by manftest) or just the first segment (changes to the active configuration). See SF-111324-SW. If only the first segment is written the code still needs to be aware of the possible presence of subsequent segments as writing to a segment may cause its size to increase, which would overwrite the subsequent segments and invalidate them. Boards that do not support RFID will only have one segment in their dynamic config partition. Submitted by: Paul Fox Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4302 The end of the build log: [...truncated 275627 lines...] --- modules-all --- --- all_subdir_cmx --- =3D=3D=3D> cmx (all) --- cmx.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cmx.o -MTc= mx.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-a= synchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-= 2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -= D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-sho= w-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-= empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wn= o-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -s= td=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cmx/../../dev/cmx/cmx= .c -o cmx.o --- all_subdir_cloudabi64 --- ctfconvert -L VERSION -g cloudabi64_fd.o --- cloudabi64_module.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _module.o -MTcloudabi64_module.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -= mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrap= v -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-taut= ological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wn= o-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-= value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/m= odules/cloudabi64/../../compat/cloudabi64/cloudabi64_module.c -o cloudabi64= _module.o ctfconvert -L VERSION -g cloudabi64_module.o --- cloudabi64_poll.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _poll.o -MTcloudabi64_poll.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-= sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -f= stack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict= -prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wu= ndef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-includ= e-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautolog= ical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-er= ror-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-valu= e -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modul= es/cloudabi64/../../compat/cloudabi64/cloudabi64_poll.c -o cloudabi64_poll.= o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_ani.o --- all_subdir_cmx --- ctfconvert -L VERSION -g cmx.o --- cmx_pccard.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cmx_pccard= .o -MTcmx_pccard.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft= -float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-prot= ector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototype= s -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-= pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fd= iagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compa= re -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused= -function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-ae= s -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cmx/../= ../dev/cmx/cmx_pccard.c -o cmx_pccard.o --- all_subdir_ath --- --- ar9300_keycache.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_keycache.o -MTar9300_keycache.o -mcmo= del=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronou= s-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -W= redundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes = -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf_= _=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option = -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body= -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-po= inter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso98= 99:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_h= al/ar9300/ar9300_keycache.c -o ar9300_keycache.o --- all_subdir_cloudabi --- ctfconvert -L VERSION -g cloudabi_fd.o --- all_subdir_cloudabi64 --- ctfconvert -L VERSION -g cloudabi64_poll.o --- cloudabi64_sock.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _sock.o -MTcloudabi64_sock.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-= sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -f= stack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict= -prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wu= ndef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-includ= e-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautolog= ical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-er= ror-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-valu= e -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modul= es/cloudabi64/../../compat/cloudabi64/cloudabi64_sock.c -o cloudabi64_sock.= o --- all_subdir_cloudabi --- --- cloudabi_file.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_f= ile.o -MTcloudabi_file.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse = -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstac= k-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological= -compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-= unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -= mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/c= loudabi/../../compat/cloudabi/cloudabi_file.c -o cloudabi_file.o --- all_subdir_cmx --- ctfconvert -L VERSION -g cmx_pccard.o --- cmx.ko.full --- ld -d -warn-common -r -d -o cmx.ko.full cmx.o cmx_pccard.o ctfmerge -L VERSION -g -o cmx.ko.full cmx.o cmx_pccard.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cmx.ko.full export_syms= | xargs -J% objcopy % cmx.ko.full --- cmx.ko.debug --- objcopy --only-keep-debug cmx.ko.full cmx.ko.debug --- cmx.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcmx.ko.debug cmx.ko.full cmx.k= o --- all_subdir_cloudabi --- --- cloudabi_futex.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_f= utex.o -MTcloudabi_futex.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-ss= e -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fst= ack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-p= rototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wund= ef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-= dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautologic= al-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-erro= r-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value = -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules= /cloudabi/../../compat/cloudabi/cloudabi_futex.c -o cloudabi_futex.o --- all_subdir_cloudabi64 --- ctfconvert -L VERSION -g cloudabi64_sock.o --- cloudabi64_syscalls.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _syscalls.o -MTcloudabi64_syscalls.o -mcmodel=3Dkernel -mno-red-zone -mno-m= mx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -f= wrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs = -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-q= ual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissin= g-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-= tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality= -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negat= ive-value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/s= ys/modules/cloudabi64/../../compat/cloudabi64/cloudabi64_syscalls.c -o clou= dabi64_syscalls.o ctfconvert -L VERSION -g cloudabi64_syscalls.o --- cloudabi64_sysent.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _sysent.o -MTcloudabi64_sysent.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -= mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrap= v -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-taut= ological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wn= o-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-= value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/m= odules/cloudabi64/../../compat/cloudabi64/cloudabi64_sysent.c -o cloudabi64= _sysent.o ctfconvert -L VERSION -g cloudabi64_sysent.o --- cloudabi64_sysvec.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _sysvec.o -MTcloudabi64_sysvec.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -= mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrap= v -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-taut= ological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wn= o-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-= value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/m= odules/cloudabi64/../../amd64/cloudabi64/cloudabi64_sysvec.c -o cloudabi64_= sysvec.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_keycache.o --- all_subdir_cloudabi --- --- cloudabi_file.o --- ctfconvert -L VERSION -g cloudabi_file.o --- all_subdir_ath --- --- ar9300_radio.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radio.o -MTar9300_radio.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radio.c -o ar9300_radio.o --- ar9300_xmit.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_xmit.o -MTar9300_xmit.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar930= 0/ar9300_xmit.c -o ar9300_xmit.o --- all_subdir_cloudabi64 --- ctfconvert -L VERSION -g cloudabi64_sysvec.o --- cloudabi64_thread.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi64= _thread.o -MTcloudabi64_thread.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -= mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrap= v -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-taut= ological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wn= o-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-= value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/m= odules/cloudabi64/../../compat/cloudabi64/cloudabi64_thread.c -o cloudabi64= _thread.o --- all_subdir_cloudabi --- --- cloudabi_futex.o --- ctfconvert -L VERSION -g cloudabi_futex.o --- cloudabi_mem.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_m= em.o -MTcloudabi_mem.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/clo= udabi/../../compat/cloudabi/cloudabi_mem.c -o cloudabi_mem.o --- all_subdir_cloudabi64 --- ctfconvert -L VERSION -g cloudabi64_thread.o --- cloudabi64.ko.full --- ld -d -warn-common -r -d -o cloudabi64.ko.full cloudabi64_fd.o cloudabi64_m= odule.o cloudabi64_poll.o cloudabi64_sock.o cloudabi64_syscalls.o cloudabi6= 4_sysent.o cloudabi64_sysvec.o cloudabi64_thread.o ctfmerge -L VERSION -g -o cloudabi64.ko.full cloudabi64_fd.o cloudabi64_mod= ule.o cloudabi64_poll.o cloudabi64_sock.o cloudabi64_syscalls.o cloudabi64_= sysent.o cloudabi64_sysvec.o cloudabi64_thread.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cloudabi64.ko.full expo= rt_syms | xargs -J% objcopy % cloudabi64.ko.full --- cloudabi64.ko.debug --- objcopy --only-keep-debug cloudabi64.ko.full cloudabi64.ko.debug --- cloudabi64.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcloudabi64.ko.debug cloudabi64= .ko.full cloudabi64.ko --- all_subdir_cloudabi --- --- cloudabi_proc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_p= roc.o -MTcloudabi_proc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse = -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstac= k-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological= -compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-= unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -= mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/c= loudabi/../../compat/cloudabi/cloudabi_proc.c -o cloudabi_proc.o --- all_subdir_ath --- --- ar9300_radio.o --- ctfconvert -L VERSION -g ar9300_radio.o --- evevent.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evevent.o -MTevevent.o -mcmodel=3Dkernel= -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tab= les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de= cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebs= d_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown= -pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error= -parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -= Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Wer= ror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evevent.= c --- modules-all --- --- all_subdir_cloudabi --- --- cloudabi_mem.o --- ctfconvert -L VERSION -g cloudabi_mem.o --- all_subdir_coretemp --- =3D=3D=3D> coretemp (all) --- coretemp.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.coretemp.o= -MTcoretemp.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/coretemp/..= /../dev/coretemp/coretemp.c -o coretemp.o --- all_subdir_cloudabi --- --- cloudabi_proc.o --- ctfconvert -L VERSION -g cloudabi_proc.o --- cloudabi_random.o --- --- evevent.o --- ctfconvert -L VERSION -g evevent.o --- modules-all --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_r= andom.o -MTcloudabi_random.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-= sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -f= stack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict= -prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wu= ndef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-includ= e-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautolog= ical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-er= ror-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-valu= e -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modul= es/cloudabi/../../compat/cloudabi/cloudabi_random.c -o cloudabi_random.o --- all_subdir_cpuctl --- =3D=3D=3D> cpuctl (all) --- cpuctl.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cpuctl.o -= MTcpuctl.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpuctl/../../de= v/cpuctl/cpuctl.c -o cpuctl.o --- all_subdir_ath --- --- ar9300_xmit.o --- ctfconvert -L VERSION -g ar9300_xmit.o --- all_subdir_cloudabi --- ctfconvert -L VERSION -g cloudabi_random.o --- cloudabi_sock.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_s= ock.o -MTcloudabi_sock.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse = -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstac= k-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological= -compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-= unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -= mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/c= loudabi/../../compat/cloudabi/cloudabi_sock.c -o cloudabi_sock.o --- all_subdir_ath --- --- ar9300_attach.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_attach.o -MTar9300_attach.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__= =3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body = -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poi= nter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso989= 9:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_ha= l/ar9300/ar9300_attach.c -o ar9300_attach.o --- all_subdir_coretemp --- ctfconvert -L VERSION -g coretemp.o --- coretemp.ko.full --- ld -d -warn-common -r -d -o coretemp.ko.full coretemp.o ctfmerge -L VERSION -g -o coretemp.ko.full coretemp.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk coretemp.ko.full export= _syms | xargs -J% objcopy % coretemp.ko.full --- coretemp.ko.debug --- objcopy --only-keep-debug coretemp.ko.full coretemp.ko.debug --- coretemp.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcoretemp.ko.debug coretemp.ko.= full coretemp.ko --- all_subdir_cloudabi --- --- cloudabi_thread.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cloudabi_t= hread.o -MTcloudabi_thread.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-= sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -f= stack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict= -prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wu= ndef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-includ= e-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautolog= ical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-er= ror-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-valu= e -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modul= es/cloudabi/../../compat/cloudabi/cloudabi_thread.c -o cloudabi_thread.o --- all_subdir_cpuctl --- ctfconvert -L VERSION -g cpuctl.o --- cpuctl.ko.full --- ld -d -warn-common -r -d -o cpuctl.ko.full cpuctl.o ctfmerge -L VERSION -g -o cpuctl.ko.full cpuctl.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cpuctl.ko.full export_s= yms | xargs -J% objcopy % cpuctl.ko.full --- cpuctl.ko.debug --- objcopy --only-keep-debug cpuctl.ko.full cpuctl.ko.debug --- cpuctl.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcpuctl.ko.debug cpuctl.ko.full= cpuctl.ko --- all_subdir_cpufreq --- =3D=3D=3D> cpufreq (all) --- all_subdir_cloudabi --- ctfconvert -L VERSION -g cloudabi_thread.o --- all_subdir_crypto --- =3D=3D=3D> crypto (all) --- all_subdir_cloudabi --- --- cloudabi_sock.o --- ctfconvert -L VERSION -g cloudabi_sock.o --- all_subdir_cpufreq --- --- ichss.o --- --- all_subdir_cloudabi --- --- cloudabi.ko.full --- --- all_subdir_cpufreq --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ichss.o -M= Tichss.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modul--- all_subdir_cloud= abi --- ld -d -warn-common -r -d -o cloudabi.ko.full cloudabi_clock.o cloudabi_errn= o.o cloudabi_fd.o cloudabi_file.o cloudabi_futex.o cloudabi_mem.o cloudabi_= proc.o cloudabi_random.o cloudabi_sock.o cloudabi_thread.o --- all_subdir_cpufreq --- es/cpufreq/../../dev/cpufreq/ichss.c -o ichss.o --- all_subdir_cloudabi --- ctfmerge -L VERSION -g -o cloudabi.ko.full cloudabi_clock.o cloudabi_errno.= o cloudabi_fd.o cloudabi_file.o cloudabi_futex.o cloudabi_mem.o cloudabi_pr= oc.o cloudabi_random.o cloudabi_sock.o cloudabi_thread.o --- all_subdir_crypto --- --- crypto.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.crypto.o -= MTcrypto.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../op= encrypto/crypto.c -o crypto.o --- all_subdir_cloudabi --- :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cloudabi.ko.full export= _syms | xargs -J% objcopy % cloudabi.ko.full --- cloudabi.ko.debug --- objcopy --only-keep-debug cloudabi.ko.full cloudabi.ko.debug --- cloudabi.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcloudabi.ko.debug cloudabi.ko.= full cloudabi.ko --- evglock.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evglock.o -MTevglock.o -mcmodel=3Dkernel= -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tab= les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de= cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebs= d_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown= -pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error= -parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -= Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Wer= ror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evglock.= c --- modules-all --- --- all_subdir_ath --- /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/a= r9300_attach.c:45:10: fatal error: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" ^ --- evglock.o --- ctfconvert -L VERSION -g evglock.o --- modules-all --- --- all_subdir_cryptodev --- =3D=3D=3D> cryptodev (all) --- all_subdir_ath --- 1 error generated. *** [ar9300_attach.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath 1 error make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath *** [all_subdir_ath] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_cryptodev --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/cryptodev *** [all_subdir_cryptodev] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_cpufreq --- ctfconvert -L VERSION -g ichss.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/cpufreq *** [all_subdir_cpufreq] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_crypto --- ctfconvert -L VERSION -g crypto.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/crypto *** [all_subdir_crypto] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules 4 errors make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules *** [modules-all] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C 1 error make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C *** [buildkernel] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildkernel] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 08:11:34 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 415CAA3BBC9; Sun, 29 Nov 2015 08:11:34 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 26CFB151D; Sun, 29 Nov 2015 08:11:34 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 5D32D1708; Sun, 29 Nov 2015 08:11:34 +0000 (UTC) Date: Sun, 29 Nov 2015 08:11:31 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: nwhitehorn@FreeBSD.org, arybchik@FreeBSD.org, adrian@FreeBSD.org, deischen@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <480567213.225.1448784694340.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1790 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 08:11:34 -0000 FreeBSD_HEAD_i386 - Build #1790 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1790/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1790/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1790/cons= ole Change summaries: 291441 by nwhitehorn: Fix build with new binutils. This gets a working kernel with GCC 5.2 and binutils 2.24. Without this, the self-relocation code in locore64.S was failing due to a misaligned TOC section. MFC after:=092 weeks 291440 by deischen: Disable a couple of tests, perhaps temporarily, since they use private symbols that are not exported from librt. 291439 by deischen: Unbreak symbol versioning. I have no idea when it was broken, but it's bee= n at least a few months if not a year or more. 291438 by adrian: Add support for the integrated wifi for the QCA953x base config and AP143. Tested: * AP143 reference design board 291437 by adrian: Add initial support for the QCA953x SoC (honeybee) wifi. This is a 2x2 2GHz 802.11n part. It works enough at the moment to bring up, scan and associate. I haven't started using this as a day to day AP. The specifics: * add honeybee initvals * add in changes; a mix from the QCA HAL and ath9k; * fix a bug in AR_SREV_AR9580_10_OR_LATER(), which is only used for one capability check and we don't even implement it - so it's a big no-op. Shady things: * ath9k has the "platform data" define the 25/40MHz clock. This HAL .. doesn't. Honeybee gets hard-coded to 25MHz which it likely shouldn't be. I'll have to go and identify/fix those. Tested: * Qualcomm Atheros AP143 reference design board. Obtained from:=09Qualcomm Atheros; Linux ath9k 291436 by arybchik: sfxge: add prefast annotation to common code return types Using a typedef for common code return types (rather than "int") allows the Prefast static analyser to understand when a function has been successful (and thus when its postconditions must hold). This greatly reduces then number of false positives reported by prefast for error paths in common code functions. Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days 291435 by adrian: u32 -> uint32_t. 291434 by arybchik: sfxge: cleanup: fix prefast annotations on mac stats updates Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days X-MFC with: r291397 291433 by adrian: [ath_hal] add AR9461 (jupiter) 2.1 support. Obtained from:=09Linux ath9k The end of the build log: [...truncated 158131 lines...] --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /drm/../../../dev/drm/ati_pcigart.c /usr/src/sys/modules/drm/drm/../../../d= ev/drm/drm_agpsupport.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_a= uth.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_bufs.c /usr/src/sys= /modules/drm/drm/../../../dev/drm/drm_context.c /usr/src/sys/modules/drm/dr= m/../../../dev/drm/drm_dma.c /usr/src/sys/modules/drm/drm/../../../dev/drm/= drm_drawable.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c /usr= /src/sys/modules/drm/drm/../../../dev/drm/drm_fops.c /usr/src/sys/modules/d= rm/drm/../../../dev/drm/drm_hashtab.c /usr/src/sys/modules/drm/drm/../../..= /dev/drm/drm_ioctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_irq.= c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_lock.c /usr/src/sys/mod= ules/drm/drm/../../../dev/drm/drm_memory.c /usr/src/sys/modules/drm/drm/../= ../../dev/drm/drm_mm.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_pc= i.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_scatter.c /usr/src/sy= s/modules/drm/drm/../../../dev/drm/drm_sman.c /usr/src/sys/modules/drm/drm/= ../../../dev/drm/drm_sysctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm= /drm_vm.c --- depend_subdir_i915 --- =3D=3D=3D> drm/i915 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /i915/../../../dev/drm/i915_dma.c /usr/src/sys/modules/drm/i915/../../../de= v/drm/i915_drv.c /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_irq.c = /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_mem.c /usr/src/sys/modu= les/drm/i915/../../../dev/drm/i915_suspend.c --- depend_subdir_mach64 --- =3D=3D=3D> drm/mach64 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- --- device_if.h --- --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- depend_subdir_mga --- =3D=3D=3D> drm/mga (depend) --- depend_subdir_mach64 --- --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- depend_subdir_mga --- --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- --- depend_subdir_mach64 --- --- .depend --- --- depend_subdir_mga --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- depend_subdir_mach64 --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mach64/../../../dev/drm/mach64_dma.c /usr/src/sys/modules/drm/mach64/../..= /../dev/drm/mach64_drv.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/m= ach64_irq.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/mach64_state.c --- depend_subdir_mga --- --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mga/../../../dev/drm/mga_drv.c /usr/src/sys/modules/drm/mga/../../../dev/d= rm/mga_state.c /usr/src/sys/modules/drm/mga/../../../dev/drm/mga_warp.c /us= r/src/sys/modules/drm/mga/../../../dev/drm/mga_dma.c /usr/src/sys/modules/d= rm/mga/../../../dev/drm/mga_irq.c --- depend_subdir_drm2 --- =3D=3D=3D> drm2 (depend) --- depend_subdir_drm2 --- =3D=3D=3D> drm2/drm2 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- opt_vm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_vm.h opt_vm.h --- opt_compat.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_compat.h opt_compat.h --- opt_syscons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_syscons.h opt_syscons.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- depend_subdir_i915kms --- =3D=3D=3D> drm2/i915kms (depend) --- depend_subdir_drm2 --- --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- iicbus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbus_if.= m -h --- depend_subdir_i915kms --- --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- depend_subdir_drm2 --- --- .depend --- rm -f .depend --- depend_subdir_i915kms --- --- opt_acpi.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_acpi.h opt_acpi.h --- depend_subdir_drm2 --- CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_agpsupport.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/drm_auth.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2= /drm_bufs.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_buffer.c /= usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_context.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_crtc.c /usr/src/sys/modules/drm2/dr= m2/../../../dev/drm2/drm_crtc_helper.c /usr/src/sys/modules/drm2/drm2/../..= /../dev/drm2/drm_dma.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm= _dp_helper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_dp_iic_he= lper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_drv.c /usr/src/= sys/modules/drm2/drm2/../../../dev/drm2/drm_edid.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_fb_helper.c /usr/src/sys/modules/drm2/drm2/../= ../../dev/drm2/drm_fops.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/= drm_gem.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_gem_names.c = /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_global.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_hashtab.c /usr/src/sys/modules/drm2= /drm2/../../../dev/drm2/drm_ioctl.c /usr/src/sys/modules/drm2/drm2/../../..= /dev/drm2/drm_irq.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_li= nux_list_sort.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_lock.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_memory.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/drm_mm.c /usr/src/sys/modules/drm2/drm= 2/../../../dev/drm2/drm_modes.c /usr/src/sys/modules/drm2/drm2/../../../dev= /drm2/drm_pci.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_scatte= r.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_stub.c /usr/src/sy= s/modules/drm2/drm2/../../../dev/drm2/drm_sysctl.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_vm.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/drm_os_freebsd.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_agp_backend.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/t= tm_lock.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_object.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_tt.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/ttm/ttm_bo_util.c /usr/src/sys/modules= /drm2/drm2/../../../dev/drm2/ttm/ttm_bo.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/ttm/ttm_bo_manager.c /usr/src/sys/modules/drm2/drm2/../../.= ./dev/drm2/ttm/ttm_execbuf_util.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/ttm/ttm_memory.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_page_alloc.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/tt= m_bo_vm.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ati_pcigart.c --- depend_subdir_i915kms --- --- opt_compat.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_compat.h opt_compat.h --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- opt_syscons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_syscons.h opt_syscons.h --- acpi_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/acpica/acpi_if.m = -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- fb_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/fb/fb_if.m -h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- iicbb_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbb_if.m= -h --- iicbus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbus_if.= m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= 2/i915kms/../../../dev/drm2/i915/i915_debug.c /usr/src/sys/modules/drm2/i91= 5kms/../../../dev/drm2/i915/i915_dma.c /usr/src/sys/modules/drm2/i915kms/..= /../../dev/drm2/i915/i915_drv.c /usr/src/sys/modules/drm2/i915kms/../../../= dev/drm2/i915/i915_gem.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm= 2/i915/i915_gem_context.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_execbuffer.c /usr/src/sys/modules/drm2/i915kms/../../../de= v/drm2/i915/i915_gem_evict.c /usr/src/sys/modules/drm2/i915kms/../../../dev= /drm2/i915/i915_gem_gtt.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_stolen.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_tiling.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_irq.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915= /i915_suspend.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/in= tel_bios.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_c= rt.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_ddi.c /= usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_display.c /us= r/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_dp.c /usr/src/s= ys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_fb.c /usr/src/sys/modu= les/drm2/i915kms/../../../dev/drm2/i915/intel_hdmi.c /usr/src/sys/modules/d= rm2/i915kms/../../../dev/drm2/i915/intel_iic.c /usr/src/sys/modules/drm2/i9= 15kms/../../../dev/drm2/i915/intel_lvds.c /usr/src/sys/modules/drm2/i915kms= /../../../dev/drm2/i915/intel_modes.c /usr/src/sys/modules/drm2/i915kms/../= ../../dev/drm2/i915/intel_opregion.c /usr/src/sys/modules/drm2/i915kms/../.= ./../dev/drm2/i915/intel_overlay.c /usr/src/sys/modules/drm2/i915kms/../../= ../dev/drm2/i915/intel_panel.c /usr/src/sys/modules/drm2/i915kms/../../../d= ev/drm2/i915/intel_pm.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2= /i915/intel_ringbuffer.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm= 2/i915/intel_sdvo.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i91= 5/intel_sprite.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/i= ntel_tv.c --- depend_subdir_drm --- --- depend_subdir_r128 --- =3D=3D=3D> drm/r128 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /r128/../../../dev/drm/r128_cce.c /usr/src/sys/modules/drm/r128/../../../de= v/drm/r128_drv.c /usr/src/sys/modules/drm/r128/../../../dev/drm/r128_irq.c = /usr/src/sys/modules/drm/r128/../../../dev/drm/r128_state.c --- depend_subdir_radeon --- =3D=3D=3D> drm/radeon (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /radeon/../../../dev/drm/r300_cmdbuf.c /usr/src/sys/modules/drm/radeon/../.= ./../dev/drm/r600_blit.c /usr/src/sys/modules/drm/radeon/../../../dev/drm/r= 600_cp.c /usr/src/sys/modules/drm/radeon/../../../dev/drm/radeon_cp.c /usr/= src/sys/modules/drm/radeon/../../../dev/drm/radeon_cs.c /usr/src/sys/module= s/drm/radeon/../../../dev/drm/radeon_drv.c /usr/src/sys/modules/drm/radeon/= ../../../dev/drm/radeon_irq.c /usr/src/sys/modules/drm/radeon/../../../dev/= drm/radeon_mem.c /usr/src/sys/modules/drm/radeon/../../../dev/drm/radeon_st= ate.c --- depend_subdir_ath --- mkdep: compile failed *** [.depend] Error code 1 make[4]: stopped in /usr/src/sys/modules/ath 1 error make[4]: stopped in /usr/src/sys/modules/ath *** [depend_subdir_ath] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm/radeon *** [depend_subdir_radeon] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm 1 error make[4]: stopped in /usr/src/sys/modules/drm *** [depend_subdir_drm] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm2 --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm2/i915kms *** [depend_subdir_i915kms] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm2 --- depend_subdir_drm2 --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm2/drm2 *** [depend_subdir_drm2] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm2 2 errors make[4]: stopped in /usr/src/sys/modules/drm2 *** [depend_subdir_drm2] Error code 2 make[3]: stopped in /usr/src/sys/modules 3 errors make[3]: stopped in /usr/src/sys/modules *** [modules-depend] Error code 2 make[2]: stopped in /usr/obj/usr/src/sys/GENERIC 1 error make[2]: stopped in /usr/obj/usr/src/sys/GENERIC *** [buildkernel] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildkernel] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson2734922500378474477.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 08:36:56 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34B54A3A121 for ; Sun, 29 Nov 2015 08:36:56 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0BAE1E7A for ; Sun, 29 Nov 2015 08:36:55 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtp (envelope-from ) id <1a2xTT-000h0w-36>; Sun, 29 Nov 2015 09:36:47 +0100 Received: from x5ce139f8.dyn.telefonica.de ([92.225.57.248] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (envelope-from ) id <1a2xTS-0013aR-Th>; Sun, 29 Nov 2015 09:36:47 +0100 Date: Sun, 29 Nov 2015 09:36:41 +0100 From: "O. Hartmann" To: FreeBSD CURRENT Subject: CURRENT: r291443: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" Message-ID: <20151129093641.7049bf93.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/Plqjrd56XCEIXUi4=XDJG3k"; protocol="application/pgp-signature" X-Originating-IP: 92.225.57.248 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 08:36:56 -0000 --Sig_/Plqjrd56XCEIXUi4=XDJG3k Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable CURRENT (At revision 291443.) fails building kernel with: [...] make[2]: stopped in /usr/obj/usr/src/sys/GATE --- .depend --- /usr/src/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c:45:10: fatal er= ror: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" oh --Sig_/Plqjrd56XCEIXUi4=XDJG3k Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWWrkZAAoJEOgBcD7A/5N8xIIIALqBEKd4R8gsFh23bay2zeFQ uHHXHu1AGF9LOTEKvbtJLtm3Km4+ypDZjHt0SpRc2lmT6xrFRLMnneliStJpBNvd rmtynjt3vuNudLPO6V7M0vMKe4tk7rdm3Bh/pjFff8KA6Y3iNN6pprgMpVF/T1mP Ha7x7plrlhDfyGht6Wn8GH37pdEHjKGqCkMv1lxvh5NENfPdaDU13yvQCnPYl77b MPPFVVgB6z3oCSeebP8H9wI2u4xjLkWuJsF/q/iigJKhAwL4sOXZTshySDwMpSBv UbFH6M4dHEAgBTdX9n1HyOtTGC8jf0I2j97mRMI8Q/zY9p17AZUiZJ54SSlQa6c= =mqyc -----END PGP SIGNATURE----- --Sig_/Plqjrd56XCEIXUi4=XDJG3k-- From owner-freebsd-current@freebsd.org Sun Nov 29 09:39:33 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AA14A3B0FF for ; Sun, 29 Nov 2015 09:39:33 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-oi0-x22a.google.com (mail-oi0-x22a.google.com [IPv6:2607:f8b0:4003:c06::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC25311FF; Sun, 29 Nov 2015 09:39:32 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by oies6 with SMTP id s6so81502471oie.1; Sun, 29 Nov 2015 01:39:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=BS1aGGNIjLYL9MRe7rEzJC3SV4BCxx889+C6rYD452g=; b=SSSeRa8XVrkJy4SC0YK6oty4UGt7Koe/ZFiKj/9Eh6cbnWB3VWqtFqMBUiaqmDoMuM CQjTdPxJXjlQ4mY4AvMKWmEUQQQtUCN2a3z0frcgCiLyJu14bsFm8TafriaIVF8c4Q5J vxe7dnFvO57GrinFS/QkWsxmvz89wBzZeu9GdvnTE+AdTPQhVHrDf3AShyihAaERVpW1 Dngzie7H8HASCnJNqi/wy88iPq+F7Z+Tu4fOrpyUgmLtVAWQlxr78MOANDc11gl3w9sC 6UQ58+R01M5OwfC5Bd4gJNza7UbhV9vhwUm1Q3E2AcE9OZgKacuhXMIcj8LrhfYBA1z8 mT3A== X-Received: by 10.202.98.86 with SMTP id w83mr37284689oib.135.1448789972136; Sun, 29 Nov 2015 01:39:32 -0800 (PST) Received: from ?IPv6:2601:601:800:126d:2802:e2ed:33ec:fa6a? ([2601:601:800:126d:2802:e2ed:33ec:fa6a]) by smtp.gmail.com with ESMTPSA id i8sm19392452oib.12.2015.11.29.01.39.29 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 29 Nov 2015 01:39:30 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: CURRENT: r291443: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" From: NGie Cooper In-Reply-To: <20151129093641.7049bf93.ohartman@zedat.fu-berlin.de> Date: Sun, 29 Nov 2015 01:39:28 -0800 Cc: FreeBSD CURRENT , Adrian Chadd Content-Transfer-Encoding: quoted-printable Message-Id: References: <20151129093641.7049bf93.ohartman@zedat.fu-berlin.de> To: "O. Hartmann" X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 09:39:33 -0000 > On Nov 29, 2015, at 00:36, O. Hartmann = wrote: >=20 > CURRENT (At revision 291443.) fails building kernel with: >=20 > [...] > make[2]: stopped in /usr/obj/usr/src/sys/GATE > --- .depend --- > /usr/src/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c:45:10: = fatal error: > 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" Some .ini files/directories seem to have been missed in the past few = commits..= From owner-freebsd-current@freebsd.org Sun Nov 29 10:10:43 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7DCAA3BB4E; Sun, 29 Nov 2015 10:10:43 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id AD8FD1076; Sun, 29 Nov 2015 10:10:43 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 9EE4F1755; Sun, 29 Nov 2015 10:10:43 +0000 (UTC) Date: Sun, 29 Nov 2015 10:10:41 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: nwhitehorn@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1732762240.229.1448791843619.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <480567213.225.1448784694340.JavaMail.jenkins@jenkins-9.freebsd.org> References: <480567213.225.1448784694340.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1791 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 10:10:44 -0000 FreeBSD_HEAD_i386 - Build #1791 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1791/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1791/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1791/cons= ole Change summaries: 291442 by nwhitehorn: Make ELFv2 powerpc64 kernels build and run. Loader support will come in a separate commit. The end of the build log: [...truncated 158599 lines...] --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- depend_subdir_drm --- --- machine --- --- depend_subdir_dpt --- --- .depend --- rm -f .depend --- depend_subdir_drm --- machine -> /usr/src/sys/i386/include --- depend_subdir_dpt --- CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/dev/dpt/dpt= _scsi.c /usr/src/sys/dev/dpt/dpt_pci.c --- depend_subdir_drm --- --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /drm/../../../dev/drm/ati_pcigart.c /usr/src/sys/modules/drm/drm/../../../d= ev/drm/drm_agpsupport.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_a= uth.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_bufs.c /usr/src/sys= /modules/drm/drm/../../../dev/drm/drm_context.c /usr/src/sys/modules/drm/dr= m/../../../dev/drm/drm_dma.c /usr/src/sys/modules/drm/drm/../../../dev/drm/= drm_drawable.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c /usr= /src/sys/modules/drm/drm/../../../dev/drm/drm_fops.c /usr/src/sys/modules/d= rm/drm/../../../dev/drm/drm_hashtab.c /usr/src/sys/modules/drm/drm/../../..= /dev/drm/drm_ioctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_irq.= c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_lock.c /usr/src/sys/mod= ules/drm/drm/../../../dev/drm/drm_memory.c /usr/src/sys/modules/drm/drm/../= ../../dev/drm/drm_mm.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_pc= i.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_scatter.c /usr/src/sy= s/modules/drm/drm/../../../dev/drm/drm_sman.c /usr/src/sys/modules/drm/drm/= ../../../dev/drm/drm_sysctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm= /drm_vm.c --- depend_subdir_i915 --- =3D=3D=3D> drm/i915 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /i915/../../../dev/drm/i915_dma.c /usr/src/sys/modules/drm/i915/../../../de= v/drm/i915_drv.c /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_irq.c = /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_mem.c /usr/src/sys/modu= les/drm/i915/../../../dev/drm/i915_suspend.c --- depend_subdir_drm2 --- =3D=3D=3D> drm2 (depend) --- depend_subdir_drm2 --- =3D=3D=3D> drm2/drm2 (depend) --- depend_subdir_drm --- --- depend_subdir_mach64 --- =3D=3D=3D> drm/mach64 (depend) --- depend_subdir_drm2 --- --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- opt_vm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_vm.h opt_vm.h --- opt_compat.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_compat.h opt_compat.h --- depend_subdir_drm --- --- machine --- --- depend_subdir_drm2 --- --- opt_syscons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_syscons.h opt_syscons.h --- depend_subdir_drm --- machine -> /usr/src/sys/i386/include --- depend_subdir_drm2 --- --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- depend_subdir_drm --- --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- depend_subdir_drm2 --- --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- depend_subdir_drm --- --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- depend_subdir_drm2 --- --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- depend_subdir_drm --- --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- depend_subdir_drm2 --- --- iicbus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbus_if.= m -h --- depend_subdir_drm --- --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mach64/../../../dev/drm/mach64_dma.c /usr/src/sys/modules/drm/mach64/../..= /../dev/drm/mach64_drv.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/m= ach64_irq.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/mach64_state.c --- depend_subdir_drm2 --- --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_agpsupport.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/drm_auth.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2= /drm_bufs.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_buffer.c /= usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_context.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_crtc.c /usr/src/sys/modules/drm2/dr= m2/../../../dev/drm2/drm_crtc_helper.c /usr/src/sys/modules/drm2/drm2/../..= /../dev/drm2/drm_dma.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm= _dp_helper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_dp_iic_he= lper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_drv.c /usr/src/= sys/modules/drm2/drm2/../../../dev/drm2/drm_edid.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_fb_helper.c /usr/src/sys/modules/drm2/drm2/../= ../../dev/drm2/drm_fops.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/= drm_gem.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_gem_names.c = /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_global.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_hashtab.c /usr/src/sys/modules/drm2= /drm2/../../../dev/drm2/drm_ioctl.c /usr/src/sys/modules/drm2/drm2/../../..= /dev/drm2/drm_irq.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_li= nux_list_sort.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_lock.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_memory.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/drm_mm.c /usr/src/sys/modules/drm2/drm= 2/../../../dev/drm2/drm_modes.c /usr/src/sys/modules/drm2/drm2/../../../dev= /drm2/drm_pci.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_scatte= r.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_stub.c /usr/src/sy= s/modules/drm2/drm2/../../../dev/drm2/drm_sysctl.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_vm.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/drm_os_freebsd.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_agp_backend.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/t= tm_lock.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_object.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_tt.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/ttm/ttm_bo_util.c /usr/src/sys/modules= /drm2/drm2/../../../dev/drm2/ttm/ttm_bo.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/ttm/ttm_bo_manager.c /usr/src/sys/modules/drm2/drm2/../../.= ./dev/drm2/ttm/ttm_execbuf_util.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/ttm/ttm_memory.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_page_alloc.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/tt= m_bo_vm.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ati_pcigart.c --- depend_subdir_i915kms --- =3D=3D=3D> drm2/i915kms (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_acpi.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_acpi.h opt_acpi.h --- opt_compat.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_compat.h opt_compat.h --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- opt_syscons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_syscons.h opt_syscons.h --- acpi_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/acpica/acpi_if.m = -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- fb_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/fb/fb_if.m -h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- iicbb_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbb_if.m= -h --- iicbus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbus_if.= m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= 2/i915kms/../../../dev/drm2/i915/i915_debug.c /usr/src/sys/modules/drm2/i91= 5kms/../../../dev/drm2/i915/i915_dma.c /usr/src/sys/modules/drm2/i915kms/..= /../../dev/drm2/i915/i915_drv.c /usr/src/sys/modules/drm2/i915kms/../../../= dev/drm2/i915/i915_gem.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm= 2/i915/i915_gem_context.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_execbuffer.c /usr/src/sys/modules/drm2/i915kms/../../../de= v/drm2/i915/i915_gem_evict.c /usr/src/sys/modules/drm2/i915kms/../../../dev= /drm2/i915/i915_gem_gtt.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_stolen.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_gem_tiling.c /usr/src/sys/modules/drm2/i915kms/../../../dev/dr= m2/i915/i915_irq.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915= /i915_suspend.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/in= tel_bios.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_c= rt.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_ddi.c /= usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_display.c /us= r/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_dp.c /usr/src/s= ys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_fb.c /usr/src/sys/modu= les/drm2/i915kms/../../../dev/drm2/i915/intel_hdmi.c /usr/src/sys/modules/d= rm2/i915kms/../../../dev/drm2/i915/intel_iic.c /usr/src/sys/modules/drm2/i9= 15kms/../../../dev/drm2/i915/intel_lvds.c /usr/src/sys/modules/drm2/i915kms= /../../../dev/drm2/i915/intel_modes.c /usr/src/sys/modules/drm2/i915kms/../= ../../dev/drm2/i915/intel_opregion.c /usr/src/sys/modules/drm2/i915kms/../.= ./../dev/drm2/i915/intel_overlay.c /usr/src/sys/modules/drm2/i915kms/../../= ../dev/drm2/i915/intel_panel.c /usr/src/sys/modules/drm2/i915kms/../../../d= ev/drm2/i915/intel_pm.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2= /i915/intel_ringbuffer.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm= 2/i915/intel_sdvo.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i91= 5/intel_sprite.c /usr/src/sys/modules/drm2/i915kms/../../../dev/drm2/i915/i= ntel_tv.c --- depend_subdir_drm --- --- depend_subdir_mga --- =3D=3D=3D> drm/mga (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mga/../../../dev/drm/mga_drv.c /usr/src/sys/modules/drm/mga/../../../dev/d= rm/mga_state.c /usr/src/sys/modules/drm/mga/../../../dev/drm/mga_warp.c /us= r/src/sys/modules/drm/mga/../../../dev/drm/mga_dma.c /usr/src/sys/modules/d= rm/mga/../../../dev/drm/mga_irq.c --- depend_subdir_r128 --- =3D=3D=3D> drm/r128 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- device_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h --- bus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h --- pci_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /r128/../../../dev/drm/r128_cce.c /usr/src/sys/modules/drm/r128/../../../de= v/drm/r128_drv.c /usr/src/sys/modules/drm/r128/../../../dev/drm/r128_irq.c = /usr/src/sys/modules/drm/r128/../../../dev/drm/r128_state.c --- depend_subdir_ath --- mkdep: compile failed *** [.depend] Error code 1 make[4]: stopped in /usr/src/sys/modules/ath 1 error make[4]: stopped in /usr/src/sys/modules/ath *** [depend_subdir_ath] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm/r128 *** [depend_subdir_r128] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm 1 error make[4]: stopped in /usr/src/sys/modules/drm *** [depend_subdir_drm] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm2 --- --- depend_subdir_drm2 --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm2/drm2 *** [depend_subdir_drm2] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm2 --- depend_subdir_i915kms --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm2/i915kms *** [depend_subdir_i915kms] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm2 2 errors make[4]: stopped in /usr/src/sys/modules/drm2 *** [depend_subdir_drm2] Error code 2 make[3]: stopped in /usr/src/sys/modules 3 errors make[3]: stopped in /usr/src/sys/modules *** [modules-depend] Error code 2 make[2]: stopped in /usr/obj/usr/src/sys/GENERIC 1 error make[2]: stopped in /usr/obj/usr/src/sys/GENERIC *** [buildkernel] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildkernel] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3933899728980037313.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 10:29:09 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D89FA3BEC7 for ; Sun, 29 Nov 2015 10:29:09 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E38CC18D6 for ; Sun, 29 Nov 2015 10:29:08 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id E1C7CA3BEC6; Sun, 29 Nov 2015 10:29:08 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C783AA3BEC5 for ; Sun, 29 Nov 2015 10:29:08 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7307C18D5 for ; Sun, 29 Nov 2015 10:29:08 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tATAT32r037306 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 29 Nov 2015 12:29:03 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tATAT32r037306 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tATAT3nN037305; Sun, 29 Nov 2015 12:29:03 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 29 Nov 2015 12:29:03 +0200 From: Konstantin Belousov To: Daniel Eischen Cc: current@freebsd.org Subject: Re: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) Message-ID: <20151129102903.GD3448@kib.kiev.ua> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 10:29:09 -0000 On Sun, Nov 29, 2015 at 01:23:04AM -0500, Daniel Eischen wrote: > On Fri, 27 Nov 2015, Daniel Eischen wrote: > > > Damn, please use deischen@freebsd.org for replies. > > > > On Fri, 27 Nov 2015, Daniel Eischen wrote: > > > >> On Fri, 27 Nov 2015, Daniel Eischen wrote: > >> > >>> $ uname -a > >>> FreeBSD vega 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r277320: Mon Jan 19 > >>> 09:02:50 EST 2015 > >>> deischen@vega:/usr/FreeBSD/svn/obj/usr/FreeBSD/svn/src/sys/vega amd64 > >>> > >>> Upgrading to today's current, 'rm -rf /usr/obj/*; make -j8 buildworld' > >>> fails here: > >>> > >>> ===> lib/libc/tests/gen/execve (buildconfig) > >>> --- all_subdir_tests --- > >>> --- all_subdir_mqueue --- > >>> mqtest3.o: In function `main': > >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x139): undefined > >>> reference to `__mq_oshandle' > >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x14c): undefined > >>> reference to `__mq_oshandle' > >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x16c): undefined > >>> reference to `__mq_oshandle' > >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3e6): undefined > >>> reference to `__mq_oshandle' > >>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3f9): undefined > >>> reference to `__mq_oshandle' > >>> mqtest3.o:/usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x40f): > >>> more undefined references to `__mq_oshandle' follow > >>> cc: error: linker command failed with exit code 1 (use -v to see > >>> invocation) > >>> > >>> Going to try make [-j1], next, but anyone come across this? > >> > >> Still fails. > >> > >> Why do the tests in tests/sys/mqueue/ try to use non-public APIs? > > So I found out that sometime in the last year or so, symbol versioning > for librt was broken and leaking symbols that shouldn't have been > leaked. I've just committed a fix for this. > > Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' > and see the non FBSD_foo symbols that shouldn't be there. I did the following on the librt from the HEAD of about month ago: pooma% ls -l netboot/sandy/usr/lib/librt.so.1 -r--r--r-- 1 root wheel 23704 Oct 24 23:35 netboot/sandy/usr/lib/librt.so.1 pooma% readelf -sw netboot/sandy/usr/lib/librt.so.1 | grep GLOBAL | grep -v UND | grep -v FBSDpriv | grep FBSD 97: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS FBSD_1.0 But I think that your commit is the good change. From owner-freebsd-current@freebsd.org Sun Nov 29 10:37:06 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C2D3A3C091 for ; Sun, 29 Nov 2015 10:37:06 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3CF6D1C1D; Sun, 29 Nov 2015 10:37:06 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 92CBE175C; Sun, 29 Nov 2015 10:37:06 +0000 (UTC) Date: Sun, 29 Nov 2015 10:37:04 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: nwhitehorn@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1591302060.231.1448793426563.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1379486280.223.1448782782258.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1379486280.223.1448782782258.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3584 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 10:37:06 -0000 FreeBSD_HEAD - Build #3584 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3584/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3584/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3584/console Change summaries: 291442 by nwhitehorn: Make ELFv2 powerpc64 kernels build and run. Loader support will come in a separate commit. 291441 by nwhitehorn: Fix build with new binutils. This gets a working kernel with GCC 5.2 and binutils 2.24. Without this, the self-relocation code in locore64.S was failing due to a misaligned TOC section. MFC after:=092 weeks The end of the build log: [...truncated 284384 lines...] --- all_subdir_ath --- --- ar9300_interrupts.o --- ctfconvert -L VERSION -g ar9300_interrupts.o --- all_subdir_crypto --- --- crypto.o --- ctfconvert -L VERSION -g crypto.o --- nsxfeval.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.nsxfeval.o -MTnsxfeval.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -W= error /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/namespace/nsx= feval.c --- modules-all --- --- cryptosoft.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptosoft= .o -MTcryptosoft.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft= -float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-prot= ector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototype= s -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-= pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fd= iagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compa= re -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused= -function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-ae= s -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/= ../../opencrypto/cryptosoft.c -o cryptosoft.o --- all_subdir_cpufreq --- --- est.o --- ctfconvert -L VERSION -g est.o --- hwpstate.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.hwpstate.o= -MThwpstate.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpufreq/../= ../x86/cpufreq/hwpstate.c -o hwpstate.o --- all_subdir_ath --- --- ar9300_radar.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radar.o -MTar9300_radar.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radar.c -o ar9300_radar.o --- nsxfeval.o --- ctfconvert -L VERSION -g nsxfeval.o --- modules-all --- --- all_subdir_cpufreq --- --- p4tcc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.p4tcc.o -M= Tp4tcc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpufreq/../../x86= /cpufreq/p4tcc.c -o p4tcc.o --- hwpstate.o --- ctfconvert -L VERSION -g hwpstate.o --- all_subdir_cryptodev --- =3D=3D=3D> cryptodev (all) --- cryptodev.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptodev.= o -MTcryptodev.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-f= loat -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protec= tor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-po= inter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare= -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-f= unction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes = -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cryptodev= /../../opencrypto/cryptodev.c -o cryptodev.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_radar.o --- all_subdir_cpufreq --- --- p4tcc.o --- ctfconvert -L VERSION -g p4tcc.o --- powernow.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.powernow.o= -MTpowernow.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpufreq/../= ../x86/cpufreq/powernow.c -o powernow.o --- all_subdir_ath --- --- ar9300_ani.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_ani.o -MTar9300_ani.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/= ar9300_ani.c -o ar9300_ani.o --- all_subdir_crypto --- ctfconvert -L VERSION -g cryptosoft.o --- xform.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.xform.o -M= Txform.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../open= crypto/xform.c -o xform.o ctfconvert -L VERSION -g xform.o --- cast.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cast.o -MT= cast.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno= -asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwar= f-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing= -prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign= -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-s= how-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-erro= r-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -= Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx = -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../opencr= ypto/cast.c -o cast.o --- all_subdir_cpufreq --- ctfconvert -L VERSION -g powernow.o --- cpufreq.ko.full --- ld -d -warn-common -r -d -o cpufreq.ko.full ichss.o est.o hwpstate.o p4tcc.= o powernow.o ctfmerge -L VERSION -g -o cpufreq.ko.full ichss.o est.o hwpstate.o p4tcc.o = powernow.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cpufreq.ko.full export_= syms | xargs -J% objcopy % cpufreq.ko.full --- cpufreq.ko.debug --- objcopy --only-keep-debug cpufreq.ko.full cpufreq.ko.debug --- cpufreq.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcpufreq.ko.debug cpufreq.ko.fu= ll cpufreq.ko --- nsxfname.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.nsxfname.o -MTnsxfname.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -W= error /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/namespace/nsx= fname.c --- modules-all --- --- all_subdir_cryptodev --- ctfconvert -L VERSION -g cryptodev.o --- cryptodev.ko.full --- ld -d -warn-common -r -d -o cryptodev.ko.full cryptodev.o ctfmerge -L VERSION -g -o cryptodev.ko.full cryptodev.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_ani.o --- all_subdir_cryptodev --- :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cryptodev.ko.full expor= t_syms | xargs -J% objcopy % cryptodev.ko.full --- cryptodev.ko.debug --- objcopy --only-keep-debug cryptodev.ko.full cryptodev.ko.debug --- cryptodev.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcryptodev.ko.debug cryptodev.k= o.full cryptodev.ko --- nsxfobj.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.nsxfobj.o -MTnsxfobj.o -mcmodel=3Dkernel= -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tab= les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de= cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebs= d_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown= -pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error= -parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -= Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Wer= ror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/namespace/nsxfo= bj.c --- modules-all --- --- all_subdir_ath --- --- ar9300_keycache.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_keycache.o -MTar9300_keycache.o -mcmo= del=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronou= s-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -W= redundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes = -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf_= _=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option = -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body= -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-po= inter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso98= 99:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_h= al/ar9300/ar9300_keycache.c -o ar9300_keycache.o --- all_subdir_crypto --- ctfconvert -L VERSION -g cast.o --- cryptodeflate.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptodefl= ate.o -MTcryptodeflate.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse = -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstac= k-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological= -compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-= unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -= mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/c= rypto/../../opencrypto/cryptodeflate.c -o cryptodeflate.o --- nsxfname.o --- ctfconvert -L VERSION -g nsxfname.o --- modules-all --- --- rmd160.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rmd160.o -= MTrmd160.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../op= encrypto/rmd160.c -o rmd160.o --- nsxfobj.o --- ctfconvert -L VERSION -g nsxfobj.o --- modules-all --- --- rijndael-alg-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= lg-fst.o -MTrijndael-alg-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-alg-fst.c -o rijndael-alg-fst.o --- cryptodeflate.o --- ctfconvert -L VERSION -g cryptodeflate.o --- all_subdir_cs --- =3D=3D=3D> cs (all) --- if_cs.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs.o -M= Tif_cs.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/../../dev/cs/i= f_cs.c -o if_cs.o --- all_subdir_crypto --- --- rijndael-alg-fst.o --- ctfconvert -L VERSION -g rijndael-alg-fst.o --- all_subdir_cs --- --- if_cs_isa.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_isa.= o -MTif_cs_isa.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-f= loat -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protec= tor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-po= inter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare= -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-f= unction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes = -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/../../= dev/cs/if_cs_isa.c -o if_cs_isa.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_keycache.o --- ar9300_radio.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radio.o -MTar9300_radio.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radio.c -o ar9300_radio.o --- all_subdir_cs --- ctfconvert -L VERSION -g if_cs_isa.o --- psargs.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.psargs.o -MTpsargs.o -mcmodel=3Dkernel -= mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-table= s -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decl= s -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_= kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-p= ragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-p= arentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wn= o-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Werro= r /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/parser/psargs.c --- modules-all --- --- all_subdir_crypto --- --- rmd160.o --- ctfconvert -L VERSION -g rmd160.o --- rijndael-api.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi.o -MTrijndael-api.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cry= pto/../../crypto/rijndael/rijndael-api.c -o rijndael-api.o ctfconvert -L VERSION -g rijndael-api.o --- rijndael-api-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi-fst.o -MTrijndael-api-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-api-fst.c -o rijndael-api-fst.o --- psargs.o --- ctfconvert -L VERSION -g psargs.o --- modules-all --- --- skipjack.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.skipjack.o= -MTskipjack.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../.= ./opencrypto/skipjack.c -o skipjack.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_radio.o --- ar9300_xmit.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_xmit.o -MTar9300_xmit.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar930= 0/ar9300_xmit.c -o ar9300_xmit.o --- all_subdir_cs --- --- if_cs.o --- ctfconvert -L VERSION -g if_cs.o --- if_cs_pccard.o --- --- all_subdir_crypto --- --- rijndael-api-fst.o --- ctfconvert -L VERSION -g rijndael-api-fst.o --- all_subdir_cs --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_pcca= rd.o -MTif_cs_pccard.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/= ../../dev/cs/if_cs_pccard.c -o if_cs_pccard.o --- psloop.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.psloop.o -MTpsloop.o -mcmodel=3Dkernel -= mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-table= s -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decl= s -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_= kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-p= ragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-p= arentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wn= o-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Werro= r /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/parser/psloop.c --- modules-all --- --- all_subdir_crypto --- --- skipjack.o --- ctfconvert -L VERSION -g skipjack.o --- bf_enc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_enc.o -= MTbf_enc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../cr= ypto/blowfish/bf_enc.c -o bf_enc.o ctfconvert -L VERSION -g bf_enc.o --- bf_ecb.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_ecb.o -= MTbf_ecb.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../cr= ypto/blowfish/bf_ecb.c -o bf_ecb.o --- all_subdir_cs --- ctfconvert -L VERSION -g if_cs_pccard.o --- if_cs.ko.full --- ld -d -warn-common -r -d -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.= o ctfmerge -L VERSION -g -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk if_cs.ko.full export_sy= ms | xargs -J% objcopy % if_cs.ko.full --- if_cs.ko.debug --- objcopy --only-keep-debug if_cs.ko.full if_cs.ko.debug --- if_cs.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dif_cs.ko.debug if_cs.ko.full i= f_cs.ko --- psloop.o --- ctfconvert -L VERSION -g psloop.o --- modules-all --- --- all_subdir_ath --- --- ar9300_attach.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_attach.o -MTar9300_attach.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__= =3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body = -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poi= nter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso989= 9:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_ha= l/ar9300/ar9300_attach.c -o ar9300_attach.o --- all_subdir_crypto --- --- bf_skey.o --- --- bf_ecb.o --- ctfconvert -L VERSION -g bf_ecb.o --- bf_skey.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_skey.o = -MTbf_skey.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/blowfish/bf_skey.c -o bf_skey.o --- all_subdir_ctl --- =3D=3D=3D> ctl (all) --- ctl.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ctl.o -MTc= tl.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-a= synchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-= 2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -= D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-sho= w-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-= empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wn= o-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -s= td=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ctl/../../cam/ctl/ctl= .c -o ctl.o --- all_subdir_crypto --- ctfconvert -L VERSION -g bf_skey.o --- camellia.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.camellia.o= -MTcamellia.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../.= ./crypto/camellia/camellia.c -o camellia.o --- all_subdir_ath --- --- ar9300_xmit.o --- ctfconvert -L VERSION -g ar9300_xmit.o --- ar9300_mci.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_mci.o -MTar9300_mci.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/= ar9300_mci.c -o ar9300_mci.o --- ar9300_attach.o --- /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/a= r9300_attach.c:45:10: fatal error: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" ^ 1 error generated. *** [ar9300_attach.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath --- ar9300_mci.o --- ctfconvert -L VERSION -g ar9300_mci.o --- all_subdir_crypto --- ctfconvert -L VERSION -g camellia.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/crypto *** [all_subdir_crypto] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ath --- 1 error make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath *** [all_subdir_ath] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ctl *** [all_subdir_ctl] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules 3 errors make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules *** [modules-all] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C 1 error make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C *** [buildkernel] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildkernel] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 11:32:25 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BF68A3CA2B for ; Sun, 29 Nov 2015 11:32:25 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 8B0D318E4; Sun, 29 Nov 2015 11:32:25 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id CBA57177C; Sun, 29 Nov 2015 11:32:25 +0000 (UTC) Date: Sun, 29 Nov 2015 11:32:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: nwhitehorn@FreeBSD.org, arybchik@FreeBSD.org, adrian@FreeBSD.org, deischen@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1944982884.233.1448796745537.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #848 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 11:32:25 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #848 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/848/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 848/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/8= 48/console Change summaries: 291442 by nwhitehorn: Make ELFv2 powerpc64 kernels build and run. Loader support will come in a separate commit. 291441 by nwhitehorn: Fix build with new binutils. This gets a working kernel with GCC 5.2 and binutils 2.24. Without this, the self-relocation code in locore64.S was failing due to a misaligned TOC section. MFC after:=092 weeks 291440 by deischen: Disable a couple of tests, perhaps temporarily, since they use private symbols that are not exported from librt. 291439 by deischen: Unbreak symbol versioning. I have no idea when it was broken, but it's bee= n at least a few months if not a year or more. 291438 by adrian: Add support for the integrated wifi for the QCA953x base config and AP143. Tested: * AP143 reference design board 291437 by adrian: Add initial support for the QCA953x SoC (honeybee) wifi. This is a 2x2 2GHz 802.11n part. It works enough at the moment to bring up, scan and associate. I haven't started using this as a day to day AP. The specifics: * add honeybee initvals * add in changes; a mix from the QCA HAL and ath9k; * fix a bug in AR_SREV_AR9580_10_OR_LATER(), which is only used for one capability check and we don't even implement it - so it's a big no-op. Shady things: * ath9k has the "platform data" define the 25/40MHz clock. This HAL .. doesn't. Honeybee gets hard-coded to 25MHz which it likely shouldn't be. I'll have to go and identify/fix those. Tested: * Qualcomm Atheros AP143 reference design board. Obtained from:=09Qualcomm Atheros; Linux ath9k 291436 by arybchik: sfxge: add prefast annotation to common code return types Using a typedef for common code return types (rather than "int") allows the Prefast static analyser to understand when a function has been successful (and thus when its postconditions must hold). This greatly reduces then number of false positives reported by prefast for error paths in common code functions. Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days 291435 by adrian: u32 -> uint32_t. 291434 by arybchik: sfxge: cleanup: fix prefast annotations on mac stats updates Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days X-MFC with: r291397 291433 by adrian: [ath_hal] add AR9461 (jupiter) 2.1 support. Obtained from:=09Linux ath9k 291432 by arybchik: sfxge: modify nvram update functions for uio platform to support RFID-selec= table presets Dynamic config partitions on boards that support RFID are divided into a number of segments, each formatted like a partition, with header, trailer and end tags. The first segment is the current active configuration. The segments are initialised by manftest and each contain a different configuration e.g. firmware variant. The firmware can be instructed via RFID to copy a segment over the first segment, hence changing the active configuration. This allows ops to change the configuration of a board prior to shipment using RFID. Changes to the dynamic config may need to be written to all segments (in particular firmware versions written by manftest) or just the first segment (changes to the active configuration). See SF-111324-SW. If only the first segment is written the code still needs to be aware of the possible presence of subsequent segments as writing to a segment may cause its size to increase, which would overwrite the subsequent segments and invalidate them. Boards that do not support RFID will only have one segment in their dynamic config partition. Submitted by: Paul Fox Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4302 The end of the build log: [...truncated 292385 lines...] ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb/c= ommon/cxgb_mc5.c:222:4: warning: called from here [-Winline] dbgi_wr_data3(adap, 0xfffffff9, 0xffffffff, 0xff); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb/c= ommon/cxgb_mc5.c:101:20: warning: inlining failed in call to 'dbgi_wr_data3= ': call is unlikely and code size would grow [-Winline] static inline void dbgi_wr_data3(adapter_t *adapter, u32 v1, u32 v2, u32 v= 3) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb/c= ommon/cxgb_mc5.c:224:4: warning: called from here [-Winline] dbgi_wr_data3(adap, 0xfffffff9, 0xffff8007, 0xff); ^ --- all_subdir_ath --- ctfconvert -L VERSION -g ar9287_cal.o --- all_subdir_crypto --- ctfconvert -L VERSION -g des_enc.o --- des_setkey.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.des_setkey.o -MTdes_setkey.o -mcmodel=3Dkernel -mno-red-zone= -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestan= ding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-e= xterns -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -= Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-includ= e-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline= -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error= =3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-err= or=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error= =3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wn= o-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-un= it-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999 -= c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../crypto/des/des= _setkey.c -o des_setkey.o --- all_subdir_ath --- --- ar9287_olc.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9287_olc.o -MTar9287_olc.o -mcmodel=3Dkernel -mno-red= -zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffre= estanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnes= ted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl= ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-i= nclude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Di= nline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-= error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wn= o-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-er= ror=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow = -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline= -unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../dev/ath/ath_ha= l/ar9002/ar9287_olc.c -o ar9287_olc.o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_mc5.o --- all_subdir_crypto --- ctfconvert -L VERSION -g des_setkey.o --- sha1.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.sha1.o -MTsha1.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -m= no-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv= -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstr= ict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-error= =3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Daggressi= ve-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Darray-= bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dsequence-p= oint -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error=3Dove= rflow -finline-limit=3D8000 -fms-extensions --param inline-unit-growth=3D1= 00 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /builds/Fre= eBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../crypto/sha1.c -o sha1.o --- all_subdir_cxgb --- --- cxgb_vsc8211.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_vsc8211.o -MTcxgb_vsc8211.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-exten= sions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragm= as -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-s= et-variable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-= uninitialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error= =3Dcast-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-erro= r=3Dstrict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-exten= sions --param inline-unit-growth=3D100 --param large-function-growth=3D1000= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb= /cxgb/../../../dev/cxgb/common/cxgb_vsc8211.c -o cxgb_vsc8211.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9287_olc.o --- ar9300_interrupts.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_interrupts.o -MTar9300_interrupts.o -mcmodel=3Dk= ernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwin= d-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredunda= nt-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoint= er-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extension= s -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas = -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-v= ariable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-unin= itialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcas= t-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dst= rict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions = --param inline-unit-growth=3D100 --param large-function-growth=3D1000 -std= =3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../= contrib/dev/ath/ath_hal/ar9300/ar9300_interrupts.c -o ar9300_interrupts.o --- all_subdir_crypto --- ctfconvert -L VERSION -g sha1.o --- sha2.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.sha2.o -MTsha2.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -m= no-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv= -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstr= ict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-error= =3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Daggressi= ve-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Darray-= bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dsequence-p= oint -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error=3Dove= rflow -finline-limit=3D8000 -fms-extensions --param inline-unit-growth=3D1= 00 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /builds/Fre= eBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../crypto/sha2/sha2.c -o sha2.= o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_vsc8211.o --- cxgb_ael1002.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_ael1002.o -MTcxgb_ael1002.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-exten= sions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragm= as -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-s= et-variable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-= uninitialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error= =3Dcast-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-erro= r=3Dstrict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-exten= sions --param inline-unit-growth=3D100 --param large-function-growth=3D1000= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb= /cxgb/../../../dev/cxgb/common/cxgb_ael1002.c -o cxgb_ael1002.o --- all_subdir_crypto --- ctfconvert -L VERSION -g sha2.o --- sha256c.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.sha256c.o -MTsha256c.o -mcmodel=3Dkernel -mno-red-zone -mno-= mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -= fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs= -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-= qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-= error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Dagg= ressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Da= rray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dseque= nce-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error= =3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-unit-grow= th=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../crypto/sha2/sha256c.c= -o sha256c.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_interrupts.o --- ar9300_radar.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_radar.o -MTar9300_radar.o -mcmodel=3Dkernel -mno= -red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -= ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -= Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissi= ng-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error= =3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -= Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized = -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wn= o-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overf= low -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param in= line-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899= :1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/de= v/ath/ath_hal/ar9300/ar9300_radar.c -o ar9300_radar.o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_ael1002.o --- all_subdir_crypto --- ctfconvert -L VERSION -g sha256c.o --- siphash.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.siphash.o -MTsiphash.o -mcmodel=3Dkernel -mno-red-zone -mno-= mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -= fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs= -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-= qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-= error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Dagg= ressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Da= rray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dseque= nce-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error= =3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-unit-grow= th=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../crypto/siphash/siphas= h.c -o siphash.o --- all_subdir_cxgb --- --- cxgb_mv88e1xxx.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_mv88e1xxx.o -MTcxgb_mv88e1xxx.o -mcm= odel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchrono= us-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -= Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes= -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-e= xtensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-p= ragmas -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-b= ut-set-variable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dma= ybe-uninitialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-err= or=3Dcast-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-er= ror=3Dstrict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-ext= ensions --param inline-unit-growth=3D100 --param large-function-growth=3D10= 00 -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cx= gb/cxgb/../../../dev/cxgb/common/cxgb_mv88e1xxx.c -o cxgb_mv88e1xxx.o --- all_subdir_crypto --- ctfconvert -L VERSION -g siphash.o --- gmac.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.gmac.o -MTgmac.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -m= no-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv= -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstr= ict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-error= =3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Daggressi= ve-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Darray-= bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dsequence-p= oint -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error=3Dove= rflow -finline-limit=3D8000 -fms-extensions --param inline-unit-growth=3D1= 00 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /builds/Fre= eBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../opencrypto/gmac.c -o gmac.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_radar.o --- ar9300_ani.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_ani.o -MTar9300_ani.o -mcmodel=3Dkernel -mno-red= -zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffre= estanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnes= ted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl= ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-i= nclude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Di= nline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-= error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wn= o-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-er= ror=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow = -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline= -unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/dev/at= h/ath_hal/ar9300/ar9300_ani.c -o ar9300_ani.o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_mv88e1xxx.o --- cxgb_xgmac.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_xgmac.o -MTcxgb_xgmac.o -mcmodel=3Dk= ernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwin= d-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredunda= nt-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoint= er-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extension= s -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas = -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-v= ariable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-unin= itialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcas= t-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dst= rict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions = --param inline-unit-growth=3D100 --param large-function-growth=3D1000 -std= =3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/= ../../../dev/cxgb/common/cxgb_xgmac.c -o cxgb_xgmac.o --- all_subdir_crypto --- ctfconvert -L VERSION -g gmac.o --- gfmult.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.gfmult.o -MTgfmult.o -mcmodel=3Dkernel -mno-red-zone -mno-mm= x -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fw= rapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -= Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qu= al -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -= fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wno-er= ror=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Daggre= ssive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error=3Darr= ay-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Dsequenc= e-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-error=3D= overflow -finline-limit=3D8000 -fms-extensions --param inline-unit-growth= =3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /builds= /FreeBSD_HEAD_amd64_gcc4.9/sys/modules/crypto/../../opencrypto/gfmult.c -o = gfmult.o ctfconvert -L VERSION -g gfmult.o --- cryptodev_if.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.cryptodev_if.o -MTcryptodev_if.o -mcmodel=3Dkernel -mno-red-= zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffree= standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest= ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winli= ne -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Din= line -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-e= rror=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno= -error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-err= or=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -= Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999= -c cryptodev_if.c -o cryptodev_if.o ctfconvert -L VERSION -g cryptodev_if.o --- crypto.ko.full --- /usr/local/x86_64-freebsd/bin/ld -d -warn-common -r -d -o crypto.ko.full cr= ypto.o cryptodev_if.o criov.o cryptosoft.o xform.o cast.o cryptodeflate.o r= md160.o rijndael-alg-fst.o rijndael-api.o rijndael-api-fst.o skipjack.o bf_= enc.o bf_ecb.o bf_skey.o camellia.o camellia-api.o des_ecb.o des_enc.o des_= setkey.o sha1.o sha2.o sha256c.o siphash.o gmac.o gfmult.o ctfmerge -L VERSION -g -o crypto.ko.full crypto.o cryptodev_if.o criov.o cr= yptosoft.o xform.o cast.o cryptodeflate.o rmd160.o rijndael-alg-fst.o rijnd= ael-api.o rijndael-api-fst.o skipjack.o bf_enc.o bf_ecb.o bf_skey.o camelli= a.o camellia-api.o des_ecb.o des_enc.o des_setkey.o sha1.o sha2.o sha256c.o= siphash.o gmac.o gfmult.o :> export_syms awk -f /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/conf/kmod_syms.awk crypto.ko.f= ull export_syms | xargs -J% /usr/local/x86_64-freebsd/bin/objcopy % crypto= .ko.full --- crypto.ko.debug --- /usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug crypto.ko.full cryp= to.ko.debug --- crypto.ko --- /usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=3Dc= rypto.ko.debug crypto.ko.full crypto.ko --- all_subdir_ctl --- --- ctl_backend_block.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.ctl_backend_block.o -MTctl_backend_block.o -mcmodel=3Dkernel= -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tab= les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de= cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -W= missing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-= error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variab= le -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitial= ized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qua= l -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-= overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --par= am inline-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Dis= o9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl/../../cam/c= tl/ctl_backend_block.c -o ctl_backend_block.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_ani.o --- ar9300_keycache.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_keycache.o -MTar9300_keycache.o -mcmodel=3Dkerne= l -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-ta= bles -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-d= ecls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -= Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno= -error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-varia= ble -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitia= lized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qu= al -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict= -overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --pa= ram inline-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Di= so9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../cont= rib/dev/ath/ath_hal/ar9300/ar9300_keycache.c -o ar9300_keycache.o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_xgmac.o --- cxgb_vsc7323.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_vsc7323.o -MTcxgb_vsc7323.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-exten= sions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragm= as -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-s= et-variable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-= uninitialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error= =3Dcast-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-erro= r=3Dstrict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-exten= sions --param inline-unit-growth=3D100 --param large-function-growth=3D1000= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb= /cxgb/../../../dev/cxgb/common/cxgb_vsc7323.c -o cxgb_vsc7323.o --- all_subdir_ctl --- --- ctl.o --- ctfconvert -L VERSION -g ctl.o --- all_subdir_ath --- --- ar9300_radio.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_radio.o -MTar9300_radio.o -mcmodel=3Dkernel -mno= -red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -= ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -= Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissi= ng-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error= =3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -= Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized = -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wn= o-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overf= low -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param in= line-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899= :1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/de= v/ath/ath_hal/ar9300/ar9300_radio.c -o ar9300_radio.o --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_vsc7323.o --- cxgb_t3_hw.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -g -DDEFAULT_JUMB= O -fno-strict-aliasing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/../../../dev/cxgb -DHAVE_KERNEL_OPT= ION_HEADERS -include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_= gcc4.9/sys -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-poin= ter -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/sys/GENERIC -MD -MP -MF.depend.cxgb_t3_hw.o -MTcxgb_t3_hw.o -mcmodel=3Dk= ernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwin= d-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredunda= nt-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoint= er-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extension= s -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas = -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-v= ariable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-unin= itialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcas= t-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dst= rict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions = --param inline-unit-growth=3D100 --param large-function-growth=3D1000 -std= =3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb/= ../../../dev/cxgb/common/cxgb_t3_hw.c -o cxgb_t3_hw.o --- all_subdir_ath --- --- ar9300_keycache.o --- ctfconvert -L VERSION -g ar9300_keycache.o --- ar9300_radio.o --- ctfconvert -L VERSION -g ar9300_radio.o --- all_subdir_cxgbe --- =3D=3D=3D> cxgbe (all) --- all_subdir_if_cxgbe --- =3D=3D=3D> cxgbe/if_cxgbe (all) --- all_subdir_ath --- --- ar9300_xmit.o --- --- all_subdir_cxgbe --- --- t4_hw.o --- --- all_subdir_ath --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_xmit.o -MTar9300_xmit.o -mcmodel=3Dkernel -mno-r= ed-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ff= reestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wn= ested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wi= nline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing= -include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error= =3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -= Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized = -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wn= o-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overf= low -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param in= line-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899= :1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/de= v/ath/ath_hal/ar9300/ar9300_xmit.c -o ar9300_xmit.o --- all_subdir_cxgbe --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I/builds/FreeBSD_HEAD_amd64_gcc4.9/s= ys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc= 4.9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -f= no-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC= -MD -MP -MF.depend.t4_hw.o -MTt4_hw.o -mcmodel=3Dkernel -mno-red-zone -mn= o-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding= -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-exter= ns -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcas= t-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dinline -Wn= o-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-error=3Da= ggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno-error= =3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-error=3Ds= equence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -Wno-er= ror=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-unit-g= rowth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999 -c /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_cxgbe/../../../dev/cxg= be/common/t4_hw.c -o t4_hw.o --- all_subdir_ctl --- --- ctl_backend_block.o --- ctfconvert -L VERSION -g ctl_backend_block.o --- ctl_backend_ramdisk.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.ctl_backend_ramdisk.o -MTctl_backend_ramdisk.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions= -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -= Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-va= riable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-unini= tialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast= -qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstr= ict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions -= -param inline-unit-growth=3D100 --param large-function-growth=3D1000 -std= =3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl/../../= cam/ctl/ctl_backend_ramdisk.c -o ctl_backend_ramdisk.o --- all_subdir_cxgbe --- /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_cxgbe/../../../dev/c= xgbe/common/t4_hw.c: In function 't4_set_trace_filter': /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_cxgbe/../../../dev/c= xgbe/common/t4_hw.c:3685:6: warning: variable 'multitrc' set but not used [= -Wunused-but-set-variable] u32 multitrc =3D F_TRCMULTIFILTER; ^ In file included from ./machine/endian.h:6:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/sys/types.h:44, from /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/sys/param.h:90, from /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/i= f_cxgbe/../../../dev/cxgbe/common/t4_hw.c:32: /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_cxgbe/../../../dev/c= xgbe/common/t4_hw.c: In function 't4_fw_hello': ./x86/endian.h:68:26: warning: overflow in implicit constant conversion [-W= overflow] (((__uint32_t)__bswap16((x) & 0xffff) << 16) | __bswap16((x) >> 16)) ^ ./x86/endian.h:75:53: note: in definition of macro '__bswap16' __bswap16_gen((__uint16_t)(x)) : __bswap16_var(x))) ^ ./x86/endian.h:78:6: note: in expansion of macro '__bswap32_gen' __bswap32_gen((__uint32_t)(x)) : __bswap32_var(x)) ^ ./x86/endian.h:126:20: note: in expansion of macro '__bswap32' #define __htonl(x) __bswap32(x) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/sys/param.h:323:18: note: in expansio= n of macro '__htonl' #define htonl(x) __htonl(x) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_cxgbe/../../../dev/c= xgbe/common/t4_hw.c:4449:23: note: in expansion of macro 'htonl' c.err_to_clearinit =3D htonl( ^ --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_xmit.o --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl_backend_ramdisk.o --- all_subdir_ath --- --- ar9300_attach.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -I. -I/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/modules/ath/../../dev/ath -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/mo= dules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys= /modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -i= nclude /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fn= o-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC = -MD -MP -MF.depend.ar9300_attach.o -MTar9300_attach.o -mcmodel=3Dkernel -m= no-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables= -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls= -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmis= sing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-err= or=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable = -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialize= d -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -= Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-ove= rflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param = inline-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso98= 99:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/= dev/ath/ath_hal/ar9300/ar9300_attach.c -o ar9300_attach.o --- all_subdir_ctl --- --- ctl_cmd_table.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.ctl_cmd_table.o -MTctl_cmd_table.o -mcmodel=3Dkernel -mno-re= d-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffr= eestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wne= sted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Win= line -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-= include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3D= inline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno= -error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -W= no-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-e= rror=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow= -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inlin= e-unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:19= 99 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl/../../cam/ctl/ctl_c= md_table.c -o ctl_cmd_table.o ctfconvert -L VERSION -g ctl_cmd_table.o --- ctl_frontend.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.ctl_frontend.o -MTctl_frontend.o -mcmodel=3Dkernel -mno-red-= zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffree= standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest= ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winli= ne -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Din= line -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-variable -Wno-e= rror=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uninitialized -Wno= -error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dcast-qual -Wno-err= or=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Dstrict-overflow -= Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions --param inline-= unit-growth=3D100 --param large-function-growth=3D1000 -std=3Diso9899:1999= -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl/../../cam/ctl/ctl_fro= ntend.c -o ctl_frontend.o ctfconvert -L VERSION -g ctl_frontend.o --- ctl_frontend_cam_sim.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -fno-strict-alias= ing -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -includ= e /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sy= s/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/sys -fno-com= mon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/sys/GENERIC -MD = -MP -MF.depend.ctl_frontend_cam_sim.o -MTctl_frontend_cam_sim.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensio= ns -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas = -Wno-error=3Dinline -Wno-error=3Denum-compare -Wno-error=3Dunused-but-set-= variable -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dmaybe-uni= nitialized -Wno-error=3Darray-bounds -Wno-error=3Daddress -Wno-error=3Dca= st-qual -Wno-error=3Dsequence-point -Wno-error=3Dattributes -Wno-error=3Ds= trict-overflow -Wno-error=3Doverflow -finline-limit=3D8000 -fms-extensions= --param inline-unit-growth=3D100 --param large-function-growth=3D1000 -st= d=3Diso9899:1999 -c /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl/../..= /cam/ctl/ctl_frontend_cam_sim.c -o ctl_frontend_cam_sim.o --- all_subdir_ath --- /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath/../../contrib/dev/ath/ath= _hal/ar9300/ar9300_attach.c:45:29: fatal error: ar9300/ar953x.ini: No such = file or directory #include "ar9300/ar953x.ini" ^ compilation terminated. *** [ar9300_attach.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ath *** [all_subdir_ath] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl_frontend_cam_sim.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/ctl *** [all_subdir_ctl] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules --- all_subdir_cxgb --- ctfconvert -L VERSION -g cxgb_t3_hw.o A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb/cxgb *** [all_subdir_cxgb] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgb *** [all_subdir_cxgb] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules --- all_subdir_cxgbe --- ctfconvert -L VERSION -g t4_hw.o A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe/if_= cxgbe *** [all_subdir_if_cxgbe] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules/cxgbe *** [all_subdir_cxgbe] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules 4 errors make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sys/modules *** [modules-all] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/sys/GENERIC 1 error make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/sys/GENERIC *** [buildkernel] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildkernel] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 13:38:07 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F331EA3B981 for ; Sun, 29 Nov 2015 13:38:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id E241C113D; Sun, 29 Nov 2015 13:38:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 179E117CF; Sun, 29 Nov 2015 13:38:08 +0000 (UTC) Date: Sun, 29 Nov 2015 13:38:04 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: uqs@FreeBSD.org, mmel@FreeBSD.org, trasz@FreeBSD.org, kib@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <67154060.237.1448804287650.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1591302060.231.1448793426563.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1591302060.231.1448793426563.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3585 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 13:38:08 -0000 FreeBSD_HEAD - Build #3585 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3585/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3585/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3585/console Change summaries: 291450 by uqs: Fix make depend 291449 by trasz: Fix some memory management problems. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291448 by trasz: Handle asprintf(3) errors in a standards-compliant way. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291447 by trasz: Rewrite the rctl(8) utility to make it possible to add multiple rules in a single run. This speeds up operation with large rulesets. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291446 by kib: Minor cleanup. Systematically use ANSI C functions definitions. Correct type of the flags argument to the dev_pager_putpages() function. Use vm_pager_free_nonreq(). Sponsored by:=09The FreeBSD Foundation MFC after:=091 week 291445 by trasz: User and group identifiers the rctl(8) utility receives from the kernel are always in numeric form; don't try to resolve them by names. This speeds up rule listing with large rulesets by about 50%. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291444 by mmel: AHCI: Fix AHCI driver for ARM. On ARM, we must ensure proper interdevice write ordering. The AHCI interrupt status register must be updated in HW before registers in interrupt controller. Unfortunately, only way how we can do it is readback. Discussed with:=09mav Approved by:=09kib (mentor) Differential Revision: https://reviews.freebsd.org/D4240 The end of the build log: [...truncated 280097 lines...] ctfconvert -L VERSION -g evrgnini.o --- modules-all --- --- all_subdir_cs --- --- if_cs_isa.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_isa.= o -MTif_cs_isa.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-f= loat -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protec= tor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-po= inter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare= -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-f= unction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes = -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/../../= dev/cs/if_cs_isa.c -o if_cs_isa.o ctfconvert -L VERSION -g if_cs_isa.o --- all_subdir_ath --- --- ar9287_attach.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9287_attach.o -MTar9287_attach.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__= =3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body = -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poi= nter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso989= 9:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath/ath_hal/ar9002= /ar9287_attach.c -o ar9287_attach.o --- ar9287_reset.o --- ctfconvert -L VERSION -g ar9287_reset.o --- evsci.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evsci.o -MTevsci.o -mcmodel=3Dkernel -mn= o-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables = -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls = -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith = -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kp= rintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pra= gmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-par= entheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-= error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Werror = /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evsci.c --- modules-all --- --- all_subdir_crypto --- ctfconvert -L VERSION -g rmd160.o --- rijndael-alg-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= lg-fst.o -MTrijndael-alg-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-alg-fst.c -o rijndael-alg-fst.o --- all_subdir_cs --- --- if_cs.o --- ctfconvert -L VERSION -g if_cs.o --- if_cs_pccard.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_pcca= rd.o -MTif_cs_pccard.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/= ../../dev/cs/if_cs_pccard.c -o if_cs_pccard.o --- evsci.o --- ctfconvert -L VERSION -g evsci.o --- modules-all --- --- all_subdir_ctl --- --- all_subdir_ath --- --- ar9287_attach.o --- ctfconvert -L VERSION -g ar9287_attach.o --- all_subdir_ctl --- =3D=3D=3D> ctl (all) --- ctl.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ctl.o -MTc= tl.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-a= synchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-= 2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -= D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-sho= w-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-= empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wn= o-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -s= td=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ctl/../../cam/ctl/ctl= .c -o ctl.o --- all_subdir_ath --- --- ar9287_cal.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9287_cal.o -MTar9287_cal.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath/ath_hal/ar9002/ar9287_c= al.c -o ar9287_cal.o --- all_subdir_cs --- ctfconvert -L VERSION -g if_cs_pccard.o --- if_cs.ko.full --- ld -d -warn-common -r -d -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.= o --- all_subdir_crypto --- ctfconvert -L VERSION -g rijndael-alg-fst.o --- rijndael-api.o --- --- all_subdir_cs --- ctfmerge -L VERSION -g -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.o --- all_subdir_crypto --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi.o -MTrijndael-api.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cry= pto/../../crypto/rijndael/rijndael-api.c -o rijndael-api.o --- all_subdir_cs --- :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk if_cs.ko.full export_sy= ms | xargs -J% objcopy % if_cs.ko.full --- if_cs.ko.debug --- objcopy --only-keep-debug if_cs.ko.full if_cs.ko.debug --- if_cs.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dif_cs.ko.debug if_cs.ko.full i= f_cs.ko --- all_subdir_crypto --- --- rijndael-api-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi-fst.o -MTrijndael-api-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-api-fst.c -o rijndael-api-fst.o --- rijndael-api.o --- ctfconvert -L VERSION -g rijndael-api.o --- all_subdir_ctl --- --- ctl_backend.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ctl_backen= d.o -MTctl_backend.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -mso= ft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-pr= otector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototy= pes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wn= o-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -= fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-com= pare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unus= ed-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-= aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ctl/.= ./../cam/ctl/ctl_backend.c -o ctl_backend.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9287_cal.o --- ar9287_olc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9287_olc.o -MTar9287_olc.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath/ath_hal/ar9002/ar9287_o= lc.c -o ar9287_olc.o --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl_backend.o --- all_subdir_crypto --- --- rijndael-api-fst.o --- ctfconvert -L VERSION -g rijndael-api-fst.o --- all_subdir_ath --- --- ar9300_interrupts.o --- --- all_subdir_crypto --- --- skipjack.o --- --- all_subdir_ath --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_interrupts.o -MTar9300_interrupts.o -= mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchr= onous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__pri= ntf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-opti= on -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-= body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-erro= r-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Di= so9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/a= th_hal/ar9300/ar9300_interrupts.c -o ar9300_interrupts.o --- all_subdir_crypto --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.skipjack.o= -MTskipjack.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../.= ./opencrypto/skipjack.c -o skipjack.o --- all_subdir_ath --- --- ar9287_olc.o --- ctfconvert -L VERSION -g ar9287_olc.o --- all_subdir_ctl --- --- ctl_backend_block.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ctl_backen= d_block.o -MTctl_backend_block.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -= mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrap= v -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual = -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-in= clude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-taut= ological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wn= o-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-= value -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/m= odules/ctl/../../cam/ctl/ctl_backend_block.c -o ctl_backend_block.o --- all_subdir_crypto --- ctfconvert -L VERSION -g skipjack.o --- bf_enc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_enc.o -= MTbf_enc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../cr= ypto/blowfish/bf_enc.c -o bf_enc.o ctfconvert -L VERSION -g bf_enc.o --- bf_ecb.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_ecb.o -= MTbf_ecb.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../cr= ypto/blowfish/bf_ecb.c -o bf_ecb.o ctfconvert -L VERSION -g bf_ecb.o --- bf_skey.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_skey.o = -MTbf_skey.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/blowfish/bf_skey.c -o bf_skey.o ctfconvert -L VERSION -g bf_skey.o --- camellia.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.camellia.o= -MTcamellia.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../.= ./crypto/camellia/camellia.c -o camellia.o --- all_subdir_ath --- --- ar9300_interrupts.o --- ctfconvert -L VERSION -g ar9300_interrupts.o --- ar9300_radar.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radar.o -MTar9300_radar.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radar.c -o ar9300_radar.o ctfconvert -L VERSION -g ar9300_radar.o --- ar9300_ani.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_ani.o -MTar9300_ani.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/= ar9300_ani.c -o ar9300_ani.o --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl_backend_block.o --- all_subdir_ath --- --- ar9300_keycache.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_keycache.o -MTar9300_keycache.o -mcmo= del=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronou= s-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -W= redundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes = -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf_= _=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option = -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body= -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-po= inter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso98= 99:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_h= al/ar9300/ar9300_keycache.c -o ar9300_keycache.o --- all_subdir_crypto --- ctfconvert -L VERSION -g camellia.o --- camellia-api.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.camellia-a= pi.o -MTcamellia-api.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cry= pto/../../crypto/camellia/camellia-api.c -o camellia-api.o ctfconvert -L VERSION -g camellia-api.o --- des_ecb.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.des_ecb.o = -MTdes_ecb.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/des/des_ecb.c -o des_ecb.o --- all_subdir_ath --- --- ar9300_ani.o --- ctfconvert -L VERSION -g ar9300_ani.o --- all_subdir_crypto --- --- des_enc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.des_enc.o = -MTdes_enc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/des/des_enc.c -o des_enc.o --- all_subdir_ath --- --- ar9300_keycache.o --- ctfconvert -L VERSION -g ar9300_keycache.o --- all_subdir_crypto --- --- des_ecb.o --- ctfconvert -L VERSION -g des_ecb.o --- all_subdir_ath --- --- ar9300_radio.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radio.o -MTar9300_radio.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radio.c -o ar9300_radio.o --- all_subdir_cuse --- =3D=3D=3D> cuse (all) --- cuse.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cuse.o -MT= cuse.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno= -asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwar= f-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing= -prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign= -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-s= how-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-erro= r-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -= Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx = -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cuse/../../fs/cuse/= cuse.c -o cuse.o --- all_subdir_crypto --- --- des_enc.o --- ctfconvert -L VERSION -g des_enc.o --- des_setkey.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.des_setkey= .o -MTdes_setkey.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft= -float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-prot= ector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototype= s -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-= pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fd= iagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compa= re -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused= -function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-ae= s -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/= ../../crypto/des/des_setkey.c -o des_setkey.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_radio.o --- all_subdir_crypto --- ctfconvert -L VERSION -g des_setkey.o --- sha1.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.sha1.o -MT= sha1.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno= -asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwar= f-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing= -prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign= -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-s= how-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-erro= r-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -= Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx = -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../crypto= /sha1.c -o sha1.o --- all_subdir_ath --- --- ar9300_xmit.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_xmit.o -MTar9300_xmit.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar930= 0/ar9300_xmit.c -o ar9300_xmit.o --- all_subdir_crypto --- ctfconvert -L VERSION -g sha1.o --- sha2.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.sha2.o -MT= sha2.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno= -asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwar= f-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing= -prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign= -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-s= how-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-erro= r-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -= Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx = -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../crypto= /sha2/sha2.c -o sha2.o ctfconvert -L VERSION -g sha2.o --- sha256c.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.sha256c.o = -MTsha256c.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/sha2/sha256c.c -o sha256c.o --- all_subdir_cuse --- ctfconvert -L VERSION -g cuse.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_xmit.o --- all_subdir_cuse --- --- cuse.ko.full --- ld -d -warn-common -r -d -o cuse.ko.full cuse.o ctfmerge -L VERSION -g -o cuse.ko.full cuse.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cuse.ko.full export_sym= s | xargs -J% objcopy % cuse.ko.full --- cuse.ko.debug --- objcopy --only-keep-debug cuse.ko.full cuse.ko.debug --- cuse.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcuse.ko.debug cuse.ko.full cus= e.ko --- evxface.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evxface.o -MTevxface.o -mcmodel=3Dkernel= -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tab= les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de= cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebs= d_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown= -pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error= -parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -= Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Wer= ror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evxface.= c --- modules-all --- --- all_subdir_ath --- --- ar9300_attach.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_attach.o -MTar9300_attach.o -mcmodel= =3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-u= nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred= undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__= =3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body = -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poi= nter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso989= 9:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_ha= l/ar9300/ar9300_attach.c -o ar9300_attach.o --- evxface.o --- ctfconvert -L VERSION -g evxface.o --- modules-all --- --- ar9300_mci.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_mci.o -MTar9300_mci.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/= ar9300_mci.c -o ar9300_mci.o --- ar9300_attach.o --- /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/a= r9300_attach.c:45:10: fatal error: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" ^ --- all_subdir_crypto --- ctfconvert -L VERSION -g sha256c.o --- siphash.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.siphash.o = -MTsiphash.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float= -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector = -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointe= r-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnos= tics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn= o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-funct= ion -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno= -avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../= crypto/siphash/siphash.c -o siphash.o --- all_subdir_ath --- 1 error generated. *** [ar9300_attach.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath --- all_subdir_crypto --- ctfconvert -L VERSION -g siphash.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/crypto *** [all_subdir_crypto] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ath --- --- ar9300_mci.o --- ctfconvert -L VERSION -g ar9300_mci.o 1 error make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath *** [all_subdir_ath] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ctl --- --- ctl.o --- ctfconvert -L VERSION -g ctl.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ctl *** [all_subdir_ctl] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules 3 errors make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules *** [modules-all] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C 1 error make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C *** [buildkernel] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildkernel] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 14:12:11 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D66CFA3B018; Sun, 29 Nov 2015 14:12:11 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B9DC11D90; Sun, 29 Nov 2015 14:12:11 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id A42C917F0; Sun, 29 Nov 2015 14:12:11 +0000 (UTC) Date: Sun, 29 Nov 2015 14:12:09 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: uqs@FreeBSD.org, mmel@FreeBSD.org, trasz@FreeBSD.org, kib@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <661438023.239.1448806331635.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1732762240.229.1448791843619.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1732762240.229.1448791843619.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1792 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 14:12:12 -0000 FreeBSD_HEAD_i386 - Build #1792 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1792/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1792/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1792/cons= ole Change summaries: 291451 by trasz: Simplify rule retrieval and improve error handling. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291450 by uqs: Fix make depend 291449 by trasz: Fix some memory management problems. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291448 by trasz: Handle asprintf(3) errors in a standards-compliant way. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291447 by trasz: Rewrite the rctl(8) utility to make it possible to add multiple rules in a single run. This speeds up operation with large rulesets. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291446 by kib: Minor cleanup. Systematically use ANSI C functions definitions. Correct type of the flags argument to the dev_pager_putpages() function. Use vm_pager_free_nonreq(). Sponsored by:=09The FreeBSD Foundation MFC after:=091 week 291445 by trasz: User and group identifiers the rctl(8) utility receives from the kernel are always in numeric form; don't try to resolve them by names. This speeds up rule listing with large rulesets by about 50%. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291444 by mmel: AHCI: Fix AHCI driver for ARM. On ARM, we must ensure proper interdevice write ordering. The AHCI interrupt status register must be updated in HW before registers in interrupt controller. Unfortunately, only way how we can do it is readback. Discussed with:=09mav Approved by:=09kib (mentor) Differential Revision: https://reviews.freebsd.org/D4240 The end of the build log: [...truncated 157163 lines...] --- t4fw_cfg.c --- awk -f /usr/src/sys/tools/fw_stub.awk t4fw_cfg.txt:t4fw_cfg:1.0.0.0 t4fw_cf= g_uwire.txt:t4fw_cfg_uwire:1.0.0.0 t4fw.fw:t4fw:1.14.4.0 -mt4fw_cfg -ct4fw_= cfg.c =20 --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 t4fw_cfg.c --- depend_subdir_dcons --- =3D=3D=3D> dcons (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_dcons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_dcons.h opt_dcons.h --- opt_kdb.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_kdb.h opt_kdb.h --- opt_ddb.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ddb.h opt_ddb.h --- opt_gdb.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_gdb.h opt_gdb.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I/usr/src= /sys/modules/dcons/../.. -DHAVE_KERNEL_OPTION_HEADERS -I. -I/usr/src/sys -I= /usr/obj/usr/src/sys/GENERIC -D__printf__=3D__freebsd_kprintf__ -std=3Diso9= 899:1999 /usr/src/sys/modules/dcons/../../dev/dcons/dcons.c /usr/src/sys/= modules/dcons/../../dev/dcons/dcons_os.c --- depend_subdir_cxgbe --- --- depend_subdir_t5_firmware --- =3D=3D=3D> cxgbe/t5_firmware (depend) --- machine --- machine -> /usr/src/sys/i386/include --- depend_subdir_tom --- --- depend_subdir_t5_firmware --- --- x86 --- --- depend_subdir_tom --- =3D=3D=3D> cxgbe/tom (depend) --- depend_subdir_t5_firmware --- x86 -> /usr/src/sys/x86/include --- t5fw_cfg.c --- awk -f /usr/src/sys/tools/fw_stub.awk t5fw_cfg.txt:t5fw_cfg:1.0.0.0 t5fw_cf= g_fpga.txt:t5fw_cfg_fpga:1.0.0.0 t5fw_cfg_uwire.txt:t5fw_cfg_uwire:1.0.0.0 = t5fw.fw:t5fw:1.14.4.0 -mt5fw_cfg -ct5fw_cfg.c =20 --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 t5fw_cfg.c --- depend_subdir_tom --- --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_inet.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet.h opt_inet.h --- opt_inet6.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet6.h opt_inet6.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I/usr/src= /sys/modules/cxgbe/tom/../../../dev/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -I. = -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__printf__=3D__freebsd_kpri= ntf__ -std=3Diso9899:1999 /usr/src/sys/modules/cxgbe/tom/../../../dev/cxg= be/tom/t4_connect.c /usr/src/sys/modules/cxgbe/tom/../../../dev/cxgbe/tom/t= 4_cpl_io.c /usr/src/sys/modules/cxgbe/tom/../../../dev/cxgbe/tom/t4_ddp.c /= usr/src/sys/modules/cxgbe/tom/../../../dev/cxgbe/tom/t4_listen.c /usr/src/s= ys/modules/cxgbe/tom/../../../dev/cxgbe/tom/t4_tom.c /usr/src/sys/modules/c= xgbe/tom/../../../dev/cxgbe/tom/t4_tom_l2t.c --- depend_subdir_dcons_crom --- =3D=3D=3D> dcons_crom (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I/usr/src= /sys/modules/dcons_crom/../.. -DHAVE_KERNEL_OPTION_HEADERS -I. -I/usr/src/s= ys -I/usr/obj/usr/src/sys/GENERIC -D__printf__=3D__freebsd_kprintf__ -std= =3Diso9899:1999 /usr/src/sys/modules/dcons_crom/../../dev/dcons/dcons_cro= m.c --- depend_subdir_de --- =3D=3D=3D> de (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_ddb.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ddb.h opt_ddb.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/de/= ../../dev/de/if_de.c --- depend_subdir_dpms --- =3D=3D=3D> dpms (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/dpm= s/../../dev/dpms/dpms.c --- depend_subdir_dpt --- =3D=3D=3D> dpt (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_dpt.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_dpt.h opt_dpt.h --- opt_eisa.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_eisa.h opt_eisa.h --- opt_cam.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_cam.h opt_cam.h --- opt_scsi.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_scsi.h opt_scsi.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/dev/dpt/dpt= _scsi.c /usr/src/sys/dev/dpt/dpt_pci.c --- depend_subdir_drm --- =3D=3D=3D> drm (depend) --- depend_subdir_drm --- =3D=3D=3D> drm/drm (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /drm/../../../dev/drm/ati_pcigart.c /usr/src/sys/modules/drm/drm/../../../d= ev/drm/drm_agpsupport.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_a= uth.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_bufs.c /usr/src/sys= /modules/drm/drm/../../../dev/drm/drm_context.c /usr/src/sys/modules/drm/dr= m/../../../dev/drm/drm_dma.c /usr/src/sys/modules/drm/drm/../../../dev/drm/= drm_drawable.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c /usr= /src/sys/modules/drm/drm/../../../dev/drm/drm_fops.c /usr/src/sys/modules/d= rm/drm/../../../dev/drm/drm_hashtab.c /usr/src/sys/modules/drm/drm/../../..= /dev/drm/drm_ioctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_irq.= c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_lock.c /usr/src/sys/mod= ules/drm/drm/../../../dev/drm/drm_memory.c /usr/src/sys/modules/drm/drm/../= ../../dev/drm/drm_mm.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_pc= i.c /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_scatter.c /usr/src/sy= s/modules/drm/drm/../../../dev/drm/drm_sman.c /usr/src/sys/modules/drm/drm/= ../../../dev/drm/drm_sysctl.c /usr/src/sys/modules/drm/drm/../../../dev/drm= /drm_vm.c --- depend_subdir_i915 --- =3D=3D=3D> drm/i915 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /i915/../../../dev/drm/i915_dma.c /usr/src/sys/modules/drm/i915/../../../de= v/drm/i915_drv.c /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_irq.c = /usr/src/sys/modules/drm/i915/../../../dev/drm/i915_mem.c /usr/src/sys/modu= les/drm/i915/../../../dev/drm/i915_suspend.c --- depend_subdir_drm2 --- =3D=3D=3D> drm2 (depend) --- depend_subdir_drm2 --- =3D=3D=3D> drm2/drm2 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- opt_vm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_vm.h opt_vm.h --- opt_compat.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_compat.h opt_compat.h --- opt_syscons.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_syscons.h opt_syscons.h --- iicbus_if.h --- awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/iicbus/iicbus_if.= m -h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_agpsupport.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/drm_auth.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2= /drm_bufs.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_buffer.c /= usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_context.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_crtc.c /usr/src/sys/modules/drm2/dr= m2/../../../dev/drm2/drm_crtc_helper.c /usr/src/sys/modules/drm2/drm2/../..= /../dev/drm2/drm_dma.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm= _dp_helper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_dp_iic_he= lper.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_drv.c /usr/src/= sys/modules/drm2/drm2/../../../dev/drm2/drm_edid.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_fb_helper.c /usr/src/sys/modules/drm2/drm2/../= ../../dev/drm2/drm_fops.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/= drm_gem.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_gem_names.c = /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_global.c /usr/src/sys/= modules/drm2/drm2/../../../dev/drm2/drm_hashtab.c /usr/src/sys/modules/drm2= /drm2/../../../dev/drm2/drm_ioctl.c /usr/src/sys/modules/drm2/drm2/../../..= /dev/drm2/drm_irq.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_li= nux_list_sort.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_lock.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_memory.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/drm_mm.c /usr/src/sys/modules/drm2/drm= 2/../../../dev/drm2/drm_modes.c /usr/src/sys/modules/drm2/drm2/../../../dev= /drm2/drm_pci.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_scatte= r.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/drm_stub.c /usr/src/sy= s/modules/drm2/drm2/../../../dev/drm2/drm_sysctl.c /usr/src/sys/modules/drm= 2/drm2/../../../dev/drm2/drm_vm.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/drm_os_freebsd.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_agp_backend.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/t= tm_lock.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_object.c= /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/ttm_tt.c /usr/src/sys= /modules/drm2/drm2/../../../dev/drm2/ttm/ttm_bo_util.c /usr/src/sys/modules= /drm2/drm2/../../../dev/drm2/ttm/ttm_bo.c /usr/src/sys/modules/drm2/drm2/..= /../../dev/drm2/ttm/ttm_bo_manager.c /usr/src/sys/modules/drm2/drm2/../../.= ./dev/drm2/ttm/ttm_execbuf_util.c /usr/src/sys/modules/drm2/drm2/../../../d= ev/drm2/ttm/ttm_memory.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/t= tm/ttm_page_alloc.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ttm/tt= m_bo_vm.c /usr/src/sys/modules/drm2/drm2/../../../dev/drm2/ati_pcigart.c --- depend_subdir_drm --- --- depend_subdir_mach64 --- =3D=3D=3D> drm/mach64 (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mach64/../../../dev/drm/mach64_dma.c /usr/src/sys/modules/drm/mach64/../..= /../dev/drm/mach64_drv.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/m= ach64_irq.c /usr/src/sys/modules/drm/mach64/../../../dev/drm/mach64_state.c --- depend_subdir_mga --- =3D=3D=3D> drm/mga (depend) --- machine --- machine -> /usr/src/sys/i386/include --- x86 --- x86 -> /usr/src/sys/x86/include --- opt_drm.h --- ln -sf /usr/obj/usr/src/sys/GENERIC/opt_drm.h opt_drm.h --- .depend --- rm -f .depend CC=3D'cc' mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -DHAVE_KER= NEL_OPTION_HEADERS -I. -I/usr/src/sys -I/usr/obj/usr/src/sys/GENERIC -D__pr= intf__=3D__freebsd_kprintf__ -std=3Diso9899:1999 /usr/src/sys/modules/drm= /mga/../../../dev/drm/mga_drv.c /usr/src/sys/modules/drm/mga/../../../dev/d= rm/mga_state.c /usr/src/sys/modules/drm/mga/../../../dev/drm/mga_warp.c /us= r/src/sys/modules/drm/mga/../../../dev/drm/mga_dma.c /usr/src/sys/modules/d= rm/mga/../../../dev/drm/mga_irq.c --- depend_subdir_ath --- mkdep: compile failed *** [.depend] Error code 1 make[4]: stopped in /usr/src/sys/modules/ath 1 error make[4]: stopped in /usr/src/sys/modules/ath *** [depend_subdir_ath] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm/mga *** [depend_subdir_mga] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm 1 error make[4]: stopped in /usr/src/sys/modules/drm *** [depend_subdir_drm] Error code 2 make[3]: stopped in /usr/src/sys/modules --- depend_subdir_drm2 --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sys/modules/drm2/drm2 *** [depend_subdir_drm2] Error code 2 make[4]: stopped in /usr/src/sys/modules/drm2 1 error make[4]: stopped in /usr/src/sys/modules/drm2 *** [depend_subdir_drm2] Error code 2 make[3]: stopped in /usr/src/sys/modules 3 errors make[3]: stopped in /usr/src/sys/modules *** [modules-depend] Error code 2 make[2]: stopped in /usr/obj/usr/src/sys/GENERIC --- .depend --- /usr/src/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c:45:10: fatal er= ror: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" ^ 1 error generated. mkdep: compile failed *** [.depend] Error code 1 make[2]: stopped in /usr/obj/usr/src/sys/GENERIC 2 errors make[2]: stopped in /usr/obj/usr/src/sys/GENERIC *** [buildkernel] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildkernel] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson6946677312680892778.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 15:38:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0411BA3C679; Sun, 29 Nov 2015 15:38:24 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id E74591907; Sun, 29 Nov 2015 15:38:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8BC4B1821; Sun, 29 Nov 2015 15:38:23 +0000 (UTC) Date: Sun, 29 Nov 2015 15:38:22 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: trasz@FreeBSD.org, des@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1585350670.243.1448811503323.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <661438023.239.1448806331635.JavaMail.jenkins@jenkins-9.freebsd.org> References: <661438023.239.1448806331635.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1793 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 15:38:24 -0000 FreeBSD_HEAD_i386 - Build #1793 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1793/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1793/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1793/cons= ole Change summaries: 291453 by des: Use .netrc for HTTP sites and proxies, not just FTP. PR:=09=09193740 Submitted by:=09TEUBEL Gy=C3=B6rgy MFC after:=091 week 291452 by trasz: Improve error reporting to clearly show problematic rules. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation The end of the build log: [...truncated 58360 lines...] cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_attr.c -o dwarf_pro_attr.o --- all_subdir_libexecinfo --- =3D=3D=3D> lib/libexecinfo (all) --- backtrace.So --- cc -fpic -DPIC -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-= body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c = /usr/src/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace= .So --- all_subdir_libevent --- --- buffer.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/buffer.c -o buffer.o --- all_subdir_libexecinfo --- --- symtab.So --- cc -fpic -DPIC -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-= body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c = /usr/src/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.So --- all_subdir_libevent --- --- evbuffer.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- all_subdir_libexecinfo --- --- unwind.So --- cc -fpic -DPIC -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-= body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c = /usr/src/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.So --- all_subdir_libdwarf --- --- dwarf_pro_attr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_attr.c -o dwarf_pro_attr.So --- dwarf_pro_die.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_die.c -o dwarf_pro_die.o --- all_subdir_libexecinfo --- --- backtrace.o --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We= rror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings= -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winli= ne -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-s= ign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-st= ring-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib= /libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.o --- all_subdir_libevent --- --- event.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/event.c -o event.o --- kqueue.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libdwarf --- --- dwarf_pro_die.So --- --- all_subdir_libexecinfo --- --- symtab.o --- --- all_subdir_libdwarf --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_die.c -o dwarf_pro_die.So --- all_subdir_libexecinfo --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We= rror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings= -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winli= ne -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-s= ign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-st= ring-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib= /libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.o --- all_subdir_libdwarf --- --- dwarf_pro_expr.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_expr.c -o dwarf_pro_expr.o --- all_subdir_libexpat --- --- all_subdir_libexecinfo --- --- unwind.o --- --- all_subdir_libexpat --- =3D=3D=3D> lib/libexpat (all) --- all_subdir_libexecinfo --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We= rror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wm= issing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings= -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winli= ne -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-s= ign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-st= ring-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib= /libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.o --- libexecinfo.so.1 --- building shared library libexecinfo.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libexecinfo.so.1 -Wl,-soname,libexecinfo.so.1 `NM=3D'n= m' NMFLAGS=3D'' lorder backtrace.So symtab.So unwind.So | tsort -q` -lelf --- all_subdir_libfetch --- =3D=3D=3D> lib/libfetch (all) --- all_subdir_libexecinfo --- --- libexecinfo.a --- building static execinfo library ar -crD libexecinfo.a `NM=3D'nm' NMFLAGS=3D'' lorder backtrace.o symtab.o u= nwind.o | tsort -q`=20 ranlib -D libexecinfo.a --- all_subdir_libevent --- --- log.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/log.c -o log.o --- all_subdir_libfetch --- --- fetch.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std= =3Diso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-= variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int = -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetc= h.c -o fetch.So --- all_subdir_libdwarf --- --- dwarf_pro_expr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_expr.c -o dwarf_pro_expr.So --- all_subdir_libfetch --- --- common.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std= =3Diso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-= variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int = -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/comm= on.c -o common.So --- all_subdir_libdwarf --- --- dwarf_pro_finish.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_finish.c -o dwarf_pro_finish.o --- all_subdir_libevent --- --- poll.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/poll.c -o poll.o --- all_subdir_libdwarf --- --- dwarf_pro_finish.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_finish.c -o dwarf_pro_finish.So --- all_subdir_libevent --- --- select.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/select.c -o select.o --- all_subdir_libdwarf --- --- dwarf_pro_frame.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_frame.c -o dwarf_pro_frame.o --- all_subdir_libfetch --- --- file.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std= =3Diso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-= variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int = -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file= .c -o file.So --- all_subdir_libevent --- --- signal.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNT= L_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_= IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKI= NG_KQUEUE -DVERSION=3D'"1.3b"' -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-ta= utological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-= function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-sw= itch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/li= bevent/../../contrib/pf/libevent/signal.c -o signal.o --- all_subdir_libdwarf --- --- dwarf_pro_frame.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_frame.c -o dwarf_pro_frame.So --- all_subdir_libevent --- --- libprivateevent.so.1 --- building shared library libprivateevent.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libprivateevent.so.1 -Wl,-soname,libprivateevent.so.1 = `NM=3D'nm' NMFLAGS=3D'' lorder buffer.So evbuffer.So event.So kqueue.So log= .So poll.So select.So signal.So | tsort -q`=20 --- all_subdir_libdwarf --- --- dwarf_pro_init.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_init.c -o dwarf_pro_init.o --- all_subdir_libevent --- --- libprivateevent.a --- building static event library ar -crD libprivateevent.a `NM=3D'nm' NMFLAGS=3D'' lorder buffer.o evbuffer.= o event.o kqueue.o log.o poll.o select.o signal.o | tsort -q`=20 --- all_subdir_libdwarf --- --- dwarf_pro_init.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_init.c -o dwarf_pro_init.So --- all_subdir_libevent --- ranlib -D libprivateevent.a --- all_subdir_libdwarf --- --- dwarf_pro_lineno.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_lineno.c -o dwarf_pro_lineno.o --- all_subdir_libfetch --- --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=3Diso9899:1= 999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch= .o --- all_subdir_libdwarf --- --- dwarf_pro_lineno.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.So --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=3Diso9899:1= 999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o comm= on.o --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=3Diso9899:1= 999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.o --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_macinfo.c -o dwarf_pro_macinfo.o --- dwarf_pro_macinfo.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.So --- dwarf_pro_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_reloc.c -o dwarf_pro_reloc.o --- dwarf_pro_reloc.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.So --- all_subdir_libfigpar --- =3D=3D=3D> lib/libfigpar (all) --- all_subdir_libgpio --- =3D=3D=3D> lib/libgpio (all) --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=3Diso9899:1= 999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libdwarf --- --- dwarf_pro_sections.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_pro_sections.c -o dwarf_pro_sections.o --- all_subdir_libgpio --- --- gpio.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libgpio -std=3Dgnu99 -fstack-pr= otector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unuse= d-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wretu= rn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -W= cast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -W= old-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wth= read-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable= -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libdwarf --- --- dwarf_pro_sections.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.So --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/usr/src/lib/libgpio -std=3Dgnu99 -fstack-protector-stro= ng -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter = -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wca= st-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -= Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-de= finition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety = -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-ar= guments -c /usr/src/lib/libgpio/gpio.c -o gpio.o --- libgpio.so.0 --- building shared library libgpio.so.0 --- all_subdir_libdwarf --- --- dwarf_ranges.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_ranges.c -o dwarf_ranges.o --- all_subdir_libgpio --- cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libgpio.so.0 -Wl,-soname,libgpio.so.0 `NM=3D'nm' NMFLA= GS=3D'' lorder gpio.So | tsort -q`=20 --- all_subdir_libfetch --- --- ftp.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std= =3Diso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-= variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int = -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.= c -o ftp.So --- all_subdir_libdwarf --- --- dwarf_ranges.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_ranges.c -o dwarf_ranges.So --- all_subdir_libgpio --- --- libgpio.a --- building static gpio library ar -crD libgpio.a `NM=3D'nm' NMFLAGS=3D'' lorder gpio.o | tsort -q`=20 ranlib -D libgpio.a --- all_subdir_libdwarf --- --- dwarf_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_reloc.c -o dwarf_reloc.o --- all_subdir_libfetch --- --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=3Diso9899:1= 999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /usr/src/lib/libfetch/http.c -o http.o --- all_subdir_libdwarf --- --- dwarf_reloc.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_reloc.c -o dwarf_reloc.So --- dwarf_sections.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/lib= dwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/= lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par= ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty= pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-= align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s= tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-= safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qun= used-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf= /dwarf_sections.c -o dwarf_sections.o --- dwarf_sections.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common= -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=3Dgnu99 -fs= tack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wn= o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith= -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param= eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d= ecls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaratio= ns -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolch= ain/libdwarf/dwarf_sections.c -o dwarf_sections.So --- all_subdir_libfetch --- /usr/src/lib/libfetch/http.c:1692:25: error: address of array 'url->user' w= ill always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user =3D url->user ? ~~~~~^~~~ ~ /usr/src/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' wi= ll always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password =3D url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /usr/src/lib/libfetch --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_libfetch --- 1 error make[5]: stopped in /usr/src/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /usr/src/lib 2 errors make[4]: stopped in /usr/src/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /usr/src *** [libraries] Error code 2 make[2]: stopped in /usr/src 1 error make[2]: stopped in /usr/src *** [_libraries] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3387638748816106816.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 16:03:13 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D2C3A3B1EC for ; Sun, 29 Nov 2015 16:03:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 7992C18A2; Sun, 29 Nov 2015 16:03:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id BA0261829; Sun, 29 Nov 2015 16:03:13 +0000 (UTC) Date: Sun, 29 Nov 2015 16:03:12 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: trasz@FreeBSD.org, des@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <72117351.247.1448812993662.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <67154060.237.1448804287650.JavaMail.jenkins@jenkins-9.freebsd.org> References: <67154060.237.1448804287650.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3586 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:03:13 -0000 FreeBSD_HEAD - Build #3586 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3586/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3586/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3586/console Change summaries: 291453 by des: Use .netrc for HTTP sites and proxies, not just FTP. PR:=09=09193740 Submitted by:=09TEUBEL Gy=C3=B6rgy MFC after:=091 week 291452 by trasz: Improve error reporting to clearly show problematic rules. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation 291451 by trasz: Simplify rule retrieval and improve error handling. MFC after:=091 month Sponsored by:=09The FreeBSD Foundation The end of the build log: [...truncated 107367 lines...] --- all_subdir_libdwarf --- --- libdwarf_die.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_die.o -MTlibdwarf_die.o -std=3Dgnu99 -f= stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W= no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para= meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-= decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati= ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-= variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../cont= rib/elftoolchain/libdwarf/libdwarf_die.c -o libdwarf_die.o --- libdwarf_error.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_error.o -MTlibdwarf_error.o -std=3Dgnu9= 9 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -= W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-= parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredund= ant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-decla= rations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-co= nst-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../= contrib/elftoolchain/libdwarf/libdwarf_error.c -o libdwarf_error.o --- all_subdir_libbsm --- --- bsm_token.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I= /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.de= pend.bsm_token.o -MTbsm_token.o -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int = -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno= -parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused= -local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wn= o-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../c= ontrib/openbsm/libbsm/bsm_token.c -o bsm_token.o --- bsm_user.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I= /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.de= pend.bsm_user.o -MTbsm_user.o -std=3Dgnu99 -fstack-protector-strong -Wsyste= m-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -W= no-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-p= arentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-l= ocal-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-= parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../con= trib/openbsm/libbsm/bsm_user.c -o bsm_user.o --- all_subdir_libdwarf --- --- libdwarf_elf_access.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_elf_access.o -MTlibdwarf_elf_access.o -= std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-fo= rmat-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-extern= s -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-vari= able-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno= -unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdw= arf/../../contrib/elftoolchain/libdwarf/libdwarf_elf_access.c -o libdwarf_e= lf_access.o --- all_subdir_libevent --- =3D=3D=3D> lib/libevent (all) --- buffer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= buffer.So -MTbuffer.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-heade= rs -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-= empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologica= l-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function = -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum= -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib= /libevent/../../contrib/pf/libevent/buffer.c -o buffer.So --- all_subdir_libdwarf --- --- libdwarf_elf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_elf_init.o -MTlibdwarf_elf_init.o -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -W= unused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -= Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variabl= e-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-un= used-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf= /../../contrib/elftoolchain/libdwarf/libdwarf_elf_init.c -o libdwarf_elf_in= it.o --- all_subdir_libevent --- --- evbuffer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= evbuffer.So -MTevbuffer.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-h= eaders -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolo= gical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-funct= ion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-= enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD= /lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.So --- all_subdir_libdwarf --- --- libdwarf_frame.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_frame.o -MTlibdwarf_frame.o -std=3Dgnu9= 9 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -= W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-= parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredund= ant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-decla= rations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-co= nst-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../= contrib/elftoolchain/libdwarf/libdwarf_frame.c -o libdwarf_frame.o --- all_subdir_libevent --- --- event.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= event.So -MTevent.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers= -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-em= pty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-= compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -W= no-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -= Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/l= ibevent/../../contrib/pf/libevent/event.c -o event.So --- all_subdir_libbsm --- --- bsm_wrappers.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I= /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.de= pend.bsm_wrappers.o -MTbsm_wrappers.o -std=3Dgnu99 -fstack-protector-strong= -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-valu= e -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-= unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramet= er -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/.= ./../contrib/openbsm/libbsm/bsm_wrappers.c -o bsm_wrappers.o --- libbsm.so.3 --- building shared library libbsm.so.3 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libbsm.so.3 -Wl,-soname,libbsm.so.3 `NM=3D'nm' NMFLAGS= =3D'' lorder bsm_audit.So bsm_class.So bsm_control.So bsm_domain.So bsm_err= no.So bsm_event.So bsm_fcntl.So bsm_flags.So bsm_io.So bsm_mask.So bsm_noti= fy.So bsm_socket_type.So bsm_token.So bsm_user.So bsm_wrappers.So | tsort -= q`=20 --- libbsm.a --- building static bsm library ar -crD libbsm.a `NM=3D'nm' NMFLAGS=3D'' lorder bsm_audit.o bsm_class.o bsm= _control.o bsm_domain.o bsm_errno.o bsm_event.o bsm_fcntl.o bsm_flags.o bsm= _io.o bsm_mask.o bsm_notify.o bsm_socket_type.o bsm_token.o bsm_user.o bsm_= wrappers.o | tsort -q`=20 ranlib -D libbsm.a --- all_subdir_libevent --- --- kqueue.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= kqueue.So -MTkqueue.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-heade= rs -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-= empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologica= l-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function = -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum= -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib= /libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.So --- all_subdir_libdwarf --- --- libdwarf_info.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_info.o -MTlibdwarf_info.o -std=3Dgnu99 = -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W = -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-pa= rameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundan= t-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declara= tions -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-cons= t-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../co= ntrib/elftoolchain/libdwarf/libdwarf_info.c -o libdwarf_info.o --- all_subdir_libelftc --- --- libelftc_hash.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolc= hain/libelftc -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchai= n/common -MD -MP -MF.depend.libelftc_hash.o -MTlibelftc_hash.o -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declar= ations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-con= st-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libelftc/../../c= ontrib/elftoolchain/libelftc/libelftc_hash.c -o libelftc_hash.o --- all_subdir_libevent --- --- log.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= log.So -MTlog.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We= rror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-= body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-comp= are -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-e= num-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-= knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libev= ent/../../contrib/pf/libevent/log.c -o log.So --- poll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= poll.So -MTpoll.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -= Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empt= y-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-co= mpare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno= -enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wn= o-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/lib= event/../../contrib/pf/libevent/poll.c -o poll.So --- all_subdir_libelftc --- --- libelftc_vstr.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolc= hain/libelftc -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchai= n/common -MD -MP -MF.depend.libelftc_vstr.o -MTlibelftc_vstr.o -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declar= ations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-con= st-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libelftc/../../c= ontrib/elftoolchain/libelftc/libelftc_vstr.c -o libelftc_vstr.o --- all_subdir_libdwarf --- --- libdwarf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_init.o -MTlibdwarf_init.o -std=3Dgnu99 = -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W = -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ar= ith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-pa= rameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundan= t-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declara= tions -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-cons= t-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../co= ntrib/elftoolchain/libdwarf/libdwarf_init.c -o libdwarf_init.o --- all_subdir_libevent --- --- select.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= select.So -MTselect.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-heade= rs -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-= empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologica= l-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function = -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum= -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib= /libevent/../../contrib/pf/libevent/select.c -o select.So --- all_subdir_libdwarf --- --- libdwarf_lineno.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_lineno.o -MTlibdwarf_lineno.o -std=3Dgn= u99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../.= ./contrib/elftoolchain/libdwarf/libdwarf_lineno.c -o libdwarf_lineno.o --- all_subdir_libelftc --- --- libelftc.a --- building static elftc library ar -crD libelftc.a `NM=3D'nm' NMFLAGS=3D'' lorder elftc_bfdtarget.o elftc_c= opyfile.o elftc_demangle.o elftc_set_timestamps.o elftc_string_table.o elft= c_version.o libelftc_bfdtarget.o libelftc_dem_arm.o libelftc_dem_gnu2.o lib= elftc_dem_gnu3.o libelftc_hash.o libelftc_vstr.o | tsort -q`=20 ranlib -D libelftc.a --- all_subdir_libexecinfo --- --- all_subdir_libevent --- --- signal.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CL= OCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHA= VE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE= _VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.= signal.So -MTsignal.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-heade= rs -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-= empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologica= l-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function = -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum= -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib= /libevent/../../contrib/pf/libevent/signal.c -o signal.So --- all_subdir_libexecinfo --- =3D=3D=3D> lib/libexecinfo (all) --- all_subdir_libdwarf --- --- libdwarf_loc.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_loc.o -MTlibdwarf_loc.o -std=3Dgnu99 -f= stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W= no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para= meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-= decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati= ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-= variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../cont= rib/elftoolchain/libdwarf/libdwarf_loc.c -o libdwarf_loc.o --- all_subdir_libexecinfo --- --- backtrace.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.backtrace.So -MTbacktrace.S= o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno= -format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototyp= es -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsha= dow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ext= erns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-v= ariable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -= Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/li= bexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.So --- all_subdir_libevent --- --- buffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.buffer.o -MT= buffer.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wn= o-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno= -unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conv= ersion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-prom= oted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../.= ./contrib/pf/libevent/buffer.c -o buffer.o --- evbuffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.evbuffer.o -= MTevbuffer.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror= -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare = -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-= conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-= promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/= ../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- all_subdir_libexecinfo --- --- symtab.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.symtab.So -MTsymtab.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -W= unused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -= Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variabl= e-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-un= used-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexeci= nfo/../../contrib/libexecinfo/symtab.c -o symtab.So --- all_subdir_libdwarf --- --- libdwarf_loclist.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_loclist.o -MTlibdwarf_loclist.o -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/..= /../contrib/elftoolchain/libdwarf/libdwarf_loclist.c -o libdwarf_loclist.o --- all_subdir_libexecinfo --- --- unwind.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.unwind.So -MTunwind.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -W= unused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -= Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variabl= e-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-un= used-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexeci= nfo/../../contrib/libexecinfo/unwind.c -o unwind.So --- all_subdir_libevent --- --- event.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.event.o -MTe= vent.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall= -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-= string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-u= nused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conver= sion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promot= ed-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../= contrib/pf/libevent/event.c -o event.o --- all_subdir_libdwarf --- --- libdwarf_macinfo.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_macinfo.o -MTlibdwarf_macinfo.o -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/..= /../contrib/elftoolchain/libdwarf/libdwarf_macinfo.c -o libdwarf_macinfo.o --- all_subdir_libexecinfo --- --- backtrace.o --- cc -O2 -pipe -MD -MP -MF.depend.backtrace.o -MTbacktrace.o -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declar= ations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-con= st-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../.= ./contrib/libexecinfo/backtrace.c -o backtrace.o --- symtab.o --- cc -O2 -pipe -MD -MP -MF.depend.symtab.o -MTsymtab.o -std=3Dgnu99 -fsta= ck-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-paramet= er -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-dec= ls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations= -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-var= iable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../cont= rib/libexecinfo/symtab.c -o symtab.o --- all_subdir_libdwarf --- --- libdwarf_nametbl.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_nametbl.o -MTlibdwarf_nametbl.o -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-d= eclarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/..= /../contrib/elftoolchain/libdwarf/libdwarf_nametbl.c -o libdwarf_nametbl.o --- all_subdir_libevent --- --- kqueue.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.kqueue.o -MT= kqueue.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wn= o-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno= -unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conv= ersion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-prom= oted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../.= ./contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libexecinfo --- --- unwind.o --- cc -O2 -pipe -MD -MP -MF.depend.unwind.o -MTunwind.o -std=3Dgnu99 -fsta= ck-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-= unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -= Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-paramet= er -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-dec= ls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations= -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-var= iable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../cont= rib/libexecinfo/unwind.c -o unwind.o --- libexecinfo.so.1 --- building shared library libexecinfo.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libexecinfo.so.1 -Wl,-soname,libexecinfo.so.1 `NM=3D'n= m' NMFLAGS=3D'' lorder backtrace.So symtab.So unwind.So | tsort -q` -lelf --- libexecinfo.a --- building static execinfo library ar -crD libexecinfo.a `NM=3D'nm' NMFLAGS=3D'' lorder backtrace.o symtab.o u= nwind.o | tsort -q`=20 --- all_subdir_libexpat --- =3D=3D=3D> lib/libexpat (all) --- all_subdir_libexecinfo --- ranlib -D libexecinfo.a --- all_subdir_libfetch --- =3D=3D=3D> lib/libfetch (all) --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depe= nd.fetch.o -MTfetch.o -std=3Diso9899:1999 -fstack-protector-strong -Wsystem= -headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-pr= ototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Ww= rite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subsc= ripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -W= no-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-= body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c = /builds/FreeBSD_HEAD/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libdwarf --- --- libdwarf_ranges.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_ranges.o -MTlibdwarf_ranges.o -std=3Dgn= u99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../.= ./contrib/elftoolchain/libdwarf/libdwarf_ranges.c -o libdwarf_ranges.o --- all_subdir_libevent --- --- log.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.log.o -MTlog= .o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn= o-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-stri= ng-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unuse= d-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion= -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-p= arameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../cont= rib/pf/libevent/log.c -o log.o --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depe= nd.common.o -MTcommon.o -std=3Diso9899:1999 -fstack-protector-strong -Wsyst= em-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-sub= scripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition = -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empt= y-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -= c /builds/FreeBSD_HEAD/lib/libfetch/common.c -o common.o --- all_subdir_libdwarf --- --- libdwarf_reloc.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_reloc.o -MTlibdwarf_reloc.o -std=3Dgnu9= 9 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -= W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-= parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredund= ant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-decla= rations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-co= nst-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../= contrib/elftoolchain/libdwarf/libdwarf_reloc.c -o libdwarf_reloc.o --- all_subdir_libevent --- --- poll.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.poll.o -MTpo= ll.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -= Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-st= ring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unu= sed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversi= on -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted= -parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../co= ntrib/pf/libevent/poll.c -o poll.o --- select.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.select.o -MT= select.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wn= o-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno= -unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conv= ersion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-prom= oted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../.= ./contrib/pf/libevent/select.c -o select.o --- all_subdir_libdwarf --- --- libdwarf_rw.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_rw.o -MTlibdwarf_rw.o -std=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno= -unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith = -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parame= ter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-de= cls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaration= s -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-va= riable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contri= b/elftoolchain/libdwarf/libdwarf_rw.c -o libdwarf_rw.o --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depe= nd.ftp.o -MTftp.o -std=3Diso9899:1999 -fstack-protector-strong -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-protot= ypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite= -strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscript= s -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-p= ointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body= -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /bui= lds/FreeBSD_HEAD/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libevent --- --- signal.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME = -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H = -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF = -DHAVE_WORKING_KQUEUE -DVERSION=3D'"1.3b"' -MD -MP -MF.depend.signal.o -MT= signal.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa= ll -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wn= o-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno= -unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conv= ersion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-prom= oted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../.= ./contrib/pf/libevent/signal.c -o signal.o --- libprivateevent.so.1 --- building shared library libprivateevent.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o libprivateevent.so.1 -Wl,-soname,libprivateevent.so.1 = `NM=3D'nm' NMFLAGS=3D'' lorder buffer.So evbuffer.So event.So kqueue.So log= .So poll.So select.So signal.So | tsort -q`=20 --- libprivateevent.a --- building static event library ar -crD libprivateevent.a `NM=3D'nm' NMFLAGS=3D'' lorder buffer.o evbuffer.= o event.o kqueue.o log.o poll.o select.o signal.o | tsort -q`=20 --- all_subdir_libdwarf --- --- libdwarf_sections.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_sections.o -MTlibdwarf_sections.o -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -W= unused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -= Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variabl= e-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-un= used-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf= /../../contrib/elftoolchain/libdwarf/libdwarf_sections.c -o libdwarf_sectio= ns.o --- all_subdir_libevent --- ranlib -D libprivateevent.a --- all_subdir_libfigpar --- =3D=3D=3D> lib/libfigpar (all) --- all_subdir_libgpio --- =3D=3D=3D> lib/libgpio (all) --- gpio.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libgpio -MD -MP -MF= .depend.gpio.So -MTgpio.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-h= eaders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prot= otypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwri= te-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscri= pts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno= -pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-bo= dy -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /b= uilds/FreeBSD_HEAD/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libfetch --- --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depe= nd.http.o -MThttp.o -std=3Diso9899:1999 -fstack-protector-strong -Wsystem-h= eaders -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prot= otypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwri= te-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscri= pts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno= -pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-bo= dy -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /b= uilds/FreeBSD_HEAD/lib/libfetch/http.c -o http.o --- all_subdir_libdwarf --- --- libdwarf_str.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.libdwarf_str.o -MTlibdwarf_str.o -std=3Dgnu99 -f= stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W= no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit= h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para= meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-= decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati= ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-= variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../cont= rib/elftoolchain/libdwarf/libdwarf_str.c -o libdwarf_str.o --- dwarf_funcs.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.dwarf_funcs.o -MTdwarf_funcs.o -std=3Dgnu99 -fst= ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno= -unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith = -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parame= ter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-de= cls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaration= s -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-va= riable -Qunused-arguments -c dwarf_funcs.c -o dwarf_funcs.o --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libgpio -MD -MP -MF.depend.gpio= .o -MTgpio.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror= -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Ws= witch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -= Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign = -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string= -plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_= HEAD/lib/libgpio/gpio.c -o gpio.o --- all_subdir_libdwarf --- --- dwarf_pro_funcs.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.dwarf_pro_funcs.o -MTdwarf_pro_funcs.o -std=3Dgn= u99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k= -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunuse= d-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredu= ndant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-dec= larations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-= const-variable -Qunused-arguments -c dwarf_pro_funcs.c -o dwarf_pro_funcs.o --- dwarf_pro_pubnames.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elft= oolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftool= chain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain= /libelf -MD -MP -MF.depend.dwarf_pro_pubnames.o -MTdwarf_pro_pubnames.o -st= d=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-form= at-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -W= pointer-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-variab= le-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-u= nused-const-variable -Qunused-arguments -c dwarf_pro_pubnames.c -o dwarf_pr= o_pubnames.o --- all_subdir_libfetch --- /builds/FreeBSD_HEAD/lib/libfetch/http.c:1692:25: error: address of array '= url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversio= n] aparams.user =3D url->user ? ~~~~~^~~~ ~ /builds/FreeBSD_HEAD/lib/libfetch/http.c:1694:29: error: address of array '= url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion= ] aparams.password =3D url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch 1 error make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libgpio --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libgpio *** [all_subdir_libgpio] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib 3 errors make[4]: stopped in /builds/FreeBSD_HEAD/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /builds/FreeBSD_HEAD *** [libraries] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 1 error make[2]: stopped in /builds/FreeBSD_HEAD *** [_libraries] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 16:27:58 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3CF8A3B821 for ; Sun, 29 Nov 2015 16:27:58 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BAEA1EFF; Sun, 29 Nov 2015 16:27:58 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a34pP-0021QC-Sw>; Sun, 29 Nov 2015 17:27:55 +0100 Received: from x5ce139f8.dyn.telefonica.de ([92.225.57.248] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a34pP-001agt-N1>; Sun, 29 Nov 2015 17:27:55 +0100 Date: Sun, 29 Nov 2015 17:27:50 +0100 From: "O. Hartmann" To: NGie Cooper Cc: FreeBSD CURRENT , Adrian Chadd Subject: Re: CURRENT: r291443: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" Message-ID: <20151129172750.205fb2c6.ohartman@zedat.fu-berlin.de> In-Reply-To: References: <20151129093641.7049bf93.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/r=pLYdpaeSRLUsKMhcxJYpL"; protocol="application/pgp-signature" X-Originating-IP: 92.225.57.248 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:27:58 -0000 --Sig_/r=pLYdpaeSRLUsKMhcxJYpL Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Sun, 29 Nov 2015 01:39:28 -0800 NGie Cooper schrieb: > > On Nov 29, 2015, at 00:36, O. Hartmann wr= ote: > >=20 > > CURRENT (At revision 291443.) fails building kernel with: > >=20 > > [...] > > make[2]: stopped in /usr/obj/usr/src/sys/GATE > > --- .depend --- > > /usr/src/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c:45:10: fata= l error: > > 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" =20 >=20 > Some .ini files/directories seem to have been missed in the past few comm= its.. > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" ... indeed and they prevent a kernel from building :-( --Sig_/r=pLYdpaeSRLUsKMhcxJYpL Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWWyeGAAoJEOgBcD7A/5N8QosH/25FgRfFDX8W/G8+SYT2fWmK raib2GOOCqFfhip2zQBcNWBbmlAOX4SaTmgyt4jk1DHTPj/ywn+0cJInruwDh2xp wN5RBpOIesaYbo2XREZMkMlA1yFHT945p3EcE13Qx9ebT7ccOJZ2bSKFvWcM3jKh +lCiYRzhjIo6oyqwtkU2J4uIBuOK0tdRGx+3+ZYSc/ZGTi+Xv0kTcP5WVHfefl16 zRcytftsZbSUKpbyePPU9OP1JBgURxM9tSYr4aWCLW1u+Z7TGw33h9L/QJsyZjIP F5Ivd6RFMgDOnpzD2VmJxHXIepZSgLl3QX2GAxSGPmCHyOK29WPSULkN6JemwEQ= =MPAO -----END PGP SIGNATURE----- --Sig_/r=pLYdpaeSRLUsKMhcxJYpL-- From owner-freebsd-current@freebsd.org Sun Nov 29 17:27:43 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CDFCA3C912 for ; Sun, 29 Nov 2015 17:27:43 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0147711ED for ; Sun, 29 Nov 2015 17:27:43 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id F2B9CA3C911; Sun, 29 Nov 2015 17:27:42 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D86C2A3C910 for ; Sun, 29 Nov 2015 17:27:42 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.netplex.net", Issuer "RapidSSL SHA256 CA - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC62F11EC for ; Sun, 29 Nov 2015 17:27:42 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.15.1/8.15.1/NETPLEX) with ESMTP id tATHRe2Y040452; Sun, 29 Nov 2015 12:27:40 -0500 X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-4.4.3 (mail.netplex.net [204.213.176.9]); Sun, 29 Nov 2015 12:27:40 -0500 (EST) Date: Sun, 29 Nov 2015 12:27:40 -0500 (EST) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net Reply-To: Daniel Eischen To: Konstantin Belousov cc: current@freebsd.org Subject: Re: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) In-Reply-To: <20151129102903.GD3448@kib.kiev.ua> Message-ID: References: <20151129102903.GD3448@kib.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 17:27:43 -0000 On Sun, 29 Nov 2015, Konstantin Belousov wrote: > On Sun, Nov 29, 2015 at 01:23:04AM -0500, Daniel Eischen wrote: >> On Fri, 27 Nov 2015, Daniel Eischen wrote: >> >>> Damn, please use deischen@freebsd.org for replies. >>> >>> On Fri, 27 Nov 2015, Daniel Eischen wrote: >>> >>>> On Fri, 27 Nov 2015, Daniel Eischen wrote: >>>> >>>>> $ uname -a >>>>> FreeBSD vega 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r277320: Mon Jan 19 >>>>> 09:02:50 EST 2015 >>>>> deischen@vega:/usr/FreeBSD/svn/obj/usr/FreeBSD/svn/src/sys/vega amd64 >>>>> >>>>> Upgrading to today's current, 'rm -rf /usr/obj/*; make -j8 buildworld' >>>>> fails here: >>>>> >>>>> ===> lib/libc/tests/gen/execve (buildconfig) >>>>> --- all_subdir_tests --- >>>>> --- all_subdir_mqueue --- >>>>> mqtest3.o: In function `main': >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x139): undefined >>>>> reference to `__mq_oshandle' >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x14c): undefined >>>>> reference to `__mq_oshandle' >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x16c): undefined >>>>> reference to `__mq_oshandle' >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3e6): undefined >>>>> reference to `__mq_oshandle' >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3f9): undefined >>>>> reference to `__mq_oshandle' >>>>> mqtest3.o:/usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x40f): >>>>> more undefined references to `__mq_oshandle' follow >>>>> cc: error: linker command failed with exit code 1 (use -v to see >>>>> invocation) >>>>> >>>>> Going to try make [-j1], next, but anyone come across this? >>>> >>>> Still fails. >>>> >>>> Why do the tests in tests/sys/mqueue/ try to use non-public APIs? >> >> So I found out that sometime in the last year or so, symbol versioning >> for librt was broken and leaking symbols that shouldn't have been >> leaked. I've just committed a fix for this. >> >> Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' >> and see the non FBSD_foo symbols that shouldn't be there. > > I did the following on the librt from the HEAD of about month ago: > > pooma% ls -l netboot/sandy/usr/lib/librt.so.1 > -r--r--r-- 1 root wheel 23704 Oct 24 23:35 netboot/sandy/usr/lib/librt.so.1 > > pooma% readelf -sw netboot/sandy/usr/lib/librt.so.1 | grep GLOBAL | grep -v UND | grep -v FBSDpriv | grep FBSD > 97: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS FBSD_1.0 > > But I think that your commit is the good change. Can you check librt.so.1 in your buildworld temporary build environment? $ readelf -sW /usr/obj/usr/FreeBSD/svn/src/tmp/usr/lib/librt.so.1 \ grep -v UND | grep GLOBAL There has to be a reason that tests/sys/mqueue/mqtest[3-4].c build without error when they reference __mq_oshandle. That symbol is not exported from librt. Hmm, looks like libc and libthr are also the same (leaky) in the temporary build environment (TBE). So something broke when building the TBE libraries. For r277320 on my system Jan 19, 2015, the TBE libraries must have been built correctly because mqtests[3-4] failed with unresolved references to __mq_oshandle. -- DE From owner-freebsd-current@freebsd.org Sun Nov 29 17:38:31 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3986A3CB43; Sun, 29 Nov 2015 17:38:30 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id CF7F11864; Sun, 29 Nov 2015 17:38:30 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 546BB186F; Sun, 29 Nov 2015 17:38:30 +0000 (UTC) Date: Sun, 29 Nov 2015 17:38:27 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: dim@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1488430586.251.1448818709382.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1585350670.243.1448811503323.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1585350670.243.1448811503323.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1794 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 17:38:31 -0000 FreeBSD_HEAD_i386 - Build #1794 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1794/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1794/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1794/console Change summaries: 291455 by dim: Install the public sanitizer headers. These are useful for programs that want to directly interface with sanitizer internals. The end of the build log: [...truncated 58186 lines...] --- all_subdir_libdwarf --- --- dwarf_pro_attr.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_attr.c -o dwarf_pro_attr.o --- all_subdir_libfetch --- --- fetch.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch.So --- all_subdir_libevent --- --- evbuffer.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- all_subdir_libfetch --- --- common.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.So --- all_subdir_libevent --- --- event.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/event.c -o event.o --- all_subdir_libdwarf --- --- dwarf_pro_attr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_attr.c -o dwarf_pro_attr.So --- all_subdir_libevent --- --- kqueue.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libdwarf --- --- dwarf_pro_die.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_die.c -o dwarf_pro_die.o --- all_subdir_libfetch --- --- file.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.So --- all_subdir_libdwarf --- --- dwarf_pro_die.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_die.c -o dwarf_pro_die.So --- dwarf_pro_expr.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_expr.c -o dwarf_pro_expr.o --- all_subdir_libevent --- --- log.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/log.c -o log.o --- poll.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/poll.c -o poll.o --- all_subdir_libdwarf --- --- dwarf_pro_expr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_expr.c -o dwarf_pro_expr.So --- dwarf_pro_finish.o --- --- all_subdir_libfetch --- --- fetch.o --- --- all_subdir_libdwarf --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_finish.c -o dwarf_pro_finish.o --- all_subdir_libfetch --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libevent --- --- select.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/select.c -o select.o --- signal.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.o --- all_subdir_libdwarf --- --- dwarf_pro_finish.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_finish.c -o dwarf_pro_finish.So --- dwarf_pro_frame.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_frame.c -o dwarf_pro_frame.o --- all_subdir_libevent --- --- libprivateevent.so.1 --- building shared library libprivateevent.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libprivateevent.so.1 -Wl,-soname,libprivateevent.so.1 `NM='nm' NMFLAGS='' lorder buffer.So evbuffer.So event.So kqueue.So log.So poll.So select.So signal.So | tsort -q` --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.o --- all_subdir_libevent --- --- libprivateevent.a --- building static event library ar -crD libprivateevent.a `NM='nm' NMFLAGS='' lorder buffer.o evbuffer.o event.o kqueue.o log.o poll.o select.o signal.o | tsort -q` ranlib -D libprivateevent.a --- all_subdir_libfetch --- --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.o --- all_subdir_libgpio --- --- all_subdir_libdwarf --- --- dwarf_pro_frame.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_frame.c -o dwarf_pro_frame.So --- all_subdir_libgpio --- ===> lib/libgpio (all) --- gpio.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libdwarf --- --- dwarf_pro_init.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_init.c -o dwarf_pro_init.o --- all_subdir_libgssapi --- ===> lib/libgssapi (all) --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.o --- all_subdir_libdwarf --- --- dwarf_pro_init.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_init.c -o dwarf_pro_init.So --- all_subdir_librpcsec_gss --- ===> lib/librpcsec_gss (all) --- rpcsec_gss.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss.c -o rpcsec_gss.So --- all_subdir_libdwarf --- --- dwarf_pro_lineno.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.o --- all_subdir_libgpio --- --- libgpio.so.0 --- building shared library libgpio.so.0 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libgpio.so.0 -Wl,-soname,libgpio.so.0 `NM='nm' NMFLAGS='' lorder gpio.So | tsort -q` --- libgpio.a --- building static gpio library ar -crD libgpio.a `NM='nm' NMFLAGS='' lorder gpio.o | tsort -q` ranlib -D libgpio.a --- all_subdir_librpcsec_gss --- --- rpcsec_gss_prot.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_prot.c -o rpcsec_gss_prot.So --- all_subdir_libdwarf --- --- dwarf_pro_lineno.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.So --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.o --- all_subdir_librpcsec_gss --- --- rpcsec_gss_conf.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_conf.c -o rpcsec_gss_conf.So --- rpcsec_gss_misc.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_misc.c -o rpcsec_gss_misc.So --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.So --- all_subdir_libfetch --- --- ftp.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.So --- all_subdir_libdwarf --- --- dwarf_pro_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.o --- all_subdir_librpcsec_gss --- --- svc_rpcsec_gss.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/svc_rpcsec_gss.c -o svc_rpcsec_gss.So --- all_subdir_libdwarf --- --- dwarf_pro_reloc.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.So --- dwarf_pro_sections.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.o --- dwarf_pro_sections.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.So --- dwarf_ranges.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_ranges.c -o dwarf_ranges.o --- all_subdir_librpcsec_gss --- --- rpcsec_gss.o --- cc -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss.c -o rpcsec_gss.o --- all_subdir_libfetch --- --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/http.c -o http.o --- all_subdir_libdwarf --- --- dwarf_ranges.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_ranges.c -o dwarf_ranges.So --- dwarf_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.o --- all_subdir_librpcsec_gss --- --- rpcsec_gss_prot.o --- cc -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_prot.c -o rpcsec_gss_prot.o --- all_subdir_libfetch --- --- http.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/http.c -o http.So --- all_subdir_libdwarf --- --- dwarf_reloc.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.So --- all_subdir_libfetch --- --- http.o --- /usr/src/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /usr/src/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /usr/src/lib/libfetch --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_librpcsec_gss --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/librpcsec_gss *** [all_subdir_librpcsec_gss] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_libfetch --- --- http.So --- /usr/src/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /usr/src/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.So] Error code 1 make[5]: stopped in /usr/src/lib/libfetch 2 errors make[5]: stopped in /usr/src/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /usr/src/lib 3 errors make[4]: stopped in /usr/src/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /usr/src *** [libraries] Error code 2 make[2]: stopped in /usr/src 1 error make[2]: stopped in /usr/src *** [_libraries] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson2092826706189442429.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 18:13:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34C14A222E0 for ; Sun, 29 Nov 2015 18:13:41 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-ig0-x231.google.com (mail-ig0-x231.google.com [IPv6:2607:f8b0:4001:c05::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3DDB1649 for ; Sun, 29 Nov 2015 18:13:40 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by igvg19 with SMTP id g19so56978007igv.1 for ; Sun, 29 Nov 2015 10:13:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=m2e+KNz2Qq1WICFEaw7JazhOfpA+6FDsCBFzQ2pBGnM=; b=bQvobimYVbsiJ72+C4XdWOi7XmH8MbXwMtDIiA1N5v5F5F9K7aZZewXg5uuTW7iCnM pwaRPRoabbiuzIr+X9wN/IHZfw5ZwIVEKx8IaBaGQ4hJbhT9t46cSuu4vgDbLQXTyXxz 6Amxxf/NKIg96pXQQuUYFgcA6jGgx/+FcZfkSLHkA1tm0U50PhVfXfThgO1YTZSeLSfz DfBzZZ2I2klxnCf9lAuw8CtOdsJ4rGNxDdV8cdDsx7CKQb0VhcXma5K6AJroIvCctYr9 TTxtAbyBwUumL0EVaDhkeWugkeS20nFa5Hpa51tuWlI+93YUnNcNnBUYdVOHOpZtJOiE nhnw== MIME-Version: 1.0 X-Received: by 10.50.65.74 with SMTP id v10mr16156069igs.61.1448820820425; Sun, 29 Nov 2015 10:13:40 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.36.217.196 with HTTP; Sun, 29 Nov 2015 10:13:40 -0800 (PST) In-Reply-To: <20151129172750.205fb2c6.ohartman@zedat.fu-berlin.de> References: <20151129093641.7049bf93.ohartman@zedat.fu-berlin.de> <20151129172750.205fb2c6.ohartman@zedat.fu-berlin.de> Date: Sun, 29 Nov 2015 10:13:40 -0800 X-Google-Sender-Auth: e6xDHqkeV3V-3M8zCw4xklS4nGc Message-ID: Subject: Re: CURRENT: r291443: 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" From: Adrian Chadd To: "O. Hartmann" Cc: NGie Cooper , FreeBSD CURRENT Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 18:13:41 -0000 damnit I'll fix that in like 2 minutes -a On 29 November 2015 at 08:27, O. Hartmann wrote: > Am Sun, 29 Nov 2015 01:39:28 -0800 > NGie Cooper schrieb: > >> > On Nov 29, 2015, at 00:36, O. Hartmann wrote: >> > >> > CURRENT (At revision 291443.) fails building kernel with: >> > >> > [...] >> > make[2]: stopped in /usr/obj/usr/src/sys/GATE >> > --- .depend --- >> > /usr/src/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c:45:10: fatal error: >> > 'ar9300/ar953x.ini' file not found #include "ar9300/ar953x.ini" >> >> Some .ini files/directories seem to have been missed in the past few commits.. >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> https://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > > > ... indeed and they prevent a kernel from building :-( From owner-freebsd-current@freebsd.org Sun Nov 29 18:58:23 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B382AA22EA0 for ; Sun, 29 Nov 2015 18:58:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A2B8E1AEE; Sun, 29 Nov 2015 18:58:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id B9D5A189D; Sun, 29 Nov 2015 18:58:23 +0000 (UTC) Date: Sun, 29 Nov 2015 18:58:22 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: dim@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1775480594.257.1448823503727.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <72117351.247.1448812993662.JavaMail.jenkins@jenkins-9.freebsd.org> References: <72117351.247.1448812993662.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3587 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 18:58:23 -0000 FreeBSD_HEAD - Build #3587 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3587/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3587/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3587/console Change summaries: 291458 by adrian: add missing initvals. Sorry y'all. 291455 by dim: Install the public sanitizer headers. These are useful for programs that want to directly interface with sanitizer internals. The end of the build log: [...truncated 111330 lines...] --- bsm_notify.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_notify.o -MTbsm_notify.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_notify.c -o bsm_notify.o --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_pro_macinfo.o -MTdwarf_pro_macinfo.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.o --- all_subdir_libbsm --- --- bsm_socket_type.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_socket_type.o -MTbsm_socket_type.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_socket_type.c -o bsm_socket_type.o --- all_subdir_libdwarf --- --- dwarf_pro_reloc.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_pro_reloc.o -MTdwarf_pro_reloc.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.o --- all_subdir_libbsm --- --- bsm_token.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_token.o -MTbsm_token.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_token.c -o bsm_token.o --- all_subdir_libdwarf --- --- dwarf_pro_sections.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_pro_sections.o -MTdwarf_pro_sections.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.o --- all_subdir_libelftc --- --- libelftc_vstr.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/common -MD -MP -MF.depend.libelftc_vstr.o -MTlibelftc_vstr.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/libelftc/libelftc_vstr.c -o libelftc_vstr.o --- all_subdir_libbsm --- --- bsm_user.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_user.o -MTbsm_user.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_user.c -o bsm_user.o --- all_subdir_libdwarf --- --- dwarf_ranges.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_ranges.o -MTdwarf_ranges.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_ranges.c -o dwarf_ranges.o --- all_subdir_libelftc --- --- libelftc.a --- --- all_subdir_libbsm --- --- bsm_wrappers.o --- --- all_subdir_libelftc --- building static elftc library --- all_subdir_libbsm --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_wrappers.o -MTbsm_wrappers.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_wrappers.c -o bsm_wrappers.o --- all_subdir_libelftc --- ar -crD libelftc.a `NM='nm' NMFLAGS='' lorder elftc_bfdtarget.o elftc_copyfile.o elftc_demangle.o elftc_set_timestamps.o elftc_string_table.o elftc_version.o libelftc_bfdtarget.o libelftc_dem_arm.o libelftc_dem_gnu2.o libelftc_dem_gnu3.o libelftc_hash.o libelftc_vstr.o | tsort -q` --- all_subdir_libdwarf --- --- dwarf_reloc.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_reloc.o -MTdwarf_reloc.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.o --- all_subdir_libelftc --- ranlib -D libelftc.a --- all_subdir_libevent --- ===> lib/libevent (all) --- buffer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.buffer.So -MTbuffer.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/buffer.c -o buffer.So --- all_subdir_libdwarf --- --- dwarf_sections.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_sections.o -MTdwarf_sections.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_sections.c -o dwarf_sections.o --- all_subdir_libexecinfo --- ===> lib/libexecinfo (all) --- all_subdir_libdwarf --- --- dwarf_seterror.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_seterror.o -MTdwarf_seterror.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_seterror.c -o dwarf_seterror.o --- all_subdir_libexecinfo --- --- backtrace.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.backtrace.So -MTbacktrace.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.So --- all_subdir_libevent --- --- evbuffer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.evbuffer.So -MTevbuffer.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.So --- all_subdir_libdwarf --- --- dwarf_str.o --- --- all_subdir_libbsm --- --- libbsm.so.3 --- --- all_subdir_libdwarf --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_str.o -MTdwarf_str.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_str.c -o dwarf_str.o --- all_subdir_libbsm --- building shared library libbsm.so.3 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libbsm.so.3 -Wl,-soname,libbsm.so.3 `NM='nm' NMFLAGS='' lorder bsm_audit.So bsm_class.So bsm_control.So bsm_domain.So bsm_errno.So bsm_event.So bsm_fcntl.So bsm_flags.So bsm_io.So bsm_mask.So bsm_notify.So bsm_socket_type.So bsm_token.So bsm_user.So bsm_wrappers.So | tsort -q` --- all_subdir_libevent --- --- event.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.event.So -MTevent.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/event.c -o event.So --- all_subdir_libbsm --- --- libbsm.a --- building static bsm library ar -crD libbsm.a `NM='nm' NMFLAGS='' lorder bsm_audit.o bsm_class.o bsm_control.o bsm_domain.o bsm_errno.o bsm_event.o bsm_fcntl.o bsm_flags.o bsm_io.o bsm_mask.o bsm_notify.o bsm_socket_type.o bsm_token.o bsm_user.o bsm_wrappers.o | tsort -q` --- all_subdir_libdwarf --- --- libdwarf.o --- --- all_subdir_libexecinfo --- --- symtab.So --- --- all_subdir_libdwarf --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf.o -MTlibdwarf.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf.c -o libdwarf.o --- all_subdir_libexecinfo --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.symtab.So -MTsymtab.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.So --- all_subdir_libbsm --- ranlib -D libbsm.a --- all_subdir_libexpat --- ===> lib/libexpat (all) --- all_subdir_libexecinfo --- --- unwind.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.unwind.So -MTunwind.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.So --- all_subdir_libdwarf --- --- libdwarf_abbrev.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_abbrev.o -MTlibdwarf_abbrev.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_abbrev.c -o libdwarf_abbrev.o --- libdwarf_arange.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_arange.o -MTlibdwarf_arange.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_arange.c -o libdwarf_arange.o --- all_subdir_libexecinfo --- --- backtrace.o --- cc -O2 -pipe -MD -MP -MF.depend.backtrace.o -MTbacktrace.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.o --- symtab.o --- cc -O2 -pipe -MD -MP -MF.depend.symtab.o -MTsymtab.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.o --- all_subdir_libevent --- --- kqueue.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.kqueue.So -MTkqueue.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.So --- all_subdir_libdwarf --- --- libdwarf_attr.o --- --- all_subdir_libexecinfo --- --- unwind.o --- --- all_subdir_libdwarf --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_attr.o -MTlibdwarf_attr.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_attr.c -o libdwarf_attr.o --- all_subdir_libexecinfo --- cc -O2 -pipe -MD -MP -MF.depend.unwind.o -MTunwind.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.o --- libexecinfo.so.1 --- building shared library libexecinfo.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libexecinfo.so.1 -Wl,-soname,libexecinfo.so.1 `NM='nm' NMFLAGS='' lorder backtrace.So symtab.So unwind.So | tsort -q` -lelf --- all_subdir_libfetch --- ===> lib/libfetch (all) --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.fetch.o -MTfetch.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libexecinfo --- --- libexecinfo.a --- building static execinfo library ar -crD libexecinfo.a `NM='nm' NMFLAGS='' lorder backtrace.o symtab.o unwind.o | tsort -q` ranlib -D libexecinfo.a --- all_subdir_libdwarf --- --- libdwarf_die.o --- --- all_subdir_libevent --- --- log.So --- --- all_subdir_libdwarf --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_die.o -MTlibdwarf_die.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_die.c -o libdwarf_die.o --- all_subdir_libevent --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.log.So -MTlog.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/log.c -o log.So --- poll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.poll.So -MTpoll.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/poll.c -o poll.So --- all_subdir_libdwarf --- --- libdwarf_error.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_error.o -MTlibdwarf_error.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_error.c -o libdwarf_error.o --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.common.o -MTcommon.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/common.c -o common.o --- all_subdir_libdwarf --- --- libdwarf_elf_access.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_elf_access.o -MTlibdwarf_elf_access.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_elf_access.c -o libdwarf_elf_access.o --- all_subdir_libevent --- --- select.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.select.So -MTselect.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/select.c -o select.So --- all_subdir_libdwarf --- --- libdwarf_elf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_elf_init.o -MTlibdwarf_elf_init.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_elf_init.c -o libdwarf_elf_init.o --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.ftp.o -MTftp.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libevent --- --- signal.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.signal.So -MTsignal.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.So --- buffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.buffer.o -MTbuffer.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/buffer.c -o buffer.o --- all_subdir_libdwarf --- --- libdwarf_frame.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_frame.o -MTlibdwarf_frame.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_frame.c -o libdwarf_frame.o --- all_subdir_libevent --- --- evbuffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.evbuffer.o -MTevbuffer.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- event.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.event.o -MTevent.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/event.c -o event.o --- all_subdir_libdwarf --- --- libdwarf_info.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_info.o -MTlibdwarf_info.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_info.c -o libdwarf_info.o --- all_subdir_libfetch --- --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.http.o -MThttp.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/http.c -o http.o --- all_subdir_libdwarf --- --- libdwarf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_init.o -MTlibdwarf_init.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_init.c -o libdwarf_init.o --- libdwarf_lineno.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_lineno.o -MTlibdwarf_lineno.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_lineno.c -o libdwarf_lineno.o --- all_subdir_libevent --- --- kqueue.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.kqueue.o -MTkqueue.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libfigpar --- ===> lib/libfigpar (all) --- all_subdir_libfetch --- --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.file.o -MTfile.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/file.c -o file.o --- http.o --- /builds/FreeBSD_HEAD/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /builds/FreeBSD_HEAD/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. --- all_subdir_libevent --- --- log.o --- --- all_subdir_libfetch --- *** [http.o] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch --- all_subdir_libevent --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.log.o -MTlog.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/log.c -o log.o --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libevent --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libevent *** [all_subdir_libevent] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libfetch --- 1 error make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib 3 errors make[4]: stopped in /builds/FreeBSD_HEAD/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /builds/FreeBSD_HEAD *** [libraries] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 1 error make[2]: stopped in /builds/FreeBSD_HEAD *** [_libraries] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 19:38:11 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81CCAA3A9A4; Sun, 29 Nov 2015 19:38:11 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 7097D1E49; Sun, 29 Nov 2015 19:38:11 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 78E3318BD; Sun, 29 Nov 2015 19:38:11 +0000 (UTC) Date: Sun, 29 Nov 2015 19:38:10 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1425123218.259.1448825891221.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1488430586.251.1448818709382.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1488430586.251.1448818709382.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1795 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 19:38:11 -0000 FreeBSD_HEAD_i386 - Build #1795 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1795/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1795/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1795/console Change summaries: 291458 by adrian: add missing initvals. Sorry y'all. The end of the build log: [...truncated 58224 lines...] cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.So --- all_subdir_libevent --- --- signal.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.o --- all_subdir_libdwarf --- --- dwarf_pro_lineno.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.o --- all_subdir_libevent --- --- libprivateevent.so.1 --- building shared library libprivateevent.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libprivateevent.so.1 -Wl,-soname,libprivateevent.so.1 `NM='nm' NMFLAGS='' lorder buffer.So evbuffer.So event.So kqueue.So log.So poll.So select.So signal.So | tsort -q` --- all_subdir_libdwarf --- --- dwarf_pro_lineno.So --- --- all_subdir_libevent --- --- libprivateevent.a --- --- all_subdir_libdwarf --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.So --- all_subdir_libevent --- building static event library ar -crD libprivateevent.a `NM='nm' NMFLAGS='' lorder buffer.o evbuffer.o event.o kqueue.o log.o poll.o select.o signal.o | tsort -q` ranlib -D libprivateevent.a --- all_subdir_libfetch --- --- file.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.So --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.o --- dwarf_pro_macinfo.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.So --- dwarf_pro_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.o --- all_subdir_libfigpar --- ===> lib/libfigpar (all) --- all_subdir_libgpio --- ===> lib/libgpio (all) --- gpio.So --- --- all_subdir_libdwarf --- --- dwarf_pro_reloc.So --- --- all_subdir_libgpio --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libdwarf --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.So --- dwarf_pro_sections.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.o --- all_subdir_libfetch --- --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.o --- all_subdir_libdwarf --- --- dwarf_pro_sections.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_sections.c -o dwarf_pro_sections.So --- dwarf_ranges.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_ranges.c -o dwarf_ranges.o --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.o --- all_subdir_libdwarf --- --- dwarf_ranges.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_ranges.c -o dwarf_ranges.So --- all_subdir_libgpio --- --- libgpio.so.0 --- building shared library libgpio.so.0 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libgpio.so.0 -Wl,-soname,libgpio.so.0 `NM='nm' NMFLAGS='' lorder gpio.So | tsort -q` --- libgpio.a --- building static gpio library ar -crD libgpio.a `NM='nm' NMFLAGS='' lorder gpio.o | tsort -q` ranlib -D libgpio.a --- all_subdir_libdwarf --- --- dwarf_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.o --- all_subdir_libfetch --- --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.o --- all_subdir_libdwarf --- --- dwarf_reloc.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.So --- dwarf_sections.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_sections.c -o dwarf_sections.o --- all_subdir_libgssapi --- ===> lib/libgssapi (all) --- all_subdir_libdwarf --- --- dwarf_sections.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_sections.c -o dwarf_sections.So --- dwarf_seterror.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_seterror.c -o dwarf_seterror.o --- dwarf_seterror.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_seterror.c -o dwarf_seterror.So --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.o --- all_subdir_librpcsec_gss --- ===> lib/librpcsec_gss (all) --- all_subdir_libdwarf --- --- dwarf_str.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_str.c -o dwarf_str.o --- all_subdir_librpcsec_gss --- --- rpcsec_gss.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss.c -o rpcsec_gss.So --- all_subdir_libdwarf --- --- dwarf_str.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_str.c -o dwarf_str.So --- all_subdir_librpcsec_gss --- --- rpcsec_gss_prot.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_prot.c -o rpcsec_gss_prot.So --- all_subdir_libdwarf --- --- libdwarf.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf.c -o libdwarf.o --- libdwarf.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf.c -o libdwarf.So --- all_subdir_libfetch --- --- ftp.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.So --- all_subdir_libdwarf --- --- libdwarf_abbrev.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_abbrev.c -o libdwarf_abbrev.o --- all_subdir_librpcsec_gss --- --- rpcsec_gss_conf.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_conf.c -o rpcsec_gss_conf.So --- all_subdir_libdwarf --- --- libdwarf_abbrev.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_abbrev.c -o libdwarf_abbrev.So --- all_subdir_librpcsec_gss --- --- rpcsec_gss_misc.So --- --- all_subdir_libiconv_modules --- --- all_subdir_librpcsec_gss --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss_misc.c -o rpcsec_gss_misc.So --- all_subdir_libiconv_modules --- ===> lib/libiconv_modules (all) --- all_subdir_BIG5 --- ===> lib/libiconv_modules/BIG5 (all) --- citrus_big5.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libiconv_modules/BIG5/../../libc/iconv -Dbool=_Bool -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libiconv_modules/BIG5/citrus_big5.c -o citrus_big5.So --- all_subdir_librpcsec_gss --- --- svc_rpcsec_gss.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/svc_rpcsec_gss.c -o svc_rpcsec_gss.So --- all_subdir_libdwarf --- --- libdwarf_arange.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_arange.c -o libdwarf_arange.o --- all_subdir_libiconv_modules --- --- libBIG5.so.4 --- building shared library libBIG5.so.4 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libBIG5.so.4 -Wl,-soname,libBIG5.so.4 `NM='nm' NMFLAGS='' lorder citrus_big5.So | tsort -q` --- all_subdir_DECHanyu --- ===> lib/libiconv_modules/DECHanyu (all) --- all_subdir_libfetch --- --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/http.c -o http.o --- all_subdir_libiconv_modules --- --- citrus_dechanyu.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libiconv_modules/DECHanyu/../../libc/iconv -Dbool=_Bool -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c -o citrus_dechanyu.So --- all_subdir_librpcsec_gss --- --- rpcsec_gss.o --- cc -O2 -pipe -I/usr/src/lib/librpcsec_gss/../../include -I/usr/src/lib/librpcsec_gss/../../libc_rpc -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/librpcsec_gss/rpcsec_gss.c -o rpcsec_gss.o --- all_subdir_libdwarf --- --- libdwarf_arange.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_arange.c -o libdwarf_arange.So --- all_subdir_libiconv_modules --- --- libDECHanyu.so.4 --- building shared library libDECHanyu.so.4 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libDECHanyu.so.4 -Wl,-soname,libDECHanyu.so.4 `NM='nm' NMFLAGS='' lorder citrus_dechanyu.So | tsort -q` --- all_subdir_EUC --- ===> lib/libiconv_modules/EUC (all) --- all_subdir_libfetch --- /usr/src/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /usr/src/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /usr/src/lib/libfetch 1 error make[5]: stopped in /usr/src/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_libiconv_modules --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/lib/libiconv_modules/EUC *** [all_subdir_EUC] Error code 2 make[5]: stopped in /usr/src/lib/libiconv_modules 1 error make[5]: stopped in /usr/src/lib/libiconv_modules *** [all_subdir_libiconv_modules] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_librpcsec_gss --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/librpcsec_gss *** [all_subdir_librpcsec_gss] Error code 2 make[4]: stopped in /usr/src/lib 4 errors make[4]: stopped in /usr/src/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /usr/src *** [libraries] Error code 2 make[2]: stopped in /usr/src 1 error make[2]: stopped in /usr/src *** [_libraries] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson4409604676150208737.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 20:07:33 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE179A3B0A0 for ; Sun, 29 Nov 2015 20:07:33 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F14E1D3B for ; Sun, 29 Nov 2015 20:07:33 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtp (envelope-from ) id <1a38Fu-002dQV-Qs>; Sun, 29 Nov 2015 21:07:30 +0100 Received: from x5ce1231e.dyn.telefonica.de ([92.225.35.30] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (envelope-from ) id <1a38Fu-001qMB-LG>; Sun, 29 Nov 2015 21:07:30 +0100 Date: Sun, 29 Nov 2015 21:07:25 +0100 From: "O. Hartmann" To: FreeBSD CURRENT Subject: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/GUGcD7c0jVCkTRPPaJv3GDJ"; protocol="application/pgp-signature" X-Originating-IP: 92.225.35.30 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 20:07:34 -0000 --Sig_/GUGcD7c0jVCkTRPPaJv3GDJ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On most recent CURRENT (Revision: 291458), ob booting I receive this on the= console: Shared object "libelf.so.2" not found, required by "libkvm.so.6" What looking at the shared object cache with ldconfig -r, I find libelf.so.= 2 as well as libkvm.so.6 listed. What is this weird message? Regards, oh --Sig_/GUGcD7c0jVCkTRPPaJv3GDJ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWW1r9AAoJEOgBcD7A/5N87xgH/0oy0SxNC8AqcynHUIkiKMcI ZuuN6sHjGE3Etq76wl6S7fz/yX5P0QJ7zQr8tjppZxhSzz4uGE8b/qfHdzOdCU+Y ga/RajxisxZPLZmvGsPYeg1/KV46LnD1ZHjIQVN59Ur6wcSRv6acXxgID09onC2P QTdM/Hxcmvk7u9shGHFT0vDyvDD6gqRmLiDmIia7VYByJ6h9wu3ovyn8YRLFn/MG cB05/J/ln6DpkWMFdMnLvBdavR5fJrVjL44EeD6+FnnfVBI53Qdilpmk5+UAMOTo 9gzi2QgM9FoOOLoKMrxT+AgjUqAtKyllUlshbSA3NMhV58em6CGEs7EZkUGMAks= =E5yp -----END PGP SIGNATURE----- --Sig_/GUGcD7c0jVCkTRPPaJv3GDJ-- From owner-freebsd-current@freebsd.org Sun Nov 29 20:12:23 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56F8CA3B367 for ; Sun, 29 Nov 2015 20:12:23 +0000 (UTC) (envelope-from henry.hu.sh@gmail.com) Received: from mail-vk0-x230.google.com (mail-vk0-x230.google.com [IPv6:2607:f8b0:400c:c05::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 128E71175 for ; Sun, 29 Nov 2015 20:12:23 +0000 (UTC) (envelope-from henry.hu.sh@gmail.com) Received: by vkca188 with SMTP id a188so35603878vkc.0 for ; Sun, 29 Nov 2015 12:12:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=H83Mc9YIn7G6OP7BnwnfYteEsYKst8SDwYUipYya4us=; b=UO1i3ZZgBpvbAD9/ltJyVgsMospeV4iKXh0il3hvLihkeOydUE2/Gjvt/F/VwOjDjb Gh9u9cSbPl2DfkrSkYXbIGLxsg6dbUgdn3nIJDiDA+RFq6jc3kqFKOqXQqcMNmstsgUz eJgkjDFMKeA8uz0AkJ3WPJlWpJf0WnMQ+rCTWzz3y5X3Dy6IxRy/2vmLXpgvP8v7ORX2 Lv5fwPRLKlazI0YJ6PgUAuSQIYY9CocUhzl9535uiFA4N/dt8oBHFmdjgYu72QMH6UTf pQjDmO7Oc0K+iKGwHtPCe/Xbisi7De7VSyX1GPQjHrUDfv6992FfR/qDGlwBQooInMiv YPQg== X-Received: by 10.31.33.75 with SMTP id h72mr51796028vkh.21.1448827941775; Sun, 29 Nov 2015 12:12:21 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.0.4 with HTTP; Sun, 29 Nov 2015 12:11:42 -0800 (PST) In-Reply-To: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> From: Henry Hu Date: Sun, 29 Nov 2015 15:11:42 -0500 Message-ID: Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" To: "O. Hartmann" Cc: FreeBSD CURRENT Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 20:12:23 -0000 On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann wrote: > > On most recent CURRENT (Revision: 291458), ob booting I receive this on > the console: > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > What looking at the shared object cache with ldconfig -r, I find > libelf.so.2 as well as > libkvm.so.6 listed. > > What is this weird message? > > locate libelf.so.2 ... /usr/lib/libelf.so.2 ... > locate libkvm.so.6 /lib/libkvm.so.6 ... > ldd /lib/libkvm.so.6 /lib/libkvm.so.6: libc.so.7 => /lib/libc.so.7 (0x800822000) It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it come from? > Regards, > > oh > -- Cheers, Henry From owner-freebsd-current@freebsd.org Sun Nov 29 20:58:13 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C3DCA3BDF5 for ; Sun, 29 Nov 2015 20:58:13 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from mail-wm0-x231.google.com (mail-wm0-x231.google.com [IPv6:2a00:1450:400c:c09::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E78BE1371 for ; Sun, 29 Nov 2015 20:58:12 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: by wmww144 with SMTP id w144so106797963wmw.1 for ; Sun, 29 Nov 2015 12:58:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bris-ac-uk.20150623.gappssmtp.com; s=20150623; h=date:from:message-id:to:subject:reply-to; bh=5oEiRk/pdYstRpl0Z/hsuujmEomK10hB+psc92OaHG8=; b=aJoTV/JJMxoXhqAmYxzc7AZJp9m1VQd237Ob9c4sEm8k42OQi1zxz5VNutDDdhLiCz A254elIWxz1k3ePfM0BWakuPrPCGgv9sfKtASrV2PRwRWJL3W3Y5rqXIW2EfBAcFRgQH E5ZlraiNyaWco3GoBz6d/QH79d4K9YeaPlrfvDRgSuIjiYdnuv4VPPm96tHgecunWaTH 9wwDsghwS/Vicqqpd+FSonagHFydpwukx/B3JEYnU/DvnO7Ba8JxUvUfdy05MmtBIWQ7 CvhBIxi8uHjwRRmrI9sALITJxG6aK+BTnS93Axxbpvz7Qw+HvOsKR9FfBVj8E5s0y2hn R15g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:message-id:to:subject:reply-to; bh=5oEiRk/pdYstRpl0Z/hsuujmEomK10hB+psc92OaHG8=; b=duqfPqTMwZs8D0iSEGbqs9Wt9GfzKGWIi0VCcbOn5Fnaw9C0GEU4zVugsDak8nWUpx buEtMob6sX9fKg1ZL2z0NhRpymmDSd69Y4MX5ITaAEAgRlAuGNVnTlzdzoQDTViHEXQN qIVg0K4PGPlCQBnHaW+FzVkw5/FCcn+rrkpqnohk+4iBqo2RU+uBp5B6gELBQHRmSaZP eIbvEAjRRJ+IbuFTxYRvIIvYaP1kP9+BucXxiIpOWiRdV676ffl4wu2Bq5lz4lbpvkWX Io2sWgDk3Yt0fFo5qczexwbh906Uj0CaByLKAv7pjouBvV8oUz1Drzpl8/Gn1GJcn0BG BpQA== X-Gm-Message-State: ALoCoQlPhALtJJCGM2JV6rni85Lhhu8hGI+G1sKqz+2rpwPIR6mBfxDOga9C/haxrOWO2M2SVvCA X-Received: by 10.195.11.101 with SMTP id eh5mr69502515wjd.104.1448830689766; Sun, 29 Nov 2015 12:58:09 -0800 (PST) Received: from mech-as222.men.bris.ac.uk (mech-as222.men.bris.ac.uk. [137.222.170.4]) by smtp.gmail.com with ESMTPSA id pc2sm43621102wjb.11.2015.11.29.12.58.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 29 Nov 2015 12:58:09 -0800 (PST) Date: Sun, 29 Nov 2015 12:58:09 -0800 (PST) X-Google-Original-Date: Sun, 29 Nov 2015 20:58:08 GMT Received: from mech-as222.men.bris.ac.uk (localhost [127.0.0.1]) by mech-as222.men.bris.ac.uk (8.15.2/8.15.2) with ESMTP id tATKw8JK058304 for ; Sun, 29 Nov 2015 20:58:08 GMT (envelope-from mexas@mech-as222.men.bris.ac.uk) Received: (from mexas@localhost) by mech-as222.men.bris.ac.uk (8.15.2/8.15.2/Submit) id tATKw8vf058303 for freebsd-current@freebsd.org; Sun, 29 Nov 2015 20:58:08 GMT (envelope-from mexas) From: Anton Shterenlikht Message-Id: <201511292058.tATKw8vf058303@mech-as222.men.bris.ac.uk> To: freebsd-current@freebsd.org Subject: r291431 urtwn usb errors, cannot allocate device Reply-To: mexas@bris.ac.uk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 20:58:13 -0000 Updated to r291431 from about a month ago. USB wireless stopped working: ugen0.2: at usbus0 urtwn0: on usbus0 urtwn0: MAC/BB RTL8188CUS, RF 6052 1T1R ugen1.2: at usbus1 uhub2: on usbus1 uhub2: 8 ports with 8 removable, self powered ugen1.3: at usbus1 wlan0: Ethernet address: 1c:87:2c:c7:c2:6e usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_IOERROR usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_IOERROR usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_IOERROR usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_IOERROR wlan0: link state changed to UP usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_IOERROR ugen0.3: at usbus0 (disconnected) uhub_reattach_port: could not allocate new device ugen0.3: at usbus0 em0: link state changed to UP lock order reversal: 1st 0xfffffe01eb862e00 bufwait (bufwait) @ /usr/src/sys/kern/vfs_bio.c:3476 2nd 0xfffff80004852000 dirhash (dirhash) @ /usr/src/sys/ufs/ufs/ufs_dirhash.c:281 stack backtrace: #0 0xffffffff80a7b270 at witness_debugger+0x70 #1 0xffffffff80a7b171 at witness_checkorder+0xe71 #2 0xffffffff80a28a42 at _sx_xlock+0x72 #3 0xffffffff80cc086d at ufsdirhash_add+0x3d #4 0xffffffff80cc371f at ufs_direnter+0x62f #5 0xffffffff80ccbc2a at ufs_mkdir+0x8ba #6 0xffffffff80fb4ac7 at VOP_MKDIR_APV+0xf7 #7 0xffffffff80ae0fd9 at kern_mkdirat+0x209 #8 0xffffffff80e6a4fe at amd64_syscall+0x2de #9 0xffffffff80e495ab at Xfast_syscall+0xfb wlan0: link state changed to DOWN Have I missed something? $ cat /boot/loader.conf kern.vty=vt linux_load="YES" geom_bde_load="YES" cuse4bsd_load="YES" if_urtwn_load="YES" legal.realtek.license_ack=1 urtwn-rtl8192cfwT_load="YES" Thanks Anton From owner-freebsd-current@freebsd.org Sun Nov 29 21:38:10 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76858A3C81D; Sun, 29 Nov 2015 21:38:10 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 652161E60; Sun, 29 Nov 2015 21:38:10 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 797FE1909; Sun, 29 Nov 2015 21:38:10 +0000 (UTC) Date: Sun, 29 Nov 2015 21:38:08 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mckusick@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1632385338.263.1448833090407.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1425123218.259.1448825891221.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1425123218.259.1448825891221.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1796 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 21:38:10 -0000 FreeBSD_HEAD_i386 - Build #1796 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1796/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1796/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1796/console Change summaries: 291459 by mckusick: For performance reasons, it is useful to have a single string used as the name of a filesystem when setting it as the first parameter to the getnewvnode() function. Most filesystems call getnewvnode from just one place so can use a literal string as the first parameter. However, NFS calls getnewvnode from two places, so we create a global constant string that can be used by the two instances. This change also collapses two instances of getnewvnode() in the UFS filesystem to a single call. Reviewed by: kib Tested by: Peter Holm The end of the build log: [...truncated 58016 lines...] cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_loclist.c -o dwarf_loclist.o --- all_subdir_libexecinfo --- --- backtrace.So --- cc -fpic -DPIC -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.So --- all_subdir_libbsm --- --- libbsm.so.3 --- building shared library libbsm.so.3 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libbsm.so.3 -Wl,-soname,libbsm.so.3 `NM='nm' NMFLAGS='' lorder bsm_audit.So bsm_class.So bsm_control.So bsm_domain.So bsm_errno.So bsm_event.So bsm_fcntl.So bsm_flags.So bsm_io.So bsm_mask.So bsm_notify.So bsm_socket_type.So bsm_token.So bsm_user.So bsm_wrappers.So | tsort -q` --- all_subdir_libevent --- --- signal.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.So --- all_subdir_libbsm --- --- libbsm.a --- building static bsm library ar -crD libbsm.a `NM='nm' NMFLAGS='' lorder bsm_audit.o bsm_class.o bsm_control.o bsm_domain.o bsm_errno.o bsm_event.o bsm_fcntl.o bsm_flags.o bsm_io.o bsm_mask.o bsm_notify.o bsm_socket_type.o bsm_token.o bsm_user.o bsm_wrappers.o | tsort -q` ranlib -D libbsm.a --- all_subdir_libexecinfo --- --- symtab.So --- cc -fpic -DPIC -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.So --- all_subdir_libevent --- --- buffer.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/buffer.c -o buffer.o --- all_subdir_libdwarf --- --- dwarf_loclist.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_loclist.c -o dwarf_loclist.So --- all_subdir_libevent --- --- evbuffer.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- all_subdir_libexecinfo --- --- unwind.So --- cc -fpic -DPIC -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.So --- backtrace.o --- cc -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.o --- all_subdir_libdwarf --- --- dwarf_macinfo.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_macinfo.c -o dwarf_macinfo.o --- all_subdir_libevent --- --- event.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/event.c -o event.o --- all_subdir_libexpat --- ===> lib/libexpat (all) --- all_subdir_libevent --- --- kqueue.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libdwarf --- --- dwarf_macinfo.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_macinfo.c -o dwarf_macinfo.So --- all_subdir_libexecinfo --- --- symtab.o --- cc -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.o --- all_subdir_libfetch --- ===> lib/libfetch (all) --- all_subdir_libdwarf --- --- dwarf_pro_arange.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_arange.c -o dwarf_pro_arange.o --- all_subdir_libexecinfo --- --- unwind.o --- cc -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.o --- all_subdir_libfetch --- --- fetch.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch.So --- all_subdir_libexecinfo --- --- libexecinfo.so.1 --- building shared library libexecinfo.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libexecinfo.so.1 -Wl,-soname,libexecinfo.so.1 `NM='nm' NMFLAGS='' lorder backtrace.So symtab.So unwind.So | tsort -q` -lelf --- all_subdir_libdwarf --- --- dwarf_pro_arange.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_arange.c -o dwarf_pro_arange.So --- all_subdir_libexecinfo --- --- libexecinfo.a --- building static execinfo library ar -crD libexecinfo.a `NM='nm' NMFLAGS='' lorder backtrace.o symtab.o unwind.o | tsort -q` ranlib -D libexecinfo.a --- all_subdir_libdwarf --- --- dwarf_pro_attr.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_attr.c -o dwarf_pro_attr.o --- all_subdir_libfetch --- --- common.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.So --- all_subdir_libevent --- --- log.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/log.c -o log.o --- all_subdir_libdwarf --- --- dwarf_pro_attr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_attr.c -o dwarf_pro_attr.So --- all_subdir_libevent --- --- poll.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/poll.c -o poll.o --- all_subdir_libdwarf --- --- dwarf_pro_die.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_die.c -o dwarf_pro_die.o --- all_subdir_libfetch --- --- file.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.So --- all_subdir_libevent --- --- select.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/select.c -o select.o --- all_subdir_libdwarf --- --- dwarf_pro_die.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_die.c -o dwarf_pro_die.So --- dwarf_pro_expr.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_expr.c -o dwarf_pro_expr.o --- all_subdir_libevent --- --- signal.o --- cc -O2 -pipe -I/usr/src/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /usr/src/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.o --- all_subdir_libdwarf --- --- dwarf_pro_expr.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_expr.c -o dwarf_pro_expr.So --- all_subdir_libevent --- --- libprivateevent.so.1 --- building shared library libprivateevent.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libprivateevent.so.1 -Wl,-soname,libprivateevent.so.1 `NM='nm' NMFLAGS='' lorder buffer.So evbuffer.So event.So kqueue.So log.So poll.So select.So signal.So | tsort -q` --- libprivateevent.a --- building static event library ar -crD libprivateevent.a `NM='nm' NMFLAGS='' lorder buffer.o evbuffer.o event.o kqueue.o log.o poll.o select.o signal.o | tsort -q` --- all_subdir_libfigpar --- ===> lib/libfigpar (all) --- all_subdir_libevent --- ranlib -D libprivateevent.a --- all_subdir_libdwarf --- --- dwarf_pro_finish.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_finish.c -o dwarf_pro_finish.o --- all_subdir_libfetch --- --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libdwarf --- --- dwarf_pro_finish.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_finish.c -o dwarf_pro_finish.So --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/common.c -o common.o --- all_subdir_libgpio --- ===> lib/libgpio (all) --- all_subdir_libdwarf --- --- dwarf_pro_frame.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_frame.c -o dwarf_pro_frame.o --- all_subdir_libgpio --- --- gpio.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libdwarf --- --- dwarf_pro_frame.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_frame.c -o dwarf_pro_frame.So --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/usr/src/lib/libgpio -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libgpio/gpio.c -o gpio.o --- all_subdir_libdwarf --- --- dwarf_pro_init.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_init.c -o dwarf_pro_init.o --- all_subdir_libfetch --- --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/file.c -o file.o --- all_subdir_libdwarf --- --- dwarf_pro_init.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_init.c -o dwarf_pro_init.So --- all_subdir_libgpio --- --- libgpio.so.0 --- building shared library libgpio.so.0 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libgpio.so.0 -Wl,-soname,libgpio.so.0 `NM='nm' NMFLAGS='' lorder gpio.So | tsort -q` --- libgpio.a --- building static gpio library ar -crD libgpio.a `NM='nm' NMFLAGS='' lorder gpio.o | tsort -q` ranlib -D libgpio.a --- all_subdir_libdwarf --- --- dwarf_pro_lineno.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.o --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libdwarf --- --- dwarf_pro_lineno.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_lineno.c -o dwarf_pro_lineno.So --- dwarf_pro_macinfo.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.o --- all_subdir_libfetch --- --- ftp.So --- cc -fpic -DPIC -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/ftp.c -o ftp.So --- http.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libfetch/http.c -o http.o --- all_subdir_libdwarf --- --- dwarf_pro_macinfo.So --- cc -fpic -DPIC -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_macinfo.c -o dwarf_pro_macinfo.So --- dwarf_pro_reloc.o --- cc -O2 -pipe -I. -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/common -I/usr/src/lib/libdwarf/../../contrib/elftoolchain/libelf -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_pro_reloc.c -o dwarf_pro_reloc.o --- all_subdir_libfetch --- /usr/src/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /usr/src/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /usr/src/lib/libfetch --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /usr/src/lib --- all_subdir_libfetch --- 1 error make[5]: stopped in /usr/src/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /usr/src/lib 2 errors make[4]: stopped in /usr/src/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /usr/src *** [libraries] Error code 2 make[2]: stopped in /usr/src 1 error make[2]: stopped in /usr/src *** [_libraries] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson7949411264645757611.sh + export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin' + export 'jname=FreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Sun Nov 29 21:51:40 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A501A3CAC0 for ; Sun, 29 Nov 2015 21:51:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3962615C5; Sun, 29 Nov 2015 21:51:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 342211910; Sun, 29 Nov 2015 21:51:40 +0000 (UTC) Date: Sun, 29 Nov 2015 21:51:39 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mckusick@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <324754440.265.1448833900182.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1775480594.257.1448823503727.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1775480594.257.1448823503727.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3588 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 21:51:40 -0000 FreeBSD_HEAD - Build #3588 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3588/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3588/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3588/console Change summaries: 291459 by mckusick: For performance reasons, it is useful to have a single string used as the name of a filesystem when setting it as the first parameter to the getnewvnode() function. Most filesystems call getnewvnode from just one place so can use a literal string as the first parameter. However, NFS calls getnewvnode from two places, so we create a global constant string that can be used by the two instances. This change also collapses two instances of getnewvnode() in the UFS filesystem to a single call. Reviewed by: kib Tested by: Peter Holm The end of the build log: [...truncated 108263 lines...] --- all_subdir_libdwarf --- --- dwarf_reloc.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_reloc.o -MTdwarf_reloc.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_reloc.c -o dwarf_reloc.o --- all_subdir_libelftc --- --- libelftc_vstr.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/common -MD -MP -MF.depend.libelftc_vstr.o -MTlibelftc_vstr.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libelftc/../../contrib/elftoolchain/libelftc/libelftc_vstr.c -o libelftc_vstr.o --- all_subdir_libbsm --- --- bsm_token.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_token.o -MTbsm_token.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_token.c -o bsm_token.o --- all_subdir_libdwarf --- --- dwarf_sections.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_sections.o -MTdwarf_sections.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_sections.c -o dwarf_sections.o --- all_subdir_libevent --- --- evbuffer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.evbuffer.So -MTevbuffer.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.So --- all_subdir_libelftc --- --- libelftc.a --- building static elftc library ar -crD libelftc.a `NM='nm' NMFLAGS='' lorder elftc_bfdtarget.o elftc_copyfile.o elftc_demangle.o elftc_set_timestamps.o elftc_string_table.o elftc_version.o libelftc_bfdtarget.o libelftc_dem_arm.o libelftc_dem_gnu2.o libelftc_dem_gnu3.o libelftc_hash.o libelftc_vstr.o | tsort -q` --- all_subdir_libdwarf --- --- dwarf_seterror.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_seterror.o -MTdwarf_seterror.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_seterror.c -o dwarf_seterror.o --- all_subdir_libelftc --- ranlib -D libelftc.a --- all_subdir_libdwarf --- --- dwarf_str.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.dwarf_str.o -MTdwarf_str.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/dwarf_str.c -o dwarf_str.o --- all_subdir_libevent --- --- event.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.event.So -MTevent.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/event.c -o event.So --- all_subdir_libexecinfo --- ===> lib/libexecinfo (all) --- all_subdir_libdwarf --- --- libdwarf.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf.o -MTlibdwarf.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf.c -o libdwarf.o --- all_subdir_libexecinfo --- --- backtrace.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.backtrace.So -MTbacktrace.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.So --- all_subdir_libdwarf --- --- libdwarf_abbrev.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_abbrev.o -MTlibdwarf_abbrev.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_abbrev.c -o libdwarf_abbrev.o --- all_subdir_libexecinfo --- --- symtab.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.symtab.So -MTsymtab.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.So --- unwind.So --- cc -fpic -DPIC -O2 -pipe -MD -MP -MF.depend.unwind.So -MTunwind.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.So --- backtrace.o --- cc -O2 -pipe -MD -MP -MF.depend.backtrace.o -MTbacktrace.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/backtrace.c -o backtrace.o --- all_subdir_libbsm --- --- bsm_user.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_user.o -MTbsm_user.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_user.c -o bsm_user.o --- all_subdir_libdwarf --- --- libdwarf_arange.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_arange.o -MTlibdwarf_arange.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_arange.c -o libdwarf_arange.o --- all_subdir_libevent --- --- kqueue.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.kqueue.So -MTkqueue.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.So --- all_subdir_libbsm --- --- bsm_wrappers.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm -I/builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm -MD -MP -MF.depend.bsm_wrappers.o -MTbsm_wrappers.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libbsm/../../contrib/openbsm/libbsm/bsm_wrappers.c -o bsm_wrappers.o --- all_subdir_libexecinfo --- --- symtab.o --- cc -O2 -pipe -MD -MP -MF.depend.symtab.o -MTsymtab.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/symtab.c -o symtab.o --- all_subdir_libdwarf --- --- libdwarf_attr.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_attr.o -MTlibdwarf_attr.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_attr.c -o libdwarf_attr.o --- all_subdir_libexecinfo --- --- unwind.o --- cc -O2 -pipe -MD -MP -MF.depend.unwind.o -MTunwind.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libexecinfo/../../contrib/libexecinfo/unwind.c -o unwind.o --- all_subdir_libevent --- --- log.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.log.So -MTlog.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/log.c -o log.So --- all_subdir_libexecinfo --- --- libexecinfo.so.1 --- building shared library libexecinfo.so.1 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libexecinfo.so.1 -Wl,-soname,libexecinfo.so.1 `NM='nm' NMFLAGS='' lorder backtrace.So symtab.So unwind.So | tsort -q` -lelf --- libexecinfo.a --- building static execinfo library ar -crD libexecinfo.a `NM='nm' NMFLAGS='' lorder backtrace.o symtab.o unwind.o | tsort -q` ranlib -D libexecinfo.a --- all_subdir_libevent --- --- poll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.poll.So -MTpoll.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/poll.c -o poll.So --- all_subdir_libbsm --- --- libbsm.so.3 --- building shared library libbsm.so.3 --- all_subdir_libevent --- --- select.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.select.So -MTselect.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/select.c -o select.So --- all_subdir_libbsm --- cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libbsm.so.3 -Wl,-soname,libbsm.so.3 `NM='nm' NMFLAGS='' lorder bsm_audit.So bsm_class.So bsm_control.So bsm_domain.So bsm_errno.So bsm_event.So bsm_fcntl.So bsm_flags.So bsm_io.So bsm_mask.So bsm_notify.So bsm_socket_type.So bsm_token.So bsm_user.So bsm_wrappers.So | tsort -q` --- all_subdir_libdwarf --- --- libdwarf_die.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_die.o -MTlibdwarf_die.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_die.c -o libdwarf_die.o --- all_subdir_libbsm --- --- libbsm.a --- building static bsm library ar -crD libbsm.a `NM='nm' NMFLAGS='' lorder bsm_audit.o bsm_class.o bsm_control.o bsm_domain.o bsm_errno.o bsm_event.o bsm_fcntl.o bsm_flags.o bsm_io.o bsm_mask.o bsm_notify.o bsm_socket_type.o bsm_token.o bsm_user.o bsm_wrappers.o | tsort -q` ranlib -D libbsm.a --- all_subdir_libexpat --- ===> lib/libexpat (all) --- all_subdir_libevent --- --- signal.So --- --- all_subdir_libfetch --- --- all_subdir_libevent --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.signal.So -MTsignal.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.So --- all_subdir_libfetch --- ===> lib/libfetch (all) --- all_subdir_libfigpar --- ===> lib/libfigpar (all) --- all_subdir_libfetch --- --- fetch.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.fetch.o -MTfetch.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/fetch.c -o fetch.o --- all_subdir_libdwarf --- --- libdwarf_error.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_error.o -MTlibdwarf_error.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_error.c -o libdwarf_error.o --- all_subdir_libevent --- --- buffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.buffer.o -MTbuffer.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/buffer.c -o buffer.o --- all_subdir_libfetch --- --- common.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.common.o -MTcommon.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/common.c -o common.o --- all_subdir_libdwarf --- --- libdwarf_elf_access.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_elf_access.o -MTlibdwarf_elf_access.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_elf_access.c -o libdwarf_elf_access.o --- libdwarf_elf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_elf_init.o -MTlibdwarf_elf_init.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_elf_init.c -o libdwarf_elf_init.o --- all_subdir_libevent --- --- evbuffer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.evbuffer.o -MTevbuffer.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/evbuffer.c -o evbuffer.o --- event.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.event.o -MTevent.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/event.c -o event.o --- all_subdir_libdwarf --- --- libdwarf_frame.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_frame.o -MTlibdwarf_frame.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_frame.c -o libdwarf_frame.o --- all_subdir_libfetch --- --- ftp.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.ftp.o -MTftp.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/ftp.c -o ftp.o --- all_subdir_libgpio --- ===> lib/libgpio (all) --- gpio.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libgpio -MD -MP -MF.depend.gpio.So -MTgpio.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libgpio/gpio.c -o gpio.So --- all_subdir_libevent --- --- kqueue.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.kqueue.o -MTkqueue.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/kqueue.c -o kqueue.o --- all_subdir_libgpio --- --- gpio.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libgpio -MD -MP -MF.depend.gpio.o -MTgpio.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libgpio/gpio.c -o gpio.o --- all_subdir_libdwarf --- --- libdwarf_info.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_info.o -MTlibdwarf_info.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_info.c -o libdwarf_info.o --- all_subdir_libevent --- --- log.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.log.o -MTlog.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/log.c -o log.o --- poll.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.poll.o -MTpoll.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/poll.c -o poll.o --- all_subdir_libfetch --- --- http.o --- --- all_subdir_libgpio --- --- libgpio.so.0 --- --- all_subdir_libfetch --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.http.o -MThttp.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/http.c -o http.o --- all_subdir_libgpio --- building shared library libgpio.so.0 cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libgpio.so.0 -Wl,-soname,libgpio.so.0 `NM='nm' NMFLAGS='' lorder gpio.So | tsort -q` --- all_subdir_libdwarf --- --- libdwarf_init.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_init.o -MTlibdwarf_init.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_init.c -o libdwarf_init.o --- all_subdir_libgpio --- --- libgpio.a --- building static gpio library ar -crD libgpio.a `NM='nm' NMFLAGS='' lorder gpio.o | tsort -q` ranlib -D libgpio.a --- all_subdir_libevent --- --- select.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.select.o -MTselect.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/select.c -o select.o --- all_subdir_libgssapi --- ===> lib/libgssapi (all) --- all_subdir_libfetch --- --- file.o --- cc -O2 -pipe -I. -DINET6 -DWITH_SSL -DFTP_COMBINE_CWDS -MD -MP -MF.depend.file.o -MTfile.o -std=iso9899:1999 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libfetch/file.c -o file.o --- all_subdir_libdwarf --- --- libdwarf_lineno.o --- cc -O2 -pipe -I. -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/common -I/builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libelf -MD -MP -MF.depend.libdwarf_lineno.o -MTlibdwarf_lineno.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libdwarf/../../contrib/elftoolchain/libdwarf/libdwarf_lineno.c -o libdwarf_lineno.o --- all_subdir_libevent --- --- signal.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libevent -DHAVE_CLOCK_GETTIME -DHAVE_FCNTL_H -DHAVE_POLL -DHAVE_SELECT -DHAVE_SETFD -DHAVE_STDARG_H -DHAVE_SYS_IOCTL_H -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_VASPRINTF -DHAVE_WORKING_KQUEUE -DVERSION='"1.3b"' -MD -MP -MF.depend.signal.o -MTsignal.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libevent/../../contrib/pf/libevent/signal.c -o signal.o --- all_subdir_libfetch --- --- http.o --- /builds/FreeBSD_HEAD/lib/libfetch/http.c:1692:25: error: address of array 'url->user' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.user = url->user ? ~~~~~^~~~ ~ /builds/FreeBSD_HEAD/lib/libfetch/http.c:1694:29: error: address of array 'url->pwd' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion] aparams.password = url->pwd ? ~~~~~^~~ ~ 2 errors generated. *** [http.o] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch --- all_subdir_libevent --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libevent *** [all_subdir_libevent] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libfetch --- 1 error make[5]: stopped in /builds/FreeBSD_HEAD/lib/libfetch *** [all_subdir_libfetch] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib --- all_subdir_libdwarf --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/lib/libdwarf *** [all_subdir_libdwarf] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib 3 errors make[4]: stopped in /builds/FreeBSD_HEAD/lib A failure has been detected in another branch of the parallel make make[3]: stopped in /builds/FreeBSD_HEAD *** [libraries] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 1 error make[2]: stopped in /builds/FreeBSD_HEAD *** [_libraries] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 00:16:19 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9889A3CA1E for ; Mon, 30 Nov 2015 00:16:19 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (unknown [IPv6:2602:304:b010:ef20::f2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.catspoiler.org", Issuer "gw.catspoiler.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 83AC51D8F for ; Mon, 30 Nov 2015 00:16:19 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.15.2/8.15.2) with ESMTP id tAU0GB2c093099 for ; Sun, 29 Nov 2015 16:16:15 -0800 (PST) (envelope-from truckman@FreeBSD.org) Message-Id: <201511300016.tAU0GB2c093099@gw.catspoiler.org> Date: Sun, 29 Nov 2015 16:16:11 -0800 (PST) From: Don Lewis Subject: panic: sbuf_vprintf called with a NULL sbuf pointer To: freebsd-current@FreeBSD.org MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 00:16:19 -0000 I got this strange panic the other day: panic: sbuf_vprintf called with a NULL sbuf pointer The machine was running this: FreeBSD zipper.catspoiler.org 11.0-CURRENT FreeBSD 11.0-CURRENT #31 r290224: Sat Oct 31 02:56:36 PDT 2015 dl@zipper.catspoiler.org:/usr/obj/usr/src/sys/GENERIC amd64 The trigger was: swap_pager: indefinite wait buffer: bufobj: 0 blkno: 1737153, size 4096 That triggered an attempt to kill a process and create a core file for it. Where things get strange is at #16 and #17 in the backtrace: #13 0xffffffff80a20676 in kassert_panic ( fmt=0xffffffff8137bf84 "%s called with a NULL sbuf pointer") at /usr/src/sys/kern/kern_shutdown.c:647 #14 0xffffffff80a66c51 in _assert_sbuf_integrity ( fun=0xffffffff8137bdf8 "sbuf_vprintf", s=0x0) at /usr/src/sys/kern/subr_sbuf.c:103 #15 0xffffffff80a6742e in sbuf_vprintf (s=0x0, fmt=, ap=) at /usr/src/sys/kern/subr_sbuf.c:583 #16 sbuf_printf (s=0x0, fmt=0xffffffff80fd8ad3 "%s") at /usr/src/sys/kern/subr_sbuf.c:677 #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, uid=, pid=, td=, vpp=, namep=) at /usr/src/sys/kern/kern_sig.c:3188 #18 coredump (td=0x0) at /usr/src/sys/kern/kern_sig.c:3337 #19 sigexit (td=0x0, sig=40) at /usr/src/sys/kern/kern_sig.c:2976 #20 0xffffffff80a6fcb8 in userret (td=0xfffff8057b0a59a0, frame=) at /usr/src/sys/kern/subr_trap.c:147 #21 0xffffffff80e68619 in syscallret (td=0xfffff8057b0a59a0, error=, sa=) at /usr/src/sys/amd64/amd64/../../kern/subr_syscall.c:187 #22 amd64_syscall (td=0xfffff8057b0a59a0, traced=0) at /usr/src/sys/amd64/amd64/trap.c:956 #23 0xffffffff80e47a3b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:394 #24 0x000000080cc9f12a in ?? () In #16, s is 0x0, which is strange because kern_sig.c:3188 is: #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, uid=, pid=, td=, vpp=, namep=) at /usr/src/sys/kern/kern_sig.c:3188 3188 sbuf_printf(&sb, "%s", comm); I don't see how &sb can be NULL ... Also interesting is: (kgdb) print sb $1 = I don't see how sb can be optimized out since its address is passed to sbuf_printf(). While format is optimized out, the corefilename isn't and format=corefilename (kgdb) print format $2 = (kgdb) print corefilename $3 = "%N.core", '\000' Since this is the first iteration of the loop, and the crash happens on the entry into sbuf_printf()->sbuf_vprintf(), it doesn't look like it could be caused by stack smash. Under other circumstances I've seen other processes dump core, and I can trigger core dumps by sending SIGQUIT to processes ... %sleep 10 & [1] 2456 %kill -QUIT %1 % [1] Quit sleep 10 (core dumped) Another other oddity is td=0x0 in frames 18 and 19. I'm guessing that kgdb is wrong about this because that should cause a NULL pointer dereference panic in sigexit(). Also sig=40 in sigexit() is strange since the highest numbered signal is 33. Lastly, I don't see how we get from userret() to sigexit(). Line 147 in subr_trap.c (userret()) is: WITNESS_WARN(WARN_PANIC, NULL, "userret: returning"); From owner-freebsd-current@freebsd.org Mon Nov 30 00:20:27 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80BB2A3CB15; Mon, 30 Nov 2015 00:20:27 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 70A821FDB; Mon, 30 Nov 2015 00:20:27 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id A89CD1976; Mon, 30 Nov 2015 00:20:27 +0000 (UTC) Date: Mon, 30 Nov 2015 00:20:23 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mckusick@FreeBSD.org, dim@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1128880564.269.1448842827337.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1632385338.263.1448833090407.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1632385338.263.1448833090407.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1797 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 00:20:27 -0000 FreeBSD_HEAD_i386 - Build #1797 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1797/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1797/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1797/console Change summaries: 291461 by dim: Fix buildworld after r291453, similar to r284346: url->user and url->pwd are arrays, so they can never be NULL. Reported by: many Pointy hat to: des 291460 by mckusick: As the kernel allocates and frees vnodes, it fully initializes them on every allocation and fully releases them on every free. These are not trivial costs: it starts by zeroing a large structure then initializes a mutex, a lock manager lock, an rw lock, four lists, and six pointers. And looking at vfs.vnodes_created, these operations are being done millions of times an hour on a busy machine. As a performance optimization, this code update uses the uma_init and uma_fini routines to do these initializations and cleanups only as the vnodes enter and leave the vnode_zone. With this change the initializations are only done kern.maxvnodes times at system startup and then only rarely again. The frees are done only if the vnode_zone shrinks which never happens in practice. For those curious about the avoided work, look at the vnode_init() and vnode_fini() functions in kern/vfs_subr.c to see the code that has been removed from the main vnode allocation/free path. Reviewed by: kib Tested by: Peter Holm From owner-freebsd-current@freebsd.org Mon Nov 30 01:44:33 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EF83A3323A for ; Mon, 30 Nov 2015 01:44:33 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 2607E1339; Mon, 30 Nov 2015 01:44:33 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8A24E19A9; Mon, 30 Nov 2015 01:44:33 +0000 (UTC) Date: Mon, 30 Nov 2015 01:44:31 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mckusick@FreeBSD.org, dim@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1119240898.273.1448847873517.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <324754440.265.1448833900182.JavaMail.jenkins@jenkins-9.freebsd.org> References: <324754440.265.1448833900182.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3589 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 01:44:33 -0000 FreeBSD_HEAD - Build #3589 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3589/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3589/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3589/console Change summaries: 291461 by dim: Fix buildworld after r291453, similar to r284346: url->user and url->pwd are arrays, so they can never be NULL. Reported by: many Pointy hat to: des 291460 by mckusick: As the kernel allocates and frees vnodes, it fully initializes them on every allocation and fully releases them on every free. These are not trivial costs: it starts by zeroing a large structure then initializes a mutex, a lock manager lock, an rw lock, four lists, and six pointers. And looking at vfs.vnodes_created, these operations are being done millions of times an hour on a busy machine. As a performance optimization, this code update uses the uma_init and uma_fini routines to do these initializations and cleanups only as the vnodes enter and leave the vnode_zone. With this change the initializations are only done kern.maxvnodes times at system startup and then only rarely again. The frees are done only if the vnode_zone shrinks which never happens in practice. For those curious about the avoided work, look at the vnode_init() and vnode_fini() functions in kern/vfs_subr.c to see the code that has been removed from the main vnode allocation/free path. Reviewed by: kib Tested by: Peter Holm From owner-freebsd-current@freebsd.org Mon Nov 30 01:45:21 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2F15A332B2 for ; Mon, 30 Nov 2015 01:45:21 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 9181614C1 for ; Mon, 30 Nov 2015 01:45:21 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id E9BA819AA for ; Mon, 30 Nov 2015 01:45:21 +0000 (UTC) Date: Mon, 30 Nov 2015 01:45:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <439903794.274.1448847921952.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2816 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 01:45:21 -0000 See ------------------------------------------ [...truncated 1536 lines...] ./cddl/usr.sbin/dtrace/common/union missing (created) ./cddl/usr.sbin/dtrace/common/usdt missing (created) ./cddl/usr.sbin/dtrace/common/ustack missing (created) ./cddl/usr.sbin/dtrace/common/vars missing (created) ./cddl/usr.sbin/dtrace/common/version missing (created) ./etc missing (created) ./etc/rc.d missing (created) ./games missing (created) ./gnu missing (created) ./gnu/lib missing (created) ./gnu/usr.bin missing (created) ./gnu/usr.bin/diff missing (created) ./lib missing (created) ./lib/atf missing (created) ./lib/atf/libatf-c missing (created) ./lib/atf/libatf-c/detail missing (created) ./lib/atf/libatf-c++ missing (created) ./lib/atf/libatf-c++/detail missing (created) ./lib/atf/test-programs missing (created) ./lib/libarchive missing (created) ./lib/libc missing (created) ./lib/libc/c063 missing (created) ./lib/libc/db missing (created) ./lib/libc/gen missing (created) ./lib/libc/gen/execve missing (created) ./lib/libc/gen/posix_spawn missing (created) ./lib/libc/hash missing (created) ./lib/libc/hash/data missing (created) ./lib/libc/inet missing (created) ./lib/libc/locale missing (created) ./lib/libc/net missing (created) ./lib/libc/net/getaddrinfo missing (created) ./lib/libc/net/getaddrinfo/data missing (created) ./lib/libc/regex missing (created) ./lib/libc/regex/data missing (created) ./lib/libc/rpc missing (created) ./lib/libc/ssp missing (created) ./lib/libc/stdio missing (created) ./lib/libc/stdlib missing (created) ./lib/libc/string missing (created) ./lib/libc/sys missing (created) ./lib/libc/time missing (created) ./lib/libc/tls missing (created) ./lib/libc/tls/dso missing (created) ./lib/libc/termios missing (created) ./lib/libc/ttyio missing (created) ./lib/libcrypt missing (created) ./lib/libmp missing (created) ./lib/libnv missing (created) ./lib/libpam missing (created) ./lib/libproc missing (created) ./lib/librt missing (created) ./lib/libthr missing (created) ./lib/libthr/dlopen missing (created) ./lib/libutil missing (created) ./lib/libxo missing (created) ./lib/msun missing (created) ./libexec missing (created) ./libexec/atf missing (created) ./libexec/atf/atf-check missing (created) ./libexec/atf/atf-sh missing (created) ./libexec/rtld-elf missing (created) ./sbin missing (created) ./sbin/dhclient missing (created) ./sbin/devd missing (created) ./sbin/growfs missing (created) ./sbin/ifconfig missing (created) ./sbin/mdconfig missing (created) ./secure missing (created) ./secure/lib missing (created) ./secure/libexec missing (created) ./secure/usr.bin missing (created) ./secure/usr.sbin missing (created) ./share missing (created) ./share/examples missing (created) ./share/examples/tests missing (created) ./share/examples/tests/atf missing (created) ./share/examples/tests/plain missing (created) ./sys missing (created) ./sys/acl missing (created) ./sys/aio missing (created) ./sys/fifo missing (created) ./sys/file missing (created) ./sys/kern missing (created) ./sys/kern/acct missing (created) ./sys/kern/execve missing (created) ./sys/kern/pipe missing (created) ./sys/kqueue missing (created) ./sys/mqueue missing (created) ./sys/netinet missing (created) ./sys/opencrypto missing (created) ./sys/pjdfstest missing (created) ./sys/pjdfstest/chflags missing (created) ./sys/pjdfstest/chmod missing (created) ./sys/pjdfstest/chown missing (created) ./sys/pjdfstest/ftruncate missing (created) ./sys/pjdfstest/granular missing (created) ./sys/pjdfstest/link missing (created) ./sys/pjdfstest/mkdir missing (created) ./sys/pjdfstest/mkfifo missing (created) ./sys/pjdfstest/mknod missing (created) ./sys/pjdfstest/open missing (created) ./sys/pjdfstest/rename missing (created) ./sys/pjdfstest/rmdir missing (created) ./sys/pjdfstest/symlink missing (created) ./sys/pjdfstest/truncate missing (created) ./sys/pjdfstest/unlink missing (created) ./sys/posixshm missing (created) ./sys/vfs missing (created) ./sys/vm missing (created) ./usr.bin missing (created) ./usr.bin/apply missing (created) ./usr.bin/basename missing (created) ./usr.bin/bmake missing (created) ./usr.bin/bmake/archives missing (created) ./usr.bin/bmake/archives/fmt_44bsd missing (created) ./usr.bin/bmake/archives/fmt_44bsd_mod missing (created) ./usr.bin/bmake/archives/fmt_oldbsd missing (created) ./usr.bin/bmake/basic missing (created) ./usr.bin/bmake/basic/t0 missing (created) ./usr.bin/bmake/basic/t1 missing (created) ./usr.bin/bmake/basic/t2 missing (created) ./usr.bin/bmake/basic/t3 missing (created) ./usr.bin/bmake/execution missing (created) ./usr.bin/bmake/execution/ellipsis missing (created) ./usr.bin/bmake/execution/empty missing (created) ./usr.bin/bmake/execution/joberr missing (created) ./usr.bin/bmake/execution/plus missing (created) ./usr.bin/bmake/shell missing (created) ./usr.bin/bmake/shell/builtin missing (created) ./usr.bin/bmake/shell/meta missing (created) ./usr.bin/bmake/shell/path missing (created) ./usr.bin/bmake/shell/path_select missing (created) ./usr.bin/bmake/shell/replace missing (created) ./usr.bin/bmake/shell/select missing (created) ./usr.bin/bmake/suffixes missing (created) ./usr.bin/bmake/suffixes/basic missing (created) ./usr.bin/bmake/suffixes/src_wild1 missing (created) ./usr.bin/bmake/suffixes/src_wild2 missing (created) ./usr.bin/bmake/syntax missing (created) ./usr.bin/bmake/syntax/directive-t0 missing (created) ./usr.bin/bmake/syntax/enl missing (created) ./usr.bin/bmake/syntax/funny-targets missing (created) ./usr.bin/bmake/syntax/semi missing (created) ./usr.bin/bmake/sysmk missing (created) ./usr.bin/bmake/sysmk/t0 missing (created) ./usr.bin/bmake/sysmk/t0/2 missing (created) ./usr.bin/bmake/sysmk/t0/2/1 missing (created) ./usr.bin/bmake/sysmk/t0/mk missing (created) ./usr.bin/bmake/sysmk/t1 missing (created) ./usr.bin/bmake/sysmk/t1/2 missing (created) ./usr.bin/bmake/sysmk/t1/2/1 missing (created) ./usr.bin/bmake/sysmk/t1/mk missing (created) ./usr.bin/bmake/sysmk/t2 missing (created) ./usr.bin/bmake/sysmk/t2/2 missing (created) ./usr.bin/bmake/sysmk/t2/2/1 missing (created) ./usr.bin/bmake/sysmk/t2/mk missing (created) ./usr.bin/bmake/variables missing (created) ./usr.bin/bmake/variables/modifier_M missing (created) ./usr.bin/bmake/variables/modifier_t missing (created) ./usr.bin/bmake/variables/opt_V missing (created) ./usr.bin/bmake/variables/t0 missing (created) ./usr.bin/calendar missing (created) ./usr.bin/cmp missing (created) ./usr.bin/cpio missing (created) ./usr.bin/col missing (created) ./usr.bin/comm missing (created) ./usr.bin/cut missing (created) ./usr.bin/dirname missing (created) ./usr.bin/file2c missing (created) ./usr.bin/grep missing (created) ./usr.bin/gzip missing (created) ./usr.bin/ident missing (created) ./usr.bin/join missing (created) ./usr.bin/jot missing (created) ./usr.bin/lastcomm missing (created) ./usr.bin/limits missing (created) ./usr.bin/m4 missing (created) ./usr.bin/mkimg missing (created) ./usr.bin/ncal missing (created) ./usr.bin/opensm missing (created) ./usr.bin/printf missing (created) ./usr.bin/sed missing (created) ./usr.bin/sed/regress.multitest.out missing (created) ./usr.bin/soelim missing (created) ./usr.bin/tar missing (created) ./usr.bin/timeout missing (created) ./usr.bin/tr missing (created) ./usr.bin/truncate missing (created) ./usr.bin/units missing (created) ./usr.bin/uudecode missing (created) ./usr.bin/uuencode missing (created) ./usr.bin/xargs missing (created) ./usr.bin/xo missing (created) ./usr.bin/yacc missing (created) ./usr.bin/yacc/yacc missing (created) ./usr.sbin missing (created) ./usr.sbin/etcupdate missing (created) ./usr.sbin/fstyp missing (created) ./usr.sbin/makefs missing (created) ./usr.sbin/newsyslog missing (created) ./usr.sbin/nmtree missing (created) ./usr.sbin/pw missing (created) ./usr.sbin/sa missing (created) mtree -deU -f /builds/FreeBSD_HEAD/etc/mtree/BSD.sendmail.dist -p ./var/spool/clientmqueue missing (created) install -l s builds/FreeBSD_HEAD/sys cd for mandir in man*; do install -l s ../$mandir install -l s ../$mandir done cd for mandir in man*; do install -l s ../$mandir done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/man.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " if [ "yes" != "no" ]; then install -l s "$2" " fi; shift; shift; done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/nls.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " shift; shift; done -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /builds/FreeBSD_HEAD; make -f Makefile.inc1 install ===> lib (install) ===> lib/csu (install) ===> lib/csu/amd64 (install) install -o root -g wheel -m 444 crt1.o crti.o crtn.o Scrt1.o gcrt1.o ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a install -C -o root -g wheel -m 444 libc_p.a install: libc_p.a: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libc *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Mon Nov 30 04:46:17 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 478B8A3C698 for ; Mon, 30 Nov 2015 04:46:17 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3403D1D62 for ; Mon, 30 Nov 2015 04:46:17 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C08881A21 for ; Mon, 30 Nov 2015 04:46:16 +0000 (UTC) Date: Mon, 30 Nov 2015 04:46:16 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1364918022.277.1448858776375.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <439903794.274.1448847921952.JavaMail.jenkins@jenkins-9.freebsd.org> References: <439903794.274.1448847921952.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2817 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 04:46:17 -0000 See ------------------------------------------ [...truncated 1536 lines...] ./cddl/usr.sbin/dtrace/common/union missing (created) ./cddl/usr.sbin/dtrace/common/usdt missing (created) ./cddl/usr.sbin/dtrace/common/ustack missing (created) ./cddl/usr.sbin/dtrace/common/vars missing (created) ./cddl/usr.sbin/dtrace/common/version missing (created) ./etc missing (created) ./etc/rc.d missing (created) ./games missing (created) ./gnu missing (created) ./gnu/lib missing (created) ./gnu/usr.bin missing (created) ./gnu/usr.bin/diff missing (created) ./lib missing (created) ./lib/atf missing (created) ./lib/atf/libatf-c missing (created) ./lib/atf/libatf-c/detail missing (created) ./lib/atf/libatf-c++ missing (created) ./lib/atf/libatf-c++/detail missing (created) ./lib/atf/test-programs missing (created) ./lib/libarchive missing (created) ./lib/libc missing (created) ./lib/libc/c063 missing (created) ./lib/libc/db missing (created) ./lib/libc/gen missing (created) ./lib/libc/gen/execve missing (created) ./lib/libc/gen/posix_spawn missing (created) ./lib/libc/hash missing (created) ./lib/libc/hash/data missing (created) ./lib/libc/inet missing (created) ./lib/libc/locale missing (created) ./lib/libc/net missing (created) ./lib/libc/net/getaddrinfo missing (created) ./lib/libc/net/getaddrinfo/data missing (created) ./lib/libc/regex missing (created) ./lib/libc/regex/data missing (created) ./lib/libc/rpc missing (created) ./lib/libc/ssp missing (created) ./lib/libc/stdio missing (created) ./lib/libc/stdlib missing (created) ./lib/libc/string missing (created) ./lib/libc/sys missing (created) ./lib/libc/time missing (created) ./lib/libc/tls missing (created) ./lib/libc/tls/dso missing (created) ./lib/libc/termios missing (created) ./lib/libc/ttyio missing (created) ./lib/libcrypt missing (created) ./lib/libmp missing (created) ./lib/libnv missing (created) ./lib/libpam missing (created) ./lib/libproc missing (created) ./lib/librt missing (created) ./lib/libthr missing (created) ./lib/libthr/dlopen missing (created) ./lib/libutil missing (created) ./lib/libxo missing (created) ./lib/msun missing (created) ./libexec missing (created) ./libexec/atf missing (created) ./libexec/atf/atf-check missing (created) ./libexec/atf/atf-sh missing (created) ./libexec/rtld-elf missing (created) ./sbin missing (created) ./sbin/dhclient missing (created) ./sbin/devd missing (created) ./sbin/growfs missing (created) ./sbin/ifconfig missing (created) ./sbin/mdconfig missing (created) ./secure missing (created) ./secure/lib missing (created) ./secure/libexec missing (created) ./secure/usr.bin missing (created) ./secure/usr.sbin missing (created) ./share missing (created) ./share/examples missing (created) ./share/examples/tests missing (created) ./share/examples/tests/atf missing (created) ./share/examples/tests/plain missing (created) ./sys missing (created) ./sys/acl missing (created) ./sys/aio missing (created) ./sys/fifo missing (created) ./sys/file missing (created) ./sys/kern missing (created) ./sys/kern/acct missing (created) ./sys/kern/execve missing (created) ./sys/kern/pipe missing (created) ./sys/kqueue missing (created) ./sys/mqueue missing (created) ./sys/netinet missing (created) ./sys/opencrypto missing (created) ./sys/pjdfstest missing (created) ./sys/pjdfstest/chflags missing (created) ./sys/pjdfstest/chmod missing (created) ./sys/pjdfstest/chown missing (created) ./sys/pjdfstest/ftruncate missing (created) ./sys/pjdfstest/granular missing (created) ./sys/pjdfstest/link missing (created) ./sys/pjdfstest/mkdir missing (created) ./sys/pjdfstest/mkfifo missing (created) ./sys/pjdfstest/mknod missing (created) ./sys/pjdfstest/open missing (created) ./sys/pjdfstest/rename missing (created) ./sys/pjdfstest/rmdir missing (created) ./sys/pjdfstest/symlink missing (created) ./sys/pjdfstest/truncate missing (created) ./sys/pjdfstest/unlink missing (created) ./sys/posixshm missing (created) ./sys/vfs missing (created) ./sys/vm missing (created) ./usr.bin missing (created) ./usr.bin/apply missing (created) ./usr.bin/basename missing (created) ./usr.bin/bmake missing (created) ./usr.bin/bmake/archives missing (created) ./usr.bin/bmake/archives/fmt_44bsd missing (created) ./usr.bin/bmake/archives/fmt_44bsd_mod missing (created) ./usr.bin/bmake/archives/fmt_oldbsd missing (created) ./usr.bin/bmake/basic missing (created) ./usr.bin/bmake/basic/t0 missing (created) ./usr.bin/bmake/basic/t1 missing (created) ./usr.bin/bmake/basic/t2 missing (created) ./usr.bin/bmake/basic/t3 missing (created) ./usr.bin/bmake/execution missing (created) ./usr.bin/bmake/execution/ellipsis missing (created) ./usr.bin/bmake/execution/empty missing (created) ./usr.bin/bmake/execution/joberr missing (created) ./usr.bin/bmake/execution/plus missing (created) ./usr.bin/bmake/shell missing (created) ./usr.bin/bmake/shell/builtin missing (created) ./usr.bin/bmake/shell/meta missing (created) ./usr.bin/bmake/shell/path missing (created) ./usr.bin/bmake/shell/path_select missing (created) ./usr.bin/bmake/shell/replace missing (created) ./usr.bin/bmake/shell/select missing (created) ./usr.bin/bmake/suffixes missing (created) ./usr.bin/bmake/suffixes/basic missing (created) ./usr.bin/bmake/suffixes/src_wild1 missing (created) ./usr.bin/bmake/suffixes/src_wild2 missing (created) ./usr.bin/bmake/syntax missing (created) ./usr.bin/bmake/syntax/directive-t0 missing (created) ./usr.bin/bmake/syntax/enl missing (created) ./usr.bin/bmake/syntax/funny-targets missing (created) ./usr.bin/bmake/syntax/semi missing (created) ./usr.bin/bmake/sysmk missing (created) ./usr.bin/bmake/sysmk/t0 missing (created) ./usr.bin/bmake/sysmk/t0/2 missing (created) ./usr.bin/bmake/sysmk/t0/2/1 missing (created) ./usr.bin/bmake/sysmk/t0/mk missing (created) ./usr.bin/bmake/sysmk/t1 missing (created) ./usr.bin/bmake/sysmk/t1/2 missing (created) ./usr.bin/bmake/sysmk/t1/2/1 missing (created) ./usr.bin/bmake/sysmk/t1/mk missing (created) ./usr.bin/bmake/sysmk/t2 missing (created) ./usr.bin/bmake/sysmk/t2/2 missing (created) ./usr.bin/bmake/sysmk/t2/2/1 missing (created) ./usr.bin/bmake/sysmk/t2/mk missing (created) ./usr.bin/bmake/variables missing (created) ./usr.bin/bmake/variables/modifier_M missing (created) ./usr.bin/bmake/variables/modifier_t missing (created) ./usr.bin/bmake/variables/opt_V missing (created) ./usr.bin/bmake/variables/t0 missing (created) ./usr.bin/calendar missing (created) ./usr.bin/cmp missing (created) ./usr.bin/cpio missing (created) ./usr.bin/col missing (created) ./usr.bin/comm missing (created) ./usr.bin/cut missing (created) ./usr.bin/dirname missing (created) ./usr.bin/file2c missing (created) ./usr.bin/grep missing (created) ./usr.bin/gzip missing (created) ./usr.bin/ident missing (created) ./usr.bin/join missing (created) ./usr.bin/jot missing (created) ./usr.bin/lastcomm missing (created) ./usr.bin/limits missing (created) ./usr.bin/m4 missing (created) ./usr.bin/mkimg missing (created) ./usr.bin/ncal missing (created) ./usr.bin/opensm missing (created) ./usr.bin/printf missing (created) ./usr.bin/sed missing (created) ./usr.bin/sed/regress.multitest.out missing (created) ./usr.bin/soelim missing (created) ./usr.bin/tar missing (created) ./usr.bin/timeout missing (created) ./usr.bin/tr missing (created) ./usr.bin/truncate missing (created) ./usr.bin/units missing (created) ./usr.bin/uudecode missing (created) ./usr.bin/uuencode missing (created) ./usr.bin/xargs missing (created) ./usr.bin/xo missing (created) ./usr.bin/yacc missing (created) ./usr.bin/yacc/yacc missing (created) ./usr.sbin missing (created) ./usr.sbin/etcupdate missing (created) ./usr.sbin/fstyp missing (created) ./usr.sbin/makefs missing (created) ./usr.sbin/newsyslog missing (created) ./usr.sbin/nmtree missing (created) ./usr.sbin/pw missing (created) ./usr.sbin/sa missing (created) mtree -deU -f /builds/FreeBSD_HEAD/etc/mtree/BSD.sendmail.dist -p ./var/spool/clientmqueue missing (created) install -l s builds/FreeBSD_HEAD/sys cd for mandir in man*; do install -l s ../$mandir install -l s ../$mandir done cd for mandir in man*; do install -l s ../$mandir done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/man.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " if [ "yes" != "no" ]; then install -l s "$2" " fi; shift; shift; done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/nls.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " shift; shift; done -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /builds/FreeBSD_HEAD; make -f Makefile.inc1 install ===> lib (install) ===> lib/csu (install) ===> lib/csu/amd64 (install) install -o root -g wheel -m 444 crt1.o crti.o crtn.o Scrt1.o gcrt1.o ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a install -C -o root -g wheel -m 444 libc_p.a install: libc_p.a: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libc *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Mon Nov 30 04:52:59 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DB8CA3C828 for ; Mon, 30 Nov 2015 04:52:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 062C510A0; Mon, 30 Nov 2015 04:52:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 596641A22; Mon, 30 Nov 2015 04:52:59 +0000 (UTC) Date: Mon, 30 Nov 2015 04:52:58 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jhibbits@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <50511682.279.1448859179337.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #850 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 04:52:59 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #850 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/850/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 850/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/8= 50/console Change summaries: 291464 by adrian: Add lib80211, a small (but hopefully soon to grow) set of library routines to interface with net80211. This is all from the ifconfig program; the duplicate code from ifconfig will be removed when it starts using this API. Differential Revision:=09https://reviews.freebsd.org/D4290 291463 by jhibbits: Print machine check address for Book-E. Bits in mcsr indicate if the address is valid, and whether it's a physical address or effective address. Sponsored by:=09Alex Perez/Inertial Computing 291462 by jhibbits: Add Freescale QorIQ GPIO driver. Still missing interrupt support, to come later. Sponsored by:=09Alex Perez/Inertial Computing The end of the build log: [...truncated 65328 lines...] /usr/include/c++/v1/tr1//usr/include/c++/v1/set /usr/include/c++/v1/tr1/shared_mutex -> /usr/include/c++/v1/shared_mutex /usr/include/c++/v1/tr1/sstream -> /usr/include/c++/v1/sstream /usr/include/c++/v1/tr1/stack -> /usr/include/c++/v1/stack /usr/include/c++/v1/tr1/stdexcept -> /usr/include/c++/v1/stdexcept /usr/include/c++/v1/tr1/streambuf -> /usr/include/c++/v1/streambuf /usr/include/c++/v1/tr1/string -> /usr/include/c++/v1/string /usr/include/c++/v1/tr1/strstream -> /usr/include/c++/v1/strstream /usr/include/c++/v1/tr1/system_error -> /usr/include/c++/v1/system_error /usr/include/c++/v1/tr1/tgmath.h -> /usr/include/c++/v1/tgmath.h /usr/include/c++/v1/tr1/thread -> /usr/include/c++/v1/thread /usr/include/c++/v1/tr1/tuple -> /usr/include/c++/v1/tuple /usr/include/c++/v1/tr1/type_traits -> /usr/include/c++/v1/type_traits /usr/include/c++/v1/tr1/typeindex -> /usr/include/c++/v1/typeindex /usr/include/c++/v1/tr1/typeinfo -> /usr/include/c++/v1/typeinfo /usr/include/c++/v1/tr1/unordered_map -> /usr/include/c++/v1/unordered_map /usr/include/c++/v1/tr1/unordered_/usr/include/c++/v1/unordered_set /usr/include/c++/v1/tr1/utility -> /usr/include/c++/v1/utility /usr/include/c++/v1/tr1/valarray -> /usr/include/c++/v1/valarray /usr/include/c++/v1/tr1/vector -> /usr/include/c++/v1/vector =3D=3D=3D> lib/libcxxrt (installincludes) =3D=3D=3D> lib/libelf (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libelf/../../contrib/elftoolch= ain/libelf/libelf.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libelf/../../cont= rib/elftoolchain/libelf/gelf.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds= /FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/msun (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/msun/x86/fenv.h /builds/FreeBS= D_HEAD_amd64_gcc4.9/lib/msun/src/math.h /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ --- installincludes --- =3D=3D=3D> lib/msun/tests (installincludes) =3D=3D=3D> lib/libalias (installincludes) --- installincludes --- =3D=3D=3D> lib/libalias/libalias (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libalias/libalias/../../../sys= /netinet/libalias/alias.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libalias/modules (installincludes) --- installincludes --- =3D=3D=3D> lib/libalias/modules/cuseeme (installincludes) =3D=3D=3D> lib/libalias/modules/dummy (installincludes) =3D=3D=3D> lib/libalias/modules/ftp (installincludes) =3D=3D=3D> lib/libalias/modules/irc (installincludes) =3D=3D=3D> lib/libalias/modules/nbt (installincludes) =3D=3D=3D> lib/libalias/modules/pptp (installincludes) =3D=3D=3D> lib/libalias/modules/skinny (installincludes) =3D=3D=3D> lib/libalias/modules/smedia (installincludes) =3D=3D=3D> lib/libarchive (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libarchive/../../contrib/libar= chive/libarchive/archive.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libarchive= /../../contrib/libarchive/libarchive/archive_entry.h /builds/FreeBSD_HEAD_a= md64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ --- installincludes --- =3D=3D=3D> lib/libarchive/tests (installincludes) =3D=3D=3D> lib/libauditd (installincludes) =3D=3D=3D> lib/libbegemot (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbegemot/../../contrib/libbe= gemot/rpoll.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libblocksruntime (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libblocksruntime/../../contrib= /compiler-rt/lib/BlocksRuntime/Block.h /builds/FreeBSD_HEAD_amd64_gcc4.9/li= b/libblocksruntime/../../contrib/compiler-rt/lib/BlocksRuntime/Block_privat= e.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/= tmp/usr/include/ =3D=3D=3D> lib/libbluetooth (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbluetooth/bluetooth.h /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/i= nclude/ =3D=3D=3D> lib/libbsnmp (installincludes) --- installincludes --- =3D=3D=3D> lib/libbsnmp/libbsnmp (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbsnmp/libbsnmp/../../../con= trib/bsnmp/lib/asn1.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbsnmp/libbsn= mp/../../../contrib/bsnmp/lib/snmp.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/= libbsnmp/libbsnmp/../../../contrib/bsnmp/lib/snmpagent.h /builds/FreeBSD_HE= AD_amd64_gcc4.9/lib/libbsnmp/libbsnmp/../../../contrib/bsnmp/lib/snmpclient= .h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/t= mp/usr/include/bsnmp/ =3D=3D=3D> lib/libbsdstat (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbsdstat/bsdstat.h /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inclu= de/private/bsdstat/ =3D=3D=3D> lib/libbsm (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbsm/../../contrib/openbsm/b= sm/audit_uevents.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbsm/../../contr= ib/openbsm/bsm/libbsm.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBS= D_HEAD_amd64_gcc4.9/tmp/usr/include/bsm/ =3D=3D=3D> lib/libbz2 (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libbz2/../../contrib/bzip2/bzl= ib.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /tmp/usr/include/ =3D=3D=3D> lib/libcalendar (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcalendar/calendar.h /builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inc= lude/ =3D=3D=3D> lib/libcam (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcam/camlib.h /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libcapsicum (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcapsicum/libcapsicum.h /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcapsicum/libcapsicum_dns.h /builds/Fre= eBSD_HEAD_amd64_gcc4.9/lib/libcapsicum/libcapsicum_grp.h /builds/FreeBSD_HE= AD_amd64_gcc4.9/lib/libcapsicum/libcapsicum_pwd.h /builds/FreeBSD_HEAD_amd6= 4_gcc4.9/lib/libcapsicum/libcapsicum_random.h /builds/FreeBSD_HEAD_amd64_gc= c4.9/lib/libcapsicum/libcapsicum_service.h /builds/FreeBSD_HEAD_amd64_gcc4.= 9/lib/libcapsicum/libcapsicum_sysctl.h /builds/FreeBSD_HEAD_amd64_gcc4.9/ob= j/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libcasper (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcasper/libcasper.h /builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/incl= ude/ =3D=3D=3D> lib/libcom_err (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcom_err/../../contrib/com_e= rr/com_err.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcom_err/../../contrib= /com_err/com_right.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libcompat (installincludes) =3D=3D=3D> lib/libcrypt (installincludes) --- installincludes --- =3D=3D=3D> lib/libcrypt/tests (installincludes) =3D=3D=3D> lib/libdevctl (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdevctl/devctl.h /builds/Fre= eBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include= / =3D=3D=3D> lib/libdevinfo (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdevinfo/devinfo.h /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inclu= de/ =3D=3D=3D> lib/libdevstat (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdevstat/devstat.h /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inclu= de/ =3D=3D=3D> lib/libdpv (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdpv/dpv.h /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libdwarf (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdwarf/../../contrib/elftool= chain/libdwarf/dwarf.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libdwarf/../..= /contrib/elftoolchain/libdwarf/libdwarf.h /builds/FreeBSD_HEAD_amd64_gcc4.9= /obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libedit (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libedit/histedit.h /builds/Fre= eBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include= / --- installincludes --- =3D=3D=3D> lib/libedit/edit/readline (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libedit/edit/readline/readline= .h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libedit/edit/readline/history.h /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/lib/libedit/edit/readline/tilde.h /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inclu= de/edit/readline/ =3D=3D=3D> lib/libelftc (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libelftc/../../contrib/elftool= chain/libelftc/libelftc.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libevent (installincludes) =3D=3D=3D> lib/libexecinfo (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libexecinfo/../../contrib/libe= xecinfo/execinfo.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEA= D_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libexpat (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 bsdxml.h bsdxml_external.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bui= lds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libfetch (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libfetch/fetch.h /builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libfigpar (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libfigpar/figpar.h /builds/Fre= eBSD_HEAD_amd64_gcc4.9/lib/libfigpar/string_m.h /builds/FreeBSD_HEAD_amd64_= gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libgeom (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libgeom/libgeom.h /builds/Free= BSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libgpio (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libgpio/libgpio.h /builds/Free= BSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libgssapi (installincludes) =3D=3D=3D> lib/librpcsec_gss (installincludes) =3D=3D=3D> lib/libiconv_modules (installincludes) --- installincludes --- =3D=3D=3D> lib/libiconv_modules/BIG5 (installincludes) =3D=3D=3D> lib/libiconv_modules/DECHanyu (installincludes) =3D=3D=3D> lib/libiconv_modules/EUC (installincludes) =3D=3D=3D> lib/libiconv_modules/EUCTW (installincludes) =3D=3D=3D> lib/libiconv_modules/GBK2K (installincludes) =3D=3D=3D> lib/libiconv_modules/HZ (installincludes) =3D=3D=3D> lib/libiconv_modules/ISO2022 (installincludes) =3D=3D=3D> lib/libiconv_modules/JOHAB (installincludes) =3D=3D=3D> lib/libiconv_modules/MSKanji (installincludes) =3D=3D=3D> lib/libiconv_modules/UES (installincludes) =3D=3D=3D> lib/libiconv_modules/UTF1632 (installincludes) =3D=3D=3D> lib/libiconv_modules/UTF7 (installincludes) =3D=3D=3D> lib/libiconv_modules/UTF8 (installincludes) =3D=3D=3D> lib/libiconv_modules/VIQR (installincludes) =3D=3D=3D> lib/libiconv_modules/ZW (installincludes) =3D=3D=3D> lib/libiconv_modules/iconv_none (installincludes) =3D=3D=3D> lib/libiconv_modules/iconv_std (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_646 (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_none (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_parallel (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_serial (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_std (installincludes) =3D=3D=3D> lib/libiconv_modules/mapper_zone (installincludes) =3D=3D=3D> lib/libipsec (installincludes) =3D=3D=3D> lib/libjail (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libjail/jail.h /builds/FreeBSD= _HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libkiconv (installincludes) =3D=3D=3D> lib/libkvm (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libkvm/kvm.h /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libldns (installincludes) =3D=3D=3D> lib/liblzma (installincludes) --- _MAININCSINS --- --- _LZMAINCSINS --- --- _MAININCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/l= iblzma/api/lzma/../lzma.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/tmp/usr/include/ --- _LZMAINCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/l= iblzma/api/lzma/base.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../= contrib/xz/src/liblzma/api/lzma/bcj.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib= /liblzma/../../contrib/xz/src/liblzma/api/lzma/block.h /builds/FreeBSD_HEAD= _amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/liblzma/api/lzma/check.h /bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/liblzma/api= /lzma/container.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contr= ib/xz/src/liblzma/api/lzma/delta.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/li= blzma/../../contrib/xz/src/liblzma/api/lzma/filter.h /builds/FreeBSD_HEAD_a= md64_gcc4.9/lib/liblzma/../../contrib/xz/src/liblzma/api/lzma/hardware.h /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/liblzma/ap= i/lzma/index.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/= xz/src/liblzma/api/lzma/index_hash.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/= liblzma/../../contrib/xz/src/liblzma/api/lzma/lzma12.h /builds/FreeBSD_HEAD= _amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/liblzma/api/lzma/stream_flag= s.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../contrib/xz/src/libl= zma/api/lzma/version.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/liblzma/../../= contrib/xz/src/liblzma/api/lzma/vli.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj= /builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/lzma/ =3D=3D=3D> lib/libmagic (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmagic/../../contrib/file/sr= c/magic.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/tmp/usr/include/ =3D=3D=3D> lib/libmemstat (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmemstat/memstat.h /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/inclu= de/ =3D=3D=3D> lib/libmd (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmd/md4.h /builds/FreeBSD_HE= AD_amd64_gcc4.9/lib/libmd/md5.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmd= /ripemd.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmd/sha.h /builds/FreeBSD= _HEAD_amd64_gcc4.9/lib/libmd/../../sys/crypto/sha2/sha256.h /builds/FreeBSD= _HEAD_amd64_gcc4.9/lib/libmd/sha512.h /builds/FreeBSD_HEAD_amd64_gcc4.9/obj= /builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/libmilter (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmilter/../../contrib/sendma= il/include/libmilter/mfapi.h /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmilte= r/../../contrib/sendmail/include/libmilter/mfdef.h /builds/FreeBSD_HEAD_amd= 64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/libmilter/ =3D=3D=3D> lib/libmp (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmp/mp.h /builds/FreeBSD_HEA= D_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ --- installincludes --- =3D=3D=3D> lib/libmp/tests (installincludes) =3D=3D=3D> lib/libmt (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libmt/mtlib.h /builds/FreeBSD_= HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/ =3D=3D=3D> lib/lib80211 (installincludes) --- _INCSINS --- sh /builds/FreeBSD_HEAD_amd64_gcc4.9/tools/install.sh -C -o root -g wheel -= m 444 /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/lib80211/lib80211_regdomain.h = /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/lib80211/lib80211_ioctl.h /builds/Fre= eBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include= /lib80211// install: target directory `/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Fre= eBSD_HEAD_amd64_gcc4.9/tmp/usr/include/lib80211//' does not exist usage: install [-bCcpSsUv] [-f flags] [-g group] [-m mode] [-o owner] [-M log] [-D dest] [-h hash] [-T tags] [-B suffix] [-l linkflags] [-N dbdir] file1 file2 install [-bCcpSsUv] [-f flags] [-g group] [-m mode] [-o owner] [-M log] [-D dest] [-h hash] [-T tags] [-B suffix] [-l linkflags] [-N dbdir] file1 ... fileN directory install -dU [-vU] [-g group] [-m mode] [-N dbdir] [-o owner] [-M log] [-D dest] [-h hash] [-T tags] directory ... *** [_INCSINS] Error code 64 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/lib80211 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/lib80211 *** [installincludes] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [installincludes] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [_includes] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 07:36:14 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 461ACA3C695 for ; Mon, 30 Nov 2015 07:36:14 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 36B041835; Mon, 30 Nov 2015 07:36:14 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 6CA161A8E; Mon, 30 Nov 2015 07:36:13 +0000 (UTC) Date: Mon, 30 Nov 2015 07:36:10 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: melifaro@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <389662318.283.1448868972872.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3591 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 07:36:14 -0000 FreeBSD_HEAD - Build #3591 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3591/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3591/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3591/console Change summaries: 291469 by adrian: fix ht/40 configuration for ar9331 (hornet). The synth programming here requires the real centre frequency, which for HT20 channels is the normal channel, but HT40 is /not/ the primary channel. Everything else was using 'freq', which is the correct centre frequency, but the hornet config was using 'ichan' to do the lookup which was also the primary channel. So, modify the HAL call that does the mapping to take a frequency in MHz and return the channel number. Tested: * Carambola 2, AR9331, tested both HT/20 and HT/40 operation. 291468 by melifaro: Remove in_setifarnh definition. 291467 by melifaro: Move flowtable rte checks to separate function. 291466 by melifaro: Add new rt_foreach_fib_walk_del() function for deleting route entries by filter function instead of picking into routing table details in each consumer. Remove now-unused rt_expunge() (eliminating last external RTF_RNH_LOCKED user). This simplifies future nexthops/mulitipath changes and rtrequest1_fib() locking refactoring. Actual changes: Add "rt_chain" field to permit rte grouping while doing batched delete from routing table (thus growing rte 200->208 on amd64). Add "rti_filter" / "rti_filterdata" / "rti_spare" fields to rt_addrinfo to pass filter function to various routing subsystems in standard way. Convert all rt_expunge() customers to new rt_addinfo-based api and eliminat= e rt_expunge(). 291465 by adrian: Add lib80211 to include path. (This commit was missing from my lib80211 commit.) 291464 by adrian: Add lib80211, a small (but hopefully soon to grow) set of library routines to interface with net80211. This is all from the ifconfig program; the duplicate code from ifconfig will be removed when it starts using this API. Differential Revision:=09https://reviews.freebsd.org/D4290 The end of the build log: [...truncated 287038 lines...] --- ar9287_olc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9287_olc.o -MTar9287_olc.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath/ath_hal/ar9002/ar9287_o= lc.c -o ar9287_olc.o --- all_subdir_cpufreq --- --- est.o --- ctfconvert -L VERSION -g est.o --- all_subdir_crypto --- --- criov.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.criov.o -M= Tcriov.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../open= crypto/criov.c -o criov.o --- all_subdir_cpufreq --- --- hwpstate.o --- ctfconvert -L VERSION -g hwpstate.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9287_olc.o --- all_subdir_cpufreq --- --- p4tcc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.p4tcc.o -M= Tp4tcc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpufreq/../../x86= /cpufreq/p4tcc.c -o p4tcc.o --- all_subdir_ath --- --- ar9300_interrupts.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_interrupts.o -MTar9300_interrupts.o -= mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchr= onous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wal= l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__pri= ntf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-opti= on -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-= body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-erro= r-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Di= so9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/a= th_hal/ar9300/ar9300_interrupts.c -o ar9300_interrupts.o --- all_subdir_crypto --- ctfconvert -L VERSION -g criov.o --- all_subdir_cpufreq --- --- powernow.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.powernow.o= -MTpowernow.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cpufreq/../= ../x86/cpufreq/powernow.c -o powernow.o --- all_subdir_crypto --- --- crypto.o --- ctfconvert -L VERSION -g crypto.o --- cryptosoft.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptosoft= .o -MTcryptosoft.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft= -float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-prot= ector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototype= s -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-= pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fd= iagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compa= re -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused= -function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-ae= s -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/= ../../opencrypto/cryptosoft.c -o cryptosoft.o --- all_subdir_cpufreq --- --- p4tcc.o --- ctfconvert -L VERSION -g p4tcc.o --- all_subdir_crypto --- --- xform.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.xform.o -M= Txform.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../open= crypto/xform.c -o xform.o --- all_subdir_cpufreq --- --- powernow.o --- ctfconvert -L VERSION -g powernow.o --- cpufreq.ko.full --- ld -d -warn-common -r -d -o cpufreq.ko.full ichss.o est.o hwpstate.o p4tcc.= o powernow.o ctfmerge -L VERSION -g -o cpufreq.ko.full ichss.o est.o hwpstate.o p4tcc.o = powernow.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cpufreq.ko.full export_= syms | xargs -J% objcopy % cpufreq.ko.full --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_interrupts.o --- all_subdir_cpufreq --- --- cpufreq.ko.debug --- --- all_subdir_crypto --- ctfconvert -L VERSION -g xform.o --- all_subdir_cpufreq --- objcopy --only-keep-debug cpufreq.ko.full cpufreq.ko.debug --- cpufreq.ko --- --- all_subdir_ath --- --- ar9300_radar.o --- --- all_subdir_cpufreq --- objcopy --strip-debug --add-gnu-debuglink=3Dcpufreq.ko.debug cpufreq.ko.fu= ll cpufreq.ko --- all_subdir_ath --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radar.o -MTar9300_radar.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radar.c -o ar9300_radar.o --- evgpe.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evgpe.o -MTevgpe.o -mcmodel=3Dkernel -mn= o-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables = -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls = -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith = -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kp= rintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pra= gmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-par= entheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-= error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -Werror = /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evgpe.c --- evgpeblk.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evgpeblk.o -MTevgpeblk.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -W= error /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evgpeb= lk.c --- modules-all --- --- all_subdir_crypto --- --- cryptosoft.o --- ctfconvert -L VERSION -g cryptosoft.o --- cast.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cast.o -MT= cast.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno= -asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwar= f-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing= -prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign= -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-s= how-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-erro= r-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -= Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx = -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../opencr= ypto/cast.c -o cast.o --- evgpe.o --- ctfconvert -L VERSION -g evgpe.o --- modules-all --- --- all_subdir_cryptodev --- =3D=3D=3D> cryptodev (all) --- evgpeblk.o --- ctfconvert -L VERSION -g evgpeblk.o --- modules-all --- --- all_subdir_cs --- =3D=3D=3D> cs (all) --- all_subdir_cryptodev --- --- cryptodev.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptodev.= o -MTcryptodev.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-f= loat -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protec= tor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-po= inter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare= -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-f= unction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes = -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cryptodev= /../../opencrypto/cryptodev.c -o cryptodev.o --- all_subdir_cs --- --- if_cs.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs.o -M= Tif_cs.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -f= no-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdw= arf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics= -show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-er= ror-empty-body -Wno-error-parentheses-equality -Wno-error-unused-function = -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx= -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/../../dev/cs/i= f_cs.c -o if_cs.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_radar.o --- all_subdir_crypto --- ctfconvert -L VERSION -g cast.o --- cryptodeflate.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.cryptodefl= ate.o -MTcryptodeflate.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse = -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstac= k-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-pro= totypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef= -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-di= rs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological= -compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-= unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -= mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/c= rypto/../../opencrypto/cryptodeflate.c -o cryptodeflate.o --- all_subdir_ath --- --- ar9300_ani.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_ani.o -MTar9300_ani.o -mcmodel=3Dkern= el -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-t= ables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-= decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-= arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__free= bsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkno= wn-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-err= or-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign= -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 -c= /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/= ar9300_ani.c -o ar9300_ani.o --- all_subdir_crypto --- ctfconvert -L VERSION -g cryptodeflate.o --- rmd160.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rmd160.o -= MTrmd160.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../op= encrypto/rmd160.c -o rmd160.o --- all_subdir_cryptodev --- ctfconvert -L VERSION -g cryptodev.o --- cryptodev.ko.full --- ld -d -warn-common -r -d -o cryptodev.ko.full cryptodev.o ctfmerge -L VERSION -g -o cryptodev.ko.full cryptodev.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk cryptodev.ko.full expor= t_syms | xargs -J% objcopy % cryptodev.ko.full --- cryptodev.ko.debug --- objcopy --only-keep-debug cryptodev.ko.full cryptodev.ko.debug --- cryptodev.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dcryptodev.ko.debug cryptodev.k= o.full cryptodev.ko --- all_subdir_cs --- --- if_cs_isa.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_isa.= o -MTif_cs_isa.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-f= loat -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protec= tor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes = -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-po= inter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdia= gnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare= -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-f= unction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes = -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/../../= dev/cs/if_cs_isa.c -o if_cs_isa.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_ani.o --- all_subdir_cs --- --- if_cs.o --- ctfconvert -L VERSION -g if_cs.o --- if_cs_isa.o --- ctfconvert -L VERSION -g if_cs_isa.o --- all_subdir_ath --- --- ar9300_keycache.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_keycache.o -MTar9300_keycache.o -mcmo= del=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronou= s-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -W= redundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes = -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf_= _=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option = -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body= -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-po= inter-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso98= 99:1999 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_h= al/ar9300/ar9300_keycache.c -o ar9300_keycache.o --- all_subdir_crypto --- --- rijndael-alg-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= lg-fst.o -MTrijndael-alg-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-alg-fst.c -o rijndael-alg-fst.o --- all_subdir_cs --- --- if_cs_pccard.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.if_cs_pcca= rd.o -MTif_cs_pccard.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cs/= ../../dev/cs/if_cs_pccard.c -o if_cs_pccard.o --- all_subdir_crypto --- --- rmd160.o --- ctfconvert -L VERSION -g rmd160.o --- evgpeinit.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evgpeinit.o -MTevgpeinit.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -Werror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evgp= einit.c --- modules-all --- --- all_subdir_cs --- ctfconvert -L VERSION -g if_cs_pccard.o --- if_cs.ko.full --- ld -d -warn-common -r -d -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.= o ctfmerge -L VERSION -g -o if_cs.ko.full if_cs.o if_cs_isa.o if_cs_pccard.o :> export_syms awk -f /builds/FreeBSD_HEAD/sys/conf/kmod_syms.awk if_cs.ko.full export_sy= ms | xargs -J% objcopy % if_cs.ko.full --- if_cs.ko.debug --- objcopy --only-keep-debug if_cs.ko.full if_cs.ko.debug --- if_cs.ko --- objcopy --strip-debug --add-gnu-debuglink=3Dif_cs.ko.debug if_cs.ko.full i= f_cs.ko --- evgpeutil.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evgpeutil.o -MTevgpeutil.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -Werror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evgp= eutil.c --- modules-all --- --- all_subdir_crypto --- --- rijndael-alg-fst.o --- ctfconvert -L VERSION -g rijndael-alg-fst.o --- rijndael-api.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi.o -MTrijndael-api.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -m= soft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-= protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-proto= types -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -= Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs= -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-c= ompare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-un= used-function -Wno-error-pointer-sign -Wno-error-shift-negative-value -mn= o-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/cry= pto/../../crypto/rijndael/rijndael-api.c -o rijndael-api.o --- evgpeinit.o --- ctfconvert -L VERSION -g evgpeinit.o --- modules-all --- --- all_subdir_ctl --- =3D=3D=3D> ctl (all) --- all_subdir_crypto --- ctfconvert -L VERSION -g rijndael-api.o --- rijndael-api-fst.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.rijndael-a= pi-fst.o -MTrijndael-api-fst.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mn= o-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fwrapv = -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstri= ct-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -= Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-incl= ude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautol= ogical-compare -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-= error-unused-function -Wno-error-pointer-sign -Wno-error-shift-negative-va= lue -mno-aes -mno-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/mod= ules/crypto/../../crypto/rijndael/rijndael-api-fst.c -o rijndael-api-fst.o --- all_subdir_ctl --- --- ctl.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.ctl.o -MTc= tl.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-a= synchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-= 2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p= rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -= D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-sho= w-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-= empty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wn= o-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-avx -s= td=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/ctl/../../cam/ctl/ctl= .c -o ctl.o --- evgpeutil.o --- ctfconvert -L VERSION -g evgpeutil.o --- modules-all --- --- all_subdir_crypto --- --- skipjack.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.skipjack.o= -MTskipjack.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-flo= at -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protecto= r -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -= Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poin= ter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn= ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -= Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fun= ction -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -m= no-avx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../.= ./opencrypto/skipjack.c -o skipjack.o --- all_subdir_ath --- ctfconvert -L VERSION -g ar9300_keycache.o --- ar9300_radio.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_radio.o -MTar9300_radio.o -mcmodel=3D= kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwi= nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund= ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__= freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-u= nknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno= -error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-= sign -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:199= 9 -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9= 300/ar9300_radio.c -o ar9300_radio.o --- all_subdir_crypto --- --- rijndael-api-fst.o --- ctfconvert -L VERSION -g rijndael-api-fst.o --- evhandler.o --- cc -c -O2 -pipe -fno-strict-aliasing -g -nostdinc -I. -I/builds/FreeBSD_= HEAD/sys -I/builds/FreeBSD_HEAD/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_= OPTION_HEADERS -include opt_global.h -fno-omit-frame-pointer -mno-omit-lea= f-frame-pointer -MD -MP -MF.depend.evhandler.o -MTevhandler.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -Werror /builds/FreeBSD_HEAD/sys/contrib/dev/acpica/components/events/evha= ndler.c --- modules-all --- --- skipjack.o --- ctfconvert -L VERSION -g skipjack.o --- bf_enc.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -DHAVE_KERNEL_OPTION_HEADERS -include /builds/FreeBSD_HEAD/obj/builds/F= reeBSD_HEAD/sys/GENERIC/opt_global.h -I. -I/builds/FreeBSD_HEAD/sys -fno-co= mmon -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -I/builds/Free= BSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC -MD -MP -MF.depend.bf_enc.o -= MTbf_enc.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float = -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -g= dwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-= sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnosti= cs-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-= error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functio= n -Wno-error-pointer-sign -Wno-error-shift-negative-value -mno-aes -mno-a= vx -std=3Diso9899:1999 -c /builds/FreeBSD_HEAD/sys/modules/crypto/../../cr= ypto/blowfish/bf_enc.c -o bf_enc.o --- evhandler.o --- ctfconvert -L VERSION -g evhandler.o --- modules-all --- --- all_subdir_ath --- --- ar9300_xmit.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin= c -I. -I/builds/FreeBSD_HEAD/sys/modules/ath/../../dev/ath -I/builds/FreeB= SD_HEAD/sys/modules/ath/../../dev/ath/ath_hal -I. -I/builds/FreeBSD_HEAD/sy= s/modules/ath/../../contrib/dev/ath/ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -= include /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERIC/opt_global= .h -I. -I/builds/FreeBSD_HEAD/sys -fno-common -g -fno-omit-frame-pointer -m= no-omit-leaf-frame-pointer -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/s= ys/GENERIC -MD -MP -MF.depend.ar9300_xmit.o -MTar9300_xmit.o -mcmodel=3Dke= rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind= -tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan= t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe= r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fr= eebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unk= nown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-e= rror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-si= gn -Wno-error-shift-negative-value -mno-aes -mno-avx -std=3Diso9899:1999 = -c /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar930= 0/ar9300_xmit.c -o ar9300_xmit.o --- ar9300_radio.o --- /builds/FreeBSD_HEAD/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/a= r9300_radio.c:89:27: error: unused variable 'ichan' [-Werror,-Wunused-varia= ble] HAL_CHANNEL_INTERNAL *ichan =3D ath_hal_checkchannel(ah, chan); ^ 1 error generated. *** [ar9300_radio.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath --- all_subdir_crypto --- ctfconvert -L VERSION -g bf_enc.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/crypto *** [all_subdir_crypto] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ath --- --- ar9300_xmit.o --- ctfconvert -L VERSION -g ar9300_xmit.o 1 error make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ath *** [all_subdir_ath] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules --- all_subdir_ctl --- ctfconvert -L VERSION -g ctl.o A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sys/modules/ctl *** [all_subdir_ctl] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules 3 errors make[3]: stopped in /builds/FreeBSD_HEAD/sys/modules *** [modules-all] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C 1 error make[2]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/sys/GENERI= C *** [buildkernel] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildkernel] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 08:05:09 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1560A3A0D1; Mon, 30 Nov 2015 08:05:08 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id C5BF61AFE; Mon, 30 Nov 2015 08:05:08 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id E7B7B1A95; Mon, 30 Nov 2015 08:05:08 +0000 (UTC) Date: Mon, 30 Nov 2015 08:05:07 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: melifaro@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1820644766.285.1448870708904.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1800 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 08:05:09 -0000 FreeBSD_HEAD_i386 - Build #1800 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1800/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1800/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1800/cons= ole Change summaries: 291471 by adrian: Add missing lib declaration. 291470 by adrian: Convert ifconfig to use lib80211. * remove regdomain.[ch] - it's now part of lib80211. * convert ifieee80211.c to use the ioctl routines in lib80211 and implement the "error? exit" wrapper behaviour the callers expect. 291469 by adrian: fix ht/40 configuration for ar9331 (hornet). The synth programming here requires the real centre frequency, which for HT20 channels is the normal channel, but HT40 is /not/ the primary channel. Everything else was using 'freq', which is the correct centre frequency, but the hornet config was using 'ichan' to do the lookup which was also the primary channel. So, modify the HAL call that does the mapping to take a frequency in MHz and return the channel number. Tested: * Carambola 2, AR9331, tested both HT/20 and HT/40 operation. 291468 by melifaro: Remove in_setifarnh definition. 291467 by melifaro: Move flowtable rte checks to separate function. 291466 by melifaro: Add new rt_foreach_fib_walk_del() function for deleting route entries by filter function instead of picking into routing table details in each consumer. Remove now-unused rt_expunge() (eliminating last external RTF_RNH_LOCKED user). This simplifies future nexthops/mulitipath changes and rtrequest1_fib() locking refactoring. Actual changes: Add "rt_chain" field to permit rte grouping while doing batched delete from routing table (thus growing rte 200->208 on amd64). Add "rti_filter" / "rti_filterdata" / "rti_spare" fields to rt_addrinfo to pass filter function to various routing subsystems in standard way. Convert all rt_expunge() customers to new rt_addinfo-based api and eliminat= e rt_expunge(). The end of the build log: [...truncated 107803 lines...] ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfc54): = undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0xfcb4): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe1c): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe3b): = undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe6d): = undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfeab): = undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfee2): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xff00): = undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xffdc): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfffb): = undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1002d):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1006b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10146):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x101c6):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10244):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x102dc):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10355):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x103b4):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10414):= undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x104a3): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x115eb):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11625):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11c16):= undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x135db):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1370b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x138b9):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x13d98):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14866):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14885):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148c7):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148e7):= undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14b15):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d04):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d2b):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e24):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e84):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ec4):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14eee):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f11):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f6c):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fb9):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fdc):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ff0):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1529d):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15a45):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15d38):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15ee5):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15f4d):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15fc3):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1600a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16053):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x160a9):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16131):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1619c):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x161ff): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x165e4):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16622):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x166b2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1670d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16742):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1679b):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x167de): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': --- all_subdir_sbin --- --- gstripe.8.gz --- --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1695f):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ba0):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16bbc):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c0d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c82):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16d33):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ed2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f18):= undefined reference to `lib80211_get80211val' --- all_subdir_sbin --- gzip -cn /usr/src/sbin/geom/class/stripe/gstripe.8 > gstripe.8.gz --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f9a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17008):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1704e):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x170af): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1795c):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179a9):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179e6):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17a4b):= undefined reference to `lib80211_get80211val' --- all_subdir_secure --- --- a_bool.po --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/asn1/a_bool.c -o a_bool.po --- all_subdir_sbin --- --- geom_stripe.so --- building shared library geom_stripe.so cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o geom_stripe.so -Wl,-soname,geom_stripe.so `NM=3D'nm' N= MFLAGS=3D'' lorder geom_stripe.So subr.So | tsort -q`=20 =3D=3D=3D> sbin/geom/class/virstor (all) --- binstream.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/sbin/geom/class/virstor/../.. -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wp= ointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -W= unused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -= Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arg= uments -c /usr/src/sbin/geom/class/virstor/../../../../sys/geom/virstor/bin= stream.c -o binstream.So --- all_subdir_secure --- --- a_bytes.po --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/asn1/a_bytes.c -o a_bytes.po --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [rescue] Error code 1 make[5]: stopped in /usr/obj/usr/src/rescue/rescue 1 error make[5]: stopped in /usr/obj/usr/src/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /usr/src/rescue/rescue 1 error make[4]: stopped in /usr/src/rescue/rescue *** [all] Error code 2 make[3]: stopped in /usr/src/rescue 1 error make[3]: stopped in /usr/src/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /usr/src --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/sbin/geom/class/virstor *** [all] Error code 2 make[5]: stopped in /usr/src/sbin/geom/class 1 error make[5]: stopped in /usr/src/sbin/geom/class *** [all] Error code 2 make[4]: stopped in /usr/src/sbin/geom 1 error make[4]: stopped in /usr/src/sbin/geom *** [all_subdir_geom] Error code 2 make[3]: stopped in /usr/src/sbin 1 error make[3]: stopped in /usr/src/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /usr/src --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /usr/src/secure/lib 1 error make[4]: stopped in /usr/src/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /usr/src/secure 1 error make[3]: stopped in /usr/src/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /usr/src --- all_subdir_lib --- --- all_subdir_libnv --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/lib/libnv/tests *** [nv_array_tests] Error code 2 make[5]: stopped in /usr/src/lib/libnv/tests 1 error make[5]: stopped in /usr/src/lib/libnv/tests *** [all] Error code 2 make[4]: stopped in /usr/src/lib/libnv 1 error make[4]: stopped in /usr/src/lib/libnv *** [all_subdir_libnv] Error code 2 make[3]: stopped in /usr/src/lib 1 error make[3]: stopped in /usr/src/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /usr/src 4 errors make[2]: stopped in /usr/src *** [everything] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3222285546812590851.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 08:08:09 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98B00A3A1D1 for ; Mon, 30 Nov 2015 08:08:09 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1376E1C9F for ; Mon, 30 Nov 2015 08:08:08 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tAU87xvD058694 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 30 Nov 2015 10:07:59 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tAU87xvD058694 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tAU87xOJ058693; Mon, 30 Nov 2015 10:07:59 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 30 Nov 2015 10:07:59 +0200 From: Konstantin Belousov To: Henry Hu Cc: "O. Hartmann" , FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130080759.GG3448@kib.kiev.ua> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 08:08:09 -0000 On Sun, Nov 29, 2015 at 03:11:42PM -0500, Henry Hu wrote: > On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann > wrote: > > > > > On most recent CURRENT (Revision: 291458), ob booting I receive this on > > the console: > > > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > > > What looking at the shared object cache with ldconfig -r, I find > > libelf.so.2 as well as > > libkvm.so.6 listed. > > > > What is this weird message? > > > > > locate libelf.so.2 > ... > /usr/lib/libelf.so.2 > ... > > locate libkvm.so.6 > /lib/libkvm.so.6 > ... > > ldd /lib/libkvm.so.6 > /lib/libkvm.so.6: > libc.so.7 => /lib/libc.so.7 (0x800822000) > > It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it > come from? Does the original reporter have root and /usr volumes split ? Show the 'mount' output on the affected machine. From owner-freebsd-current@freebsd.org Mon Nov 30 09:05:01 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B136A3C2CA for ; Mon, 30 Nov 2015 09:05:01 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26AE81C87 for ; Mon, 30 Nov 2015 09:05:00 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a3KOB-001LzL-Tf>; Mon, 30 Nov 2015 10:04:51 +0100 Received: from f052164138.adsl.alicedsl.de ([78.52.164.138] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a3KOB-002iHV-J4>; Mon, 30 Nov 2015 10:04:51 +0100 Date: Mon, 30 Nov 2015 10:04:46 +0100 From: "O. Hartmann" To: Konstantin Belousov Cc: Henry Hu , FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130100446.1af41a37.ohartman@zedat.fu-berlin.de> In-Reply-To: <20151130080759.GG3448@kib.kiev.ua> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130080759.GG3448@kib.kiev.ua> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/=M663BGU9xO5Q3WQIP3oSud"; protocol="application/pgp-signature" X-Originating-IP: 78.52.164.138 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 09:05:01 -0000 --Sig_/=M663BGU9xO5Q3WQIP3oSud Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Mon, 30 Nov 2015 10:07:59 +0200 Konstantin Belousov schrieb: > On Sun, Nov 29, 2015 at 03:11:42PM -0500, Henry Hu wrote: > > On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann > > wrote: > > =20 > > > > > > On most recent CURRENT (Revision: 291458), ob booting I receive this = on > > > the console: > > > > > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > > > > > What looking at the shared object cache with ldconfig -r, I find > > > libelf.so.2 as well as > > > libkvm.so.6 listed. > > > > > > What is this weird message? > > > =20 > > =20 > > > locate libelf.so.2 =20 > > ... > > /usr/lib/libelf.so.2 > > ... =20 > > > locate libkvm.so.6 =20 > > /lib/libkvm.so.6 > > ... =20 > > > ldd /lib/libkvm.so.6 =20 > > /lib/libkvm.so.6: > > libc.so.7 =3D> /lib/libc.so.7 (0x800822000) > >=20 > > It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it > > come from? =20 >=20 > Does the original reporter have root and /usr volumes split ? > Show the 'mount' output on the affected machine. Yes, I have split them, of course. / is a partition, /usr is also a partiti= on, also /var and /usr/local. In fstab, / is the first, /usr the second getting mounted. Kind regards, oh --Sig_/=M663BGU9xO5Q3WQIP3oSud Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXBEvAAoJEOgBcD7A/5N8SJUH/jyKoPdTe91svXc6JGkN4IlE tI1ML2vHyIzJHeTmz+0LHobG12/CQnsZLZGV+N4MSJmIn2AKZDkGzMvnCKq77POa 8MqEiZUvIieAtguRuY0E8IXaNcey03vYNahPBQ939fq5Z6cM/FbH+0atfain4KTX VYTdFd/YFt4eLWCVidUl/2wz0D6rJ/TUVcKk36Tqu08uGPEgpipyxFAFBa9RzuPQ oviOm0uoPI5yT1w3SmxHKVgRRTSMcoX3C+4wPQWUlu2sX2F/1c8XB0aqKOxgAVA9 1O/z9zN1jfVW/0O2FvUKgBwbV5MwdCQflpFDYCAmhORvixXDsyjQ9Y7BjlX+ic0= =a9og -----END PGP SIGNATURE----- --Sig_/=M663BGU9xO5Q3WQIP3oSud-- From owner-freebsd-current@freebsd.org Mon Nov 30 09:07:01 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D391AA3C35F for ; Mon, 30 Nov 2015 09:07:01 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8FCAA1DC9 for ; Mon, 30 Nov 2015 09:07:01 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a3KQF-001NLZ-Rq>; Mon, 30 Nov 2015 10:06:59 +0100 Received: from f052164138.adsl.alicedsl.de ([78.52.164.138] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a3KQF-002iU2-Is>; Mon, 30 Nov 2015 10:06:59 +0100 Date: Mon, 30 Nov 2015 10:06:58 +0100 From: "O. Hartmann" To: Henry Hu Cc: FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130100658.1c18fe83.ohartman@zedat.fu-berlin.de> In-Reply-To: References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/fMJBZkEvcCMTruePObnRxV8"; protocol="application/pgp-signature" X-Originating-IP: 78.52.164.138 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 09:07:01 -0000 --Sig_/fMJBZkEvcCMTruePObnRxV8 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Sun, 29 Nov 2015 15:11:42 -0500 Henry Hu schrieb: > On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann > wrote: >=20 > > > > On most recent CURRENT (Revision: 291458), ob booting I receive this on > > the console: > > > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > > > What looking at the shared object cache with ldconfig -r, I find > > libelf.so.2 as well as > > libkvm.so.6 listed. > > > > What is this weird message? > > =20 >=20 > > locate libelf.so.2 =20 > ... > /usr/lib/libelf.so.2 > ... > > locate libkvm.so.6 =20 > /lib/libkvm.so.6 > ... > > ldd /lib/libkvm.so.6 =20 > /lib/libkvm.so.6: > libc.so.7 =3D> /lib/libc.so.7 (0x800822000) >=20 > It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it > come from? ldd /lib/libkvm.so.6 /lib/libkvm.so.6: libelf.so.2 =3D> /usr/lib/libelf.so.2 (0x80120f000) libc.so.7 =3D> /lib/libc.so.7 (0x800823000) This is only on one spefici box :-( >=20 >=20 > > Regards, > > > > oh > > =20 >=20 >=20 >=20 --Sig_/fMJBZkEvcCMTruePObnRxV8 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXBGzAAoJEOgBcD7A/5N88LcH/21ia//GeuO9MlIvq20PL2v/ eliJhIvA8BhOi4xmoS9xPLFcTKl4Q8GKgM7p9sBoBJR63jgCf9RDh2XelnmuHmuE A4qcD4HnuttWBQ0zTFl7ii+dFZ5dC9LBPz+ZZxmpXo3kIEJFu037wqkllFkDdaaU dyYzbF9wsNYRyq2QFbRi7oFrH/2EnOCV1NSwMrd7dgcxy37EB4rDIjlBexiZ4nbX QhhZUVjLMTU8EpYqSSnfQCzI8c6rl5nj5x6Fn7IuaT/R466kIsCc4+FrVMlmkux0 rmXTuIJPmcCs+ibSAbkEzMNsyLgiWLGSHHB0fjYZJpdDtMSPw9cQtinacnnpY+8= =s+sM -----END PGP SIGNATURE----- --Sig_/fMJBZkEvcCMTruePObnRxV8-- From owner-freebsd-current@freebsd.org Mon Nov 30 09:21:38 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB936A3C77A for ; Mon, 30 Nov 2015 09:21:38 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 873E117F0 for ; Mon, 30 Nov 2015 09:21:38 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a3KeO-001Upl-Aj>; Mon, 30 Nov 2015 10:21:36 +0100 Received: from f052164138.adsl.alicedsl.de ([78.52.164.138] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a3KeN-002k0o-QF>; Mon, 30 Nov 2015 10:21:36 +0100 Date: Mon, 30 Nov 2015 10:19:50 +0100 From: "O. Hartmann" To: Henry Hu Cc: FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130101950.21c77e73.ohartman@zedat.fu-berlin.de> In-Reply-To: <20151130100658.1c18fe83.ohartman@zedat.fu-berlin.de> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130100658.1c18fe83.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/2jxgr2w5tqy7d0NJLuzMX3T"; protocol="application/pgp-signature" X-Originating-IP: 78.52.164.138 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 09:21:38 -0000 --Sig_/2jxgr2w5tqy7d0NJLuzMX3T Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Mon, 30 Nov 2015 10:06:58 +0100 "O. Hartmann" schrieb: > Am Sun, 29 Nov 2015 15:11:42 -0500 > Henry Hu schrieb: >=20 > > On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann > > wrote: > > =20 > > > > > > On most recent CURRENT (Revision: 291458), ob booting I receive this = on > > > the console: > > > > > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > > > > > What looking at the shared object cache with ldconfig -r, I find > > > libelf.so.2 as well as > > > libkvm.so.6 listed. > > > > > > What is this weird message? > > > =20 > > =20 > > > locate libelf.so.2 =20 > > ... > > /usr/lib/libelf.so.2 > > ... =20 > > > locate libkvm.so.6 =20 > > /lib/libkvm.so.6 > > ... =20 > > > ldd /lib/libkvm.so.6 =20 > > /lib/libkvm.so.6: > > libc.so.7 =3D> /lib/libc.so.7 (0x800822000) > >=20 > > It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it > > come from? =20 >=20 > ldd /lib/libkvm.so.6 > /lib/libkvm.so.6: > libelf.so.2 =3D> /usr/lib/libelf.so.2 (0x80120f000) > libc.so.7 =3D> /lib/libc.so.7 (0x800823000) >=20 >=20 > This is only on one spefici box :-( Sorry, have to correct my statement: this is the case on every box running CURRENT. > >=20 > > =20 > > > Regards, > > > > > > oh > > > =20 > >=20 > >=20 > > =20 >=20 >=20 --Sig_/2jxgr2w5tqy7d0NJLuzMX3T Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXBS2AAoJEOgBcD7A/5N8hPAIAKuZ1ztbJTgCfmMdSjgZMP1x AVmS6zv+2fUi4aysbmW9PrgapSqp8GsOFdrvNUesSmjouZ30Zf+zvgLqgLUSST8W HdxWSb902ohpMPSpssXAWNjXShW5BkdsI85oKbNURbqEnOCodW3zapEdDhuzH3LU P+LgcJD8dVfgYx7iDqb6PdN0wxXHXKJY5zpZppBPYXbYXiRP1KBSDQRmFaG9DNXh hJvpzi/sqK6N6dauHg/cZCDoyfPOSca2DASVCCGVUbMX+UjeI1rZGjpBiXkmvkJl qv87rIqM51LrIC4dhmzIqxuk/Ytp5uC2Mn0rjMwIENt9pcob0yEC809O0Y7AsHU= =+vId -----END PGP SIGNATURE----- --Sig_/2jxgr2w5tqy7d0NJLuzMX3T-- From owner-freebsd-current@freebsd.org Mon Nov 30 09:39:57 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C65DA3CE52 for ; Mon, 30 Nov 2015 09:39:57 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 169A6155E; Mon, 30 Nov 2015 09:39:56 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tAU9dp0c080024 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 30 Nov 2015 11:39:51 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tAU9dp0c080024 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tAU9dnxY080023; Mon, 30 Nov 2015 11:39:49 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 30 Nov 2015 11:39:49 +0200 From: Konstantin Belousov To: "O. Hartmann" Cc: Henry Hu , FreeBSD CURRENT , jhb@freebsd.org Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130093949.GH3448@kib.kiev.ua> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130080759.GG3448@kib.kiev.ua> <20151130100446.1af41a37.ohartman@zedat.fu-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151130100446.1af41a37.ohartman@zedat.fu-berlin.de> User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 09:39:57 -0000 On Mon, Nov 30, 2015 at 10:04:46AM +0100, O. Hartmann wrote: > Am Mon, 30 Nov 2015 10:07:59 +0200 > Konstantin Belousov schrieb: > > > On Sun, Nov 29, 2015 at 03:11:42PM -0500, Henry Hu wrote: > > > On Sun, Nov 29, 2015 at 3:07 PM, O. Hartmann > > > wrote: > > > > > > > > > > > On most recent CURRENT (Revision: 291458), ob booting I receive this on > > > > the console: > > > > > > > > Shared object "libelf.so.2" not found, required by "libkvm.so.6" > > > > > > > > What looking at the shared object cache with ldconfig -r, I find > > > > libelf.so.2 as well as > > > > libkvm.so.6 listed. > > > > > > > > What is this weird message? > > > > > > > > > > > locate libelf.so.2 > > > ... > > > /usr/lib/libelf.so.2 > > > ... > > > > locate libkvm.so.6 > > > /lib/libkvm.so.6 > > > ... > > > > ldd /lib/libkvm.so.6 > > > /lib/libkvm.so.6: > > > libc.so.7 => /lib/libc.so.7 (0x800822000) > > > > > > It's strange that your libkvm.so.6 depends on libelf.so.2. Where does it > > > come from? > > > > Does the original reporter have root and /usr volumes split ? > > Show the 'mount' output on the affected machine. > > > Yes, I have split them, of course. / is a partition, /usr is also a partition, also > /var and /usr/local. > > In fstab, / is the first, /usr the second getting mounted. > Just to explicitely state the obvious, the problem is that libkvm grown the dependency on libelf after r291406, and libelf lives in /usr. libkvm is used before /usr is mounted. I do not know what is the best way to handle it. Most simple is to move libelf to /lib. How feasible is to move libkvm to /usr/lib (and all stuff in / which needs libkvm) is the open question. From owner-freebsd-current@freebsd.org Mon Nov 30 10:05:31 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D41CA3C537; Mon, 30 Nov 2015 10:05:31 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 1BB0E147E; Mon, 30 Nov 2015 10:05:31 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 25F351AE2; Mon, 30 Nov 2015 10:05:30 +0000 (UTC) Date: Mon, 30 Nov 2015 10:05:28 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: ngie@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1109953304.289.1448877930580.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1820644766.285.1448870708904.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1820644766.285.1448870708904.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1801 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 10:05:31 -0000 FreeBSD_HEAD_i386 - Build #1801 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1801/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1801/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1801/cons= ole Change summaries: 291479 by adrian: add missing lib80211 include. 291472 by ngie: Fix the build ichan is only used if AH_DEBUG_ALQ if defined Pointyhat to: adrian The end of the build log: [...truncated 111691 lines...] ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211mgtrate': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf127): = undefined reference to `lib80211_get80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0xf36f): more undefined references to `lib80211_get80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211fragthreshold': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf5c6): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211burst': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf624): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211bmissthreshold': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf6c6): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211shortgi': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf72d): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf77d): = undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf7c0): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf8aa): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa00): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa6d): = undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfab0): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb3d): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb94): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfbf4): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfc54): = undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0xfcb4): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe1c): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe3b): = undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe6d): = undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfeab): = undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfee2): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xff00): = undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xffdc): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfffb): = undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1002d):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1006b):= undefined reference to `lib80211_get80211' --- all_subdir_secure --- --- xts128.po --- --- all_subdir_rescue --- ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': --- all_subdir_secure --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/modes/xts128.c -o xts128.po --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10146):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x101c6):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10244):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x102dc):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10355):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x103b4):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10414):= undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x104a3): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x115eb):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11625):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11c16):= undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x135db):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1370b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x138b9):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x13d98):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14866):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14885):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148c7):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148e7):= undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14b15):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d04):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d2b):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e24):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e84):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ec4):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14eee):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f11):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f6c):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fb9):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fdc):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ff0):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1529d):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15a45):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15d38):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15ee5):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15f4d):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15fc3):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1600a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16053):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x160a9):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16131):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1619c):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x161ff): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x165e4):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16622):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x166b2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1670d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16742):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1679b):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x167de): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1695f):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ba0):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16bbc):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c0d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c82):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16d33):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ed2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f18):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f9a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17008):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1704e):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x170af): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1795c):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179a9):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179e6):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17a4b):= undefined reference to `lib80211_get80211val' --- all_subdir_secure --- --- ghash-x86.po --- as --noexecstack -o ghash-x86.po /usr/src/secure/lib/libcrypto/i386/ghash-= x86.s --- o_names.po --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/objects/o_names.c -o o_names.po --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [rescue] Error code 1 make[5]: stopped in /usr/obj/usr/src/rescue/rescue 1 error make[5]: stopped in /usr/obj/usr/src/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /usr/src/rescue/rescue 1 error make[4]: stopped in /usr/src/rescue/rescue *** [all] Error code 2 make[3]: stopped in /usr/src/rescue 1 error make[3]: stopped in /usr/src/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /usr/src --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/sbin/ipf/ipftest *** [all_subdir_ipftest] Error code 2 make[4]: stopped in /usr/src/sbin/ipf 1 error make[4]: stopped in /usr/src/sbin/ipf *** [all_subdir_ipf] Error code 2 make[3]: stopped in /usr/src/sbin 1 error make[3]: stopped in /usr/src/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /usr/src --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /usr/src/secure/lib 1 error make[4]: stopped in /usr/src/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /usr/src/secure 1 error make[3]: stopped in /usr/src/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /usr/src --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/src/lib/libsqlite3 *** [all_subdir_libsqlite3] Error code 2 make[3]: stopped in /usr/src/lib 1 error make[3]: stopped in /usr/src/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /usr/src 4 errors make[2]: stopped in /usr/src *** [everything] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson7906245664714499964.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 10:19:23 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB3CEA3CA43 for ; Mon, 30 Nov 2015 10:19:22 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id CF0FC1DD5; Mon, 30 Nov 2015 10:19:22 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 1F8111AFC; Mon, 30 Nov 2015 10:19:23 +0000 (UTC) Date: Mon, 30 Nov 2015 10:19:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: ngie@FreeBSD.org, adrian@FreeBSD.org, hselasky@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1810529494.291.1448878763095.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <389662318.283.1448868972872.JavaMail.jenkins@jenkins-9.freebsd.org> References: <389662318.283.1448868972872.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3592 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 10:19:23 -0000 FreeBSD_HEAD - Build #3592 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3592/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3592/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3592/console Change summaries: 291481 by hselasky: Add more functions and types to the LinuxKPI. MFC after: 1 week Sponsored by: Mellanox Technologies 291479 by adrian: add missing lib80211 include. 291472 by ngie: Fix the build ichan is only used if AH_DEBUG_ALQ if defined Pointyhat to: adrian 291471 by adrian: Add missing lib declaration. 291470 by adrian: Convert ifconfig to use lib80211. * remove regdomain.[ch] - it's now part of lib80211. * convert ifieee80211.c to use the ioctl routines in lib80211 and implement the "error? exit" wrapper behaviour the callers expect. The end of the build log: [...truncated 158937 lines...] _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdc7c): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211shortgi': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdcc3): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdd0d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdd3c): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xde12): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdf32): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdf9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdfcc): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe042): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe08b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe0cb): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe10b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe14b): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe25d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe27b): undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe2a5): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe2d8): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe318): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe337): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe41d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe43b): undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe465): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe498): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe56d): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe5dd): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe63b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe6ac): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe6ff): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe74b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe78b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe802): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xf7ae): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xf7e0): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xfd14): undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1170b): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x117fb): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1196f): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x11db6): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x126dc): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x126fa): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1273f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1275e): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1295b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12b2c): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12b45): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12bfd): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12c3d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12c84): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12cac): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12ccd): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d20): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d6f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d94): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12da8): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1300d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1370e): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13949): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13a95): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13af2): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13b5b): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13b9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13c03): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13c68): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13cab): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13d2e): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13d95): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13e4e): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14161): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x141c3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x141f3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14240): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1427c): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x142bf): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x143e0): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x145df): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x145f8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14644): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x146b0): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14752): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x148d8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1491b): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14994): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x149fc): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14a3f): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14a9a): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1529b): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x152df): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x15319): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x15379): undefined reference to `lib80211_get80211val' --- all_subdir_lib --- ranlib -D libprivateldns_p.a --- all_subdir_libmd --- ===> lib/libmd (all) --- md4c.po --- cc -pg -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libmd -I/builds/FreeBSD_HEAD/lib/libmd/../../sys/crypto/sha2 -DWEAK_REFS -MD -MP -MF.depend.md4c.po -MTmd4c.po -std=gnu99 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/lib/libmd/md4c.c -o md4c.po --- all_subdir_sbin --- --- ddb.8.gz --- gzip -cn /builds/FreeBSD_HEAD/sbin/ddb/ddb.8 > ddb.8.gz --- ddb --- cc -O2 -pipe -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Qunused-arguments -o ddb ddb.o ddb_capture.o ddb_script.o -lkvm --- all_subdir_devfs --- ===> sbin/devfs (all) --- devfs.o --- cc -O2 -pipe -MD -MP -MF.depend.devfs.o -MTdevfs.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/sbin/devfs/devfs.c -o devfs.o --- rule.o --- cc -O2 -pipe -MD -MP -MF.depend.rule.o -MTrule.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments -c /builds/FreeBSD_HEAD/sbin/devfs/rule.c -o rule.o --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [rescue] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/rescue 1 error make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue 1 error make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue *** [all] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/rescue 1 error make[3]: stopped in /builds/FreeBSD_HEAD/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_gnu --- 1 warning generated. --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/lib/libmd *** [all_subdir_libmd] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_gnu --- A failure has been detected in another branch of the parallel make make[8]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/utils/hpftodit *** [all_subdir_hpftodit] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/utils 1 error make[7]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/utils *** [all_subdir_utils] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src 1 error make[6]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src *** [all_subdir_src] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff 1 error make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff *** [all_subdir_groff] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin 1 error make[4]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin *** [all_subdir_usr.bin] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/gnu 1 error make[3]: stopped in /builds/FreeBSD_HEAD/gnu *** [all_subdir_gnu] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sbin/devfs *** [all_subdir_devfs] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sbin 1 error make[3]: stopped in /builds/FreeBSD_HEAD/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 4 errors make[2]: stopped in /builds/FreeBSD_HEAD *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 10:36:34 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 584AFA3CF9E for ; Mon, 30 Nov 2015 10:36:34 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 188B51765 for ; Mon, 30 Nov 2015 10:36:33 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtp (envelope-from ) id <1a3Lot-0026Am-PX>; Mon, 30 Nov 2015 11:36:31 +0100 Received: from f052164138.adsl.alicedsl.de ([78.52.164.138] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (envelope-from ) id <1a3Lot-002ruP-Ft>; Mon, 30 Nov 2015 11:36:31 +0100 Date: Mon, 30 Nov 2015 11:36:30 +0100 From: "O. Hartmann" To: FreeBSD CURRENT Subject: r 291486: buildworld failure: ifieee80211.c:(.text+0xeb7b): undefined reference to Message-ID: <20151130113630.3fa9ce26.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/jC0MzwnYrx6cefrvWNIeVLj"; protocol="application/pgp-signature" X-Originating-IP: 78.52.164.138 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 10:36:34 -0000 --Sig_/jC0MzwnYrx6cefrvWNIeVLj Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable It is hard to build a biuldworld buildkernel system these days :-( [...] --- all_subdir_secure --- cc -pg -O2 -pipe -O3 -O3 -pipe -march=3Dnative -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl -DTERMIOS -DANSI_SO= URCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2= -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_= BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA51= 2_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/src/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std= =3Dgnu89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-pa= rameter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/engine/eng_= table.c -o eng_table.po --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xeb7b): undefined = reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xeba5): undefined = reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xebd8): undefined = reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xec18): undefined = reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xec37): undefined = reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xed1d): undefined = reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xed3b): undefined = reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xed65): undefined = reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xed98): undefined = reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set8021= 1location': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xee6d): = undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconf= ig.lo set80211ecm': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0xeedd): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hid= e$$ ifconfig.lo set80211dotd': --- all_subdir_sbin --- --- all_subdir_kldstat -= -- =3D=3D=3D> sbin/kldstat (all) --- all_subdir_rescue --- --Sig_/jC0MzwnYrx6cefrvWNIeVLj Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXCauAAoJEOgBcD7A/5N80ScIAI97NCnBfRia0Uqk9bY4sAlM 7Mlt6UDniHiQIB2kZ/0hBi5lMkodjidYFNiZAZqe4jz/CVTGXVfyNiVXMMH5ucXb JOrn6g4prZxvWq9gRcyOnhtYwjVc2W7G8Ii24nf6aK/a2wHOuBrwLO/VauvpVC9w UkmqoKPlFy0qYmHBtAAe/eQY+77Md4AtpP1eEVBs4ws03CyjVgSLnZ2pH91Q4n8k UpszhiRL93J+kzMDCWnEWTTEUHHRCiWkkljQJbWTK/B9ylkdUk7UWXXx70cGWCxW cDq7J8GdkCuTHql+T2iSUCaH62dK3CtK6tcqN0+W4jIphG0rtJFc6y2aL9ziVyg= =N5tZ -----END PGP SIGNATURE----- --Sig_/jC0MzwnYrx6cefrvWNIeVLj-- From owner-freebsd-current@freebsd.org Mon Nov 30 10:57:00 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACDC2A244FA for ; Mon, 30 Nov 2015 10:57:00 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 942C61088; Mon, 30 Nov 2015 10:57:00 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id E1F201B0A; Mon, 30 Nov 2015 10:57:00 +0000 (UTC) Date: Mon, 30 Nov 2015 10:56:58 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: kib@FreeBSD.org, ngie@FreeBSD.org, melifaro@FreeBSD.org, adrian@FreeBSD.org, hselasky@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <45216569.295.1448881020894.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <50511682.279.1448859179337.JavaMail.jenkins@jenkins-9.freebsd.org> References: <50511682.279.1448859179337.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #851 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 10:57:00 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #851 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/851/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 851/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/8= 51/console Change summaries: 291486 by kib: Shorten conditional branch code. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation 291485 by kib: Remove unneeded instructions. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation 291481 by hselasky: Add more functions and types to the LinuxKPI. MFC after:=091 week Sponsored by:=09Mellanox Technologies 291479 by adrian: add missing lib80211 include. 291472 by ngie: Fix the build ichan is only used if AH_DEBUG_ALQ if defined Pointyhat to: adrian 291471 by adrian: Add missing lib declaration. 291470 by adrian: Convert ifconfig to use lib80211. * remove regdomain.[ch] - it's now part of lib80211. * convert ifieee80211.c to use the ioctl routines in lib80211 and implement the "error? exit" wrapper behaviour the callers expect. 291469 by adrian: fix ht/40 configuration for ar9331 (hornet). The synth programming here requires the real centre frequency, which for HT20 channels is the normal channel, but HT40 is /not/ the primary channel. Everything else was using 'freq', which is the correct centre frequency, but the hornet config was using 'ichan' to do the lookup which was also the primary channel. So, modify the HAL call that does the mapping to take a frequency in MHz and return the channel number. Tested: * Carambola 2, AR9331, tested both HT/20 and HT/40 operation. 291468 by melifaro: Remove in_setifarnh definition. 291467 by melifaro: Move flowtable rte checks to separate function. 291466 by melifaro: Add new rt_foreach_fib_walk_del() function for deleting route entries by filter function instead of picking into routing table details in each consumer. Remove now-unused rt_expunge() (eliminating last external RTF_RNH_LOCKED user). This simplifies future nexthops/mulitipath changes and rtrequest1_fib() locking refactoring. Actual changes: Add "rt_chain" field to permit rte grouping while doing batched delete from routing table (thus growing rte 200->208 on amd64). Add "rti_filter" / "rti_filterdata" / "rti_spare" fields to rt_addrinfo to pass filter function to various routing subsystems in standard way. Convert all rt_expunge() customers to new rt_addinfo-based api and eliminat= e rt_expunge(). 291465 by adrian: Add lib80211 to include path. (This commit was missing from my lib80211 commit.) The end of the build log: [...truncated 161795 lines...] /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o dhcl= ient.lo dhclient_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBS= D_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dh= client/dhclient.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient= /clparse.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_= gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/alloc.= o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/re= scue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/dispatch.o /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/r= escue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/hash.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/bpf.o /builds/FreeBSD_HEAD_amd6= 4_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD= _HEAD_amd64_gcc4.9/sbin/dhclient/options.o /builds/FreeBSD_HEAD_amd64_gcc4.= 9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_a= md64_gcc4.9/sbin/dhclient/tree.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/buil= ds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.= 9/sbin/dhclient/conflex.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/= dhclient/errwarn.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEA= D_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclien= t/inet.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/packet.o= /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/res= cue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/convert.o /build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/res= cue//builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/tables.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/sbin/dhclient/parse.o /builds/FreeBSD_HEAD_am= d64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeB= SD_HEAD_amd64_gcc4.9/sbin/dhclient/privsep.o crunchide -k _crunched_dhclient_stub dhclient.lo --- head.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o head= .lo head_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_a= md64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/head/he= ad.o crunchide -k _crunched_head_stub head.lo --- mt.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o mt.l= o mt_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/mt/mt.o crunchide -k _crunched_mt_stub mt.lo --- nc.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o nc.l= o nc_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/nc/netcat.o= /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/res= cue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/nc/atomicio.o /builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescu= e//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/nc/socks.o crunchide -k _crunched_nc_stub nc.lo --- sed.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o sed.= lo sed_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/sed/compi= le.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/sed/main.o /builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/resc= ue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/sed/misc.o /builds/FreeBSD_HEA= D_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/F= reeBSD_HEAD_amd64_gcc4.9/usr.bin/sed/process.o crunchide -k _crunched_sed_stub sed.lo --- tail.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o tail= .lo tail_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_a= md64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tail/fo= rward.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc= 4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tail/misc.o /bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/= rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tail/read.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tail/reverse.o /builds/FreeBSD_HEAD_a= md64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Free= BSD_HEAD_amd64_gcc4.9/usr.bin/tail/tail.o crunchide -k _crunched_tail_stub tail.lo --- tee.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o tee.= lo tee_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tee/tee.o crunchide -k _crunched_tee_stub tee.lo --- gzip.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o gzip= .lo gzip_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_a= md64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/gzip/gz= ip.o crunchide -k _crunched_gzip_stub gzip.lo --- bzip2.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o bzip= 2.lo bzip2_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/bzip2= /bzip2.o crunchide -k _crunched_bzip2_stub bzip2.lo --- less.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o less= .lo less_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_a= md64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/ma= in.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/screen.o /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/r= escue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/brac.o /builds/FreeBSD= _HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/ch.o /builds/FreeBSD_HEAD_amd64_g= cc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HE= AD_amd64_gcc4.9/usr.bin/less/charset.o /builds/FreeBSD_HEAD_amd64_gcc4.9/ob= j/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64= _gcc4.9/usr.bin/less/cmdbuf.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/= FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/u= sr.bin/less/command.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/l= ess/cvt.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/decode.o= /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/res= cue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/edit.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/filename.o /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds= /FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/forwback.o /builds/FreeBSD_HEAD_amd= 64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBS= D_HEAD_amd64_gcc4.9/usr.bin/less/help.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/less/ifile.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/= FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/u= sr.bin/less/input.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/les= s/jump.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/line.o /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue= /rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/linenum.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/lsystem.o /builds/FreeBSD_HE= AD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/= FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/mark.o /builds/FreeBSD_HEAD_amd64_gc= c4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEA= D_amd64_gcc4.9/usr.bin/less/optfunc.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj= /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_= gcc4.9/usr.bin/less/option.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/F= reeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/us= r.bin/less/opttbl.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/les= s/os.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/output.o /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue= /rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/pattern.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/position.o /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds= /FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/prompt.o /builds/FreeBSD_HEAD_amd64= _gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_= HEAD_amd64_gcc4.9/usr.bin/less/search.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/less/signal.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds= /FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/= usr.bin/less/tags.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/les= s/ttyin.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/less/version.= o crunchide -k _crunched_less_stub less.lo --- xz.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o xz.l= o xz_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/args.o /= builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescu= e/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/coder.o /builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/file_io.o /builds/FreeBSD_HEAD_am= d64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeB= SD_HEAD_amd64_gcc4.9/usr.bin/xz/hardware.o /builds/FreeBSD_HEAD_amd64_gcc4.= 9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_a= md64_gcc4.9/usr.bin/xz/list.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/= FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/u= sr.bin/xz/main.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_= amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/mes= sage.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/mytime.o /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/r= escue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/options.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/signals.o /builds/FreeBSD_HEAD_amd= 64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBS= D_HEAD_amd64_gcc4.9/usr.bin/xz/suffix.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/xz/util.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Fre= eBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.= bin/xz/tuklib_open_stdxxx.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Fr= eeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr= .bin/xz/tuklib_progname.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.b= in/xz/tuklib_exit.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/= tuklib_cpucores.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/tu= klib_mbstr_width.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEA= D_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/xz/t= uklib_mbstr_fw.o crunchide -k _crunched_xz_stub xz.lo --- tar.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o tar.= lo tar_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar/bsdta= r.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/= rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar/cmdline.o /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/re= scue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar/creation_set.o /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue= //builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar/read.o /builds/FreeBSD_HEAD_= amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Fre= eBSD_HEAD_amd64_gcc4.9/usr.bin/tar/subst.o /builds/FreeBSD_HEAD_amd64_gcc4.= 9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_a= md64_gcc4.9/usr.bin/tar/util.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds= /FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/= usr.bin/tar/write.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar= /err.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/tar/line_reader.= o crunchide -k _crunched_tar_stub tar.lo --- vi.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o vi.l= o vi_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/cl_funcs= .o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/r= escue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/cl_main.o /builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/resc= ue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/cl_read.o /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds= /FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/cl_screen.o /builds/FreeBSD_HEAD_amd6= 4_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD= _HEAD_amd64_gcc4.9/usr.bin/vi/cl_term.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/vi/conv.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Fre= eBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.= bin/vi/cut.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd6= 4_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/delete.= o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/re= scue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/encoding.o /builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/resc= ue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/exf.o /builds/FreeBSD_HEAD_= amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Fre= eBSD_HEAD_amd64_gcc4.9/usr.bin/vi/key.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/vi/line.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Fre= eBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.= bin/vi/log.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd6= 4_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/main.o = /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/resc= ue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/mark.o /builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/msg.o /builds/FreeBSD_HEAD_amd64_= gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_H= EAD_amd64_gcc4.9/usr.bin/vi/options.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj= /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_= gcc4.9/usr.bin/vi/options_f.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/= FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/u= sr.bin/vi/put.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_a= md64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/reco= ver.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.= 9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/screen.o /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/re= scue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/search.o /builds/FreeBSD_= HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//build= s/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/seq.o /builds/FreeBSD_HEAD_amd64_gcc= 4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD= _amd64_gcc4.9/usr.bin/vi/util.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/build= s/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9= /usr.bin/vi/ex.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_= amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_= abbrev.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_append.o= /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/res= cue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_args.o /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue= //builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_argv.o /builds/FreeBSD_HEA= D_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/F= reeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_at.o /builds/FreeBSD_HEAD_amd64_gcc4= .9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_= amd64_gcc4.9/usr.bin/vi/ex_bang.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bui= lds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4= .9/usr.bin/vi/ex_cd.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/v= i/ex_cmd.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_= gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_cscope= .o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/r= escue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_delete.o /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/re= scue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_display.o /builds/Free= BSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//b= uilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_edit.o /builds/FreeBSD_HEAD_a= md64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Free= BSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_equal.o /builds/FreeBSD_HEAD_amd64_gcc4= .9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_= amd64_gcc4.9/usr.bin/vi/ex_file.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bui= lds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4= .9/usr.bin/vi/ex_filter.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.b= in/vi/ex_global.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex= _init.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc= 4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_join.o /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue= /rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_map.o /builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_mark.o /builds/FreeBSD_HEAD_am= d64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeB= SD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_mkexrc.o /builds/FreeBSD_HEAD_amd64_gcc4= .9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_= amd64_gcc4.9/usr.bin/vi/ex_move.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bui= lds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4= .9/usr.bin/vi/ex_open.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBS= D_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin= /vi/ex_preserve.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex= _print.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_put.o /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue= /rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_quit.o /builds/Free= BSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//b= uilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_read.o /builds/FreeBSD_HEAD_a= md64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Free= BSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_screen.o /builds/FreeBSD_HEAD_amd64_gcc= 4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD= _amd64_gcc4.9/usr.bin/vi/ex_script.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/= builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_g= cc4.9/usr.bin/vi/ex_set.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/Free= BSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.b= in/vi/ex_shell.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_= amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_= shift.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc= 4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_source.o = /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/resc= ue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_stop.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_subst.o /builds/FreeBSD_HEA= D_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/F= reeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_tag.o /builds/FreeBSD_HEAD_amd64_gcc= 4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD= _amd64_gcc4.9/usr.bin/vi/ex_txt.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bui= lds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4= .9/usr.bin/vi/ex_undo.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBS= D_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin= /vi/ex_usage.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_am= d64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_ut= il.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_version.o /b= uilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue= /rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_visual.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_write.o /builds/FreeBSD_HEA= D_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/F= reeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/ex_yank.o /builds/FreeBSD_HEAD_amd64_gc= c4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEA= D_amd64_gcc4.9/usr.bin/vi/ex_z.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/buil= ds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.= 9/usr.bin/vi/getc.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/= v_at.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_ch.o /build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/res= cue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_cmd.o /builds/FreeBSD_HE= AD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/= FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_delete.o /builds/FreeBSD_HEAD_amd64_= gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_H= EAD_amd64_gcc4.9/usr.bin/vi/v_ex.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc= 4.9/usr.bin/vi/v_increment.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/F= reeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/us= r.bin/vi/v_init.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_= itxt.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_left.o /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/r= escue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_mark.o /builds/FreeBSD= _HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_match.o /builds/FreeBSD_HEAD_amd6= 4_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD= _HEAD_amd64_gcc4.9/usr.bin/vi/v_paragraph.o /builds/FreeBSD_HEAD_amd64_gcc4= .9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_= amd64_gcc4.9/usr.bin/vi/v_put.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/build= s/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9= /usr.bin/vi/v_redraw.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD= _HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/= vi/v_replace.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_am= d64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_rig= ht.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_screen.o /bui= lds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/r= escue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_scroll.o /builds/FreeB= SD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_search.o /builds/FreeBSD_HEAD_a= md64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Free= BSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_section.o /builds/FreeBSD_HEAD_amd64_gcc= 4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD= _amd64_gcc4.9/usr.bin/vi/v_sentence.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj= /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_= gcc4.9/usr.bin/vi/v_status.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/F= reeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/us= r.bin/vi/v_txt.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_= amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_u= lcase.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc= 4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_undo.o /bu= ilds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/= rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_util.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_word.o /builds/FreeBSD_HEAD_amd6= 4_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD= _HEAD_amd64_gcc4.9/usr.bin/vi/v_xchar.o /builds/FreeBSD_HEAD_amd64_gcc4.9/o= bj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd6= 4_gcc4.9/usr.bin/vi/v_yank.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/F= reeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/us= r.bin/vi/v_z.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_am= d64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/v_zex= it.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9= /rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/vi.o /builds/Fr= eeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/= /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/vs_line.o /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Fr= eeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/vs_msg.o /builds/FreeBSD_HEAD_amd64_gcc4= .9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_= amd64_gcc4.9/usr.bin/vi/vs_refresh.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/= builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_g= cc4.9/usr.bin/vi/vs_relative.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds= /FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/= usr.bin/vi/vs_smap.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi= /vs_split.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/regcomp.= o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/re= scue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/regerror.o /builds= /FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/resc= ue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/regexec.o /builds/FreeBSD_H= EAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds= /FreeBSD_HEAD_amd64_gcc4.9/usr.bin/vi/regfree.o --- all_subdir_secure --- --- bn_kron.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_kron.po -MTbn_kron.po -std=3Dgnu89 -fstack-protector= -strong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib= /libcrypto/../../../crypto/openssl/crypto/bn/bn_kron.c -o bn_kron.po --- all_subdir_rescue --- crunchide -k _crunched_vi_stub vi.lo --- id.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o id.l= o id_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/id/id.o crunchide -k _crunched_id_stub id.lo --- iscsictl.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o iscs= ictl.lo iscsictl_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBS= D_HEAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin= /iscsictl/iscsictl.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/is= csictl/periphs.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_= amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/iscsic= tl/parse.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_= gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/iscsictl/tok= en.o crunchide -k _crunched_iscsictl_stub iscsictl.lo --- zdb.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o zdb.= lo zdb_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/cddl/usr.sbin/zdb= /zdb.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4= .9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/cddl/usr.sbin/zdb/zdb_il= .o crunchide -k _crunched_zdb_stub zdb.lo --- chroot.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o chro= ot.lo chroot_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/ch= root/chroot.o crunchide -k _crunched_chroot_stub chroot.lo --- chown.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o chow= n.lo chown_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD= _amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/chow= n/chown.o crunchide -k _crunched_chown_stub chown.lo --- iscsid.lo --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -nostdlib -Wl,-dc -r -o iscs= id.lo iscsid_stub.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/is= csid/chap.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64= _gcc4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/dis= covery.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/iscsid= .o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/r= escue/rescue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/keys.o /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/re= scue//builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/log.o /builds/FreeBS= D_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//bui= lds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/login.o /builds/FreeBSD_HEAD_= amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue//builds/Fre= eBSD_HEAD_amd64_gcc4.9/usr.sbin/iscsid/pdu.o --- all_subdir_secure --- --- bn_lib.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_lib.po -MTbn_lib.po -std=3Dgnu89 -fstack-protector-s= trong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto/../../../crypto/openssl/crypto/bn/bn_lib.c -o bn_lib.po --- all_subdir_rescue --- crunchide -k _crunched_iscsid_stub iscsid.lo --- rescue --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -static -o rescue rescue.o c= at.lo chflags.lo chio.lo chmod.lo cp.lo date.lo dd.lo df.lo echo.lo ed.lo e= xpr.lo getfacl.lo hostname.lo kenv.lo kill.lo ln.lo ls.lo mkdir.lo mv.lo pk= ill.lo ps.lo pwd.lo realpath.lo rm.lo rmdir.lo setfacl.lo sh.lo sleep.lo st= ty.lo sync.lo test.lo rcp.lo csh.lo badsect.lo camcontrol.lo ccdconfig.lo c= lri.lo devfs.lo dmesg.lo dump.lo dumpfs.lo dumpon.lo fsck.lo fsck_ffs.lo fs= ck_msdosfs.lo fsdb.lo fsirand.lo gbde.lo geom.lo ifconfig.lo init.lo kldcon= fig.lo kldload.lo kldstat.lo kldunload.lo ldconfig.lo md5.lo mdconfig.lo md= mfs.lo mknod.lo mount.lo mount_cd9660.lo mount_msdosfs.lo mount_nfs.lo moun= t_nullfs.lo mount_udf.lo mount_unionfs.lo newfs.lo newfs_msdos.lo nos-tun.l= o ping.lo reboot.lo restore.lo rcorder.lo route.lo routed.lo rtquery.lo rts= ol.lo savecore.lo spppcontrol.lo swapon.lo sysctl.lo tunefs.lo umount.lo at= mconfig.lo ping6.lo ipf.lo zfs.lo zpool.lo bsdlabel.lo fdisk.lo dhclient.lo= head.lo mt.lo nc.lo sed.lo tail.lo tee.lo gzip.lo bzip2.lo less.lo xz.lo t= ar.lo vi.lo id.lo iscsictl.lo zdb.lo chroot.lo chown.lo iscsid.lo /builds/F= reeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue= /../librescue/exec.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/rescue/rescue/../librescue/getusershell.o /builds/FreeBSD_= HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/../lib= rescue/login_class.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_H= EAD_amd64_gcc4.9/rescue/rescue/../librescue/popen.o /builds/FreeBSD_HEAD_am= d64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/../librescue/= rcmdsh.o /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gc= c4.9/rescue/rescue/../librescue/sysctl.o /builds/FreeBSD_HEAD_amd64_gcc4.9/= obj/builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue/../librescue/system.o -l= crypt -ledit -ljail -lkvm -lelf -ll -ltermcapw -lutil -lxo -lalias -lcam -l= ncursesw -ldevstat -lipsec -llzma -lavl -lzpool -lzfs_core -lzfs -lnvpair -= lpthread -luutil -lumem -lgeom -lbsdxml -lkiconv -lmt -lsbuf -lufs -lz -lbz= 2 -larchive -lcrypto -lmd -lm --- all_subdir_sbin --- --- pass1.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/sbin/fsdb/../fsck_ffs -MD -MP -MF.depend.pass1.o -MTpas= s1.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-form= at-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64= _gcc4.9/sbin/fsdb/../fsck_ffs/pass1.c -o pass1.o --- all_subdir_secure --- --- bn_mod.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_mod.po -MTbn_mod.po -std=3Dgnu89 -fstack-protector-s= trong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto/../../../crypto/openssl/crypto/bn/bn_mod.c -o bn_mod.po --- all_subdir_sbin --- --- pass1b.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/sbin/fsdb/../fsck_ffs -MD -MP -MF.depend.pass1b.o -MTpa= ss1b.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-fo= rmat-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd= 64_gcc4.9/sbin/fsdb/../fsck_ffs/pass1b.c -o pass1b.o --- pass2.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/sbin/fsdb/../fsck_ffs -MD -MP -MF.depend.pass2.o -MTpas= s2.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-form= at-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64= _gcc4.9/sbin/fsdb/../fsck_ffs/pass2.c -o pass2.o --- all_subdir_secure --- --- bn_mont.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_mont.po -MTbn_mont.po -std=3Dgnu89 -fstack-protector= -strong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib= /libcrypto/../../../crypto/openssl/crypto/bn/bn_mont.c -o bn_mont.po --- bn_mpi.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_mpi.po -MTbn_mpi.po -std=3Dgnu89 -fstack-protector-s= trong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto/../../../crypto/openssl/crypto/bn/bn_mpi.c -o bn_mpi.po --- all_subdir_sbin --- --- pass3.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/sbin/fsdb/../fsck_ffs -MD -MP -MF.depend.pass3.o -MTpas= s3.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-form= at-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64= _gcc4.9/sbin/fsdb/../fsck_ffs/pass3.c -o pass3.o --- all_subdir_secure --- --- bn_mul.po --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -pg -O2 -pipe -I/builds/F= reeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl -DTER= MIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN = -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -D= OPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM = -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/builds/= FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../= crypto/openssl/crypto -I/builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcry= pto/../../../crypto/openssl/crypto/asn1 -I/builds/FreeBSD_HEAD_amd64_gcc4.9= /secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/builds/FreeBSD_= HEAD_amd64_gcc4.9/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes= -MD -MP -MF.depend.bn_mul.po -MTbn_mul.po -std=3Dgnu89 -fstack-protector-s= trong -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/l= ibcrypto/../../../crypto/openssl/crypto/bn/bn_mul.c -o bn_mul.po --- all_subdir_sbin --- --- pass4.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/sbin/fsdb/../fsck_ffs -MD -MP -MF.depend.pass4.o -MTpas= s4.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-form= at-y2k -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64= _gcc4.9/sbin/fsdb/../fsck_ffs/pass4.c -o pass4.o --- all_subdir_rescue --- nc.lo: In function `_$$hide$$ nc.lo main': (.text.startup+0xca8): warning: warning: mktemp() possibly used unsafely; c= onsider using mkstemp() ifconfig.lo: In function `_$$hide$$ ifconfig.lo getregdata': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x7fc5): undefined reference to = `lib80211_alloc_regdata' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x8014): undefined reference to = `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x808c): undefined reference to = `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getregdomain': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x816a): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x820d): undefined reference to = `lib80211_country_findbyname' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x8299): undefined reference to = `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x82fd): undefined reference to = `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x833e): undefined reference to = `lib80211_country_findbycc' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x83ac): undefined reference to = `lib80211_regdomain_findbysku' ifconfig.lo: In function `_$$hide$$ ifconfig.lo gettxparams': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x842a): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getroam': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x858a): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getdevcaps': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x86bc): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo gethtconf.part.37': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x86f4): undefined reference to = `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x876f): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x8818): undefined reference to = `lib80211_get80211' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x8842): undefined reference to = `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x8b94): undefined reference to = `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x949a): undefined reference to = `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0x95ca): undefined reference to = `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xafca): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xb0ec): undefined reference to = `lib80211_country_findbycc' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xb10d): undefined reference to = `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xb19f): undefined reference to = `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xb2a8): undefined reference to = `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xc732): undefined reference to = `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_stations': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xc9e5): undefined reference to = `lib80211_get80211len' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xce98): undefined reference to = `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd11c): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd1f3): undefined reference to = `lib80211_get80211' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd248): undefined reference to = `lib80211_get80211len' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd2ab): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd2ea): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd332): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd372): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd3b2): undefined reference to = `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd3fd): more undefi= ned references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd628): undefined reference to = `lib80211_get80211' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd6b2): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd6f3): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd785): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd7d2): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd802): undefined reference to = `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xd84c): more undefi= ned references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xe7f9): undefined reference to = `lib80211_get80211len' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xe843): undefined reference to = `lib80211_get80211len' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xe87f): undefined reference to = `lib80211_get80211val' _$$hide$$ ifconfig.lo ifieee80211.c:(.text+0xe8cb): undefined reference to = `lib80211_get80211val' collect2: error: ld returned 1 exit status *** [rescue] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HE= AD_amd64_gcc4.9/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue/rescue *** [all] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sbin/fsdb *** [all_subdir_fsdb] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sbin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libngatm *** [all_subdir_libngatm] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 4 errors make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 11:26:00 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7424A24C5B for ; Mon, 30 Nov 2015 11:26:00 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from mail.infocus-llc.com (mail.infocus-llc.com [199.15.120.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 921881F9B; Mon, 30 Nov 2015 11:25:59 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from draco.over-yonder.net (c-75-65-60-66.hsd1.ms.comcast.net [75.65.60.66]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.tarragon.infocus-llc.com (Postfix) with ESMTPSA id 3p8PPs1DfYz1BX; Mon, 30 Nov 2015 05:25:53 -0600 (CST) Received: by draco.over-yonder.net (Postfix, from userid 100) id 3p8PPr2rcKz2CT; Mon, 30 Nov 2015 05:25:52 -0600 (CST) Date: Mon, 30 Nov 2015 05:25:52 -0600 From: "Matthew D. Fuller" To: Konstantin Belousov Cc: FreeBSD CURRENT , jhb@freebsd.org Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130112552.GZ30248@over-yonder.net> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130080759.GG3448@kib.kiev.ua> <20151130100446.1af41a37.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151130093949.GH3448@kib.kiev.ua> X-Editor: vi X-OS: FreeBSD X-Virus-Scanned: clamav-milter 0.98.7 at mail.tarragon.infocus-llc.com X-Virus-Status: Clean User-Agent: Mutt/1.5.24-fullermd.4 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 11:26:00 -0000 On Mon, Nov 30, 2015 at 11:39:49AM +0200 I heard the voice of Konstantin Belousov, and lo! it spake thus: > > I do not know what is the best way to handle it. Most simple is to > move libelf to /lib. How feasible is to move libkvm to /usr/lib (and > all stuff in / which needs libkvm) is the open question. To gild the moderately obvious, I question if we should just mask all related problems forever, by just giving up tracking and moving _everything_ into /lib. According to du -A, /usr/lib/lib*.so* on my system is 11 meg. /lib is currently 9.4, so it's only about doubling the size. /boot/kernel/kernel is 25, so the whole combined set is still smaller than the kernel itself, never mind + the modules. For that matter, everything under /usr/lib minus the .a files and the debug/ tree is still only about 33 meg, so even if the net really needs to be cast wider than lib*.so* (and it's not like we'd need to move the symlinks themselves anyway), it can't spread very far. Certainly we shouldn't be cavalier about blowing up the size of / for no reason, but we're talking a pretty small increment. Compared to the kernel debug symbols before they got moved, it's miniscule. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From owner-freebsd-current@freebsd.org Mon Nov 30 12:04:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E720AA3CBEC; Mon, 30 Nov 2015 12:04:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id CB902164A; Mon, 30 Nov 2015 12:04:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id B23891B30; Mon, 30 Nov 2015 12:04:41 +0000 (UTC) Date: Mon, 30 Nov 2015 12:04:38 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: kib@FreeBSD.org, hselasky@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <93446735.297.1448885081057.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1109953304.289.1448877930580.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1109953304.289.1448877930580.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1802 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 12:04:42 -0000 FreeBSD_HEAD_i386 - Build #1802 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1802/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1802/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1802/cons= ole Change summaries: 291486 by kib: Shorten conditional branch code. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation 291485 by kib: Remove unneeded instructions. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation 291481 by hselasky: Add more functions and types to the LinuxKPI. MFC after:=091 week Sponsored by:=09Mellanox Technologies The end of the build log: [...truncated 109310 lines...] _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfab0): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb3d): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb94): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfbf4): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfc54): = undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0xfcb4): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe1c): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe3b): = undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe6d): = undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfeab): = undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfee2): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xff00): = undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xffdc): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfffb): = undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1002d):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1006b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10146):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x101c6):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10244):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x102dc):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10355):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x103b4):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10414):= undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x104a3): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x115eb):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11625):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11c16):= undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x135db):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1370b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x138b9):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x13d98):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14866):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14885):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148c7):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148e7):= undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14b15):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d04):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d2b):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e24):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e84):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ec4):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14eee):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f11):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f6c):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fb9):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fdc):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ff0):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1529d):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15a45):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15d38):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15ee5):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15f4d):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15fc3):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1600a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16053):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x160a9):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16131):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1619c):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x161ff): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x165e4):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16622):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x166b2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1670d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16742):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1679b):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x167de): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1695f):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ba0):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16bbc):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c0d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c82):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16d33):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ed2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f18):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f9a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17008):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1704e):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x170af): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1795c):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179a9):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179e6):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17a4b):= undefined reference to `lib80211_get80211val' --- all_subdir_sbin --- --- graid.8.gz --- gzip -cn /usr/src/sbin/geom/class/raid/graid.8 > graid.8.gz --- geom_raid.so --- building shared library geom_raid.so cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn= -shared-textrel -o geom_raid.so -Wl,-soname,geom_raid.so `NM=3D'nm' NMFLA= GS=3D'' lorder geom_raid.So subr.So | tsort -q` -lmd --- all_subdir_secure --- --- str2key.po --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/des/str2key.c -o str2key.po --- all_subdir_sbin --- =3D=3D=3D> sbin/geom/class/raid3 (all) --- geom_raid3.So --- cc -fpic -DPIC -O2 -pipe -I/usr/src/sbin/geom/class/raid3/../.. -std=3D= gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y= 2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoin= ter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunu= sed-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wre= dundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-argume= nts -c /usr/src/sbin/geom/class/raid3/geom_raid3.c -o geom_raid3.So --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [rescue] Error code 1 make[5]: stopped in /usr/obj/usr/src/rescue/rescue 1 error make[5]: stopped in /usr/obj/usr/src/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /usr/src/rescue/rescue 1 error make[4]: stopped in /usr/src/rescue/rescue *** [all] Error code 2 make[3]: stopped in /usr/src/rescue 1 error make[3]: stopped in /usr/src/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /usr/src --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /usr/src/secure/lib 1 error make[4]: stopped in /usr/src/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /usr/src/secure 1 error make[3]: stopped in /usr/src/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /usr/src --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/lib/libnv/tests *** [nv_array_tests] Error code 2 make[5]: stopped in /usr/src/lib/libnv/tests 1 error make[5]: stopped in /usr/src/lib/libnv/tests *** [all] Error code 2 make[4]: stopped in /usr/src/lib/libnv 1 error make[4]: stopped in /usr/src/lib/libnv *** [all_subdir_libnv] Error code 2 make[3]: stopped in /usr/src/lib 1 error make[3]: stopped in /usr/src/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /usr/src --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/sbin/geom/class/raid3 *** [all] Error code 2 make[5]: stopped in /usr/src/sbin/geom/class 1 error make[5]: stopped in /usr/src/sbin/geom/class *** [all] Error code 2 make[4]: stopped in /usr/src/sbin/geom 1 error make[4]: stopped in /usr/src/sbin/geom *** [all_subdir_geom] Error code 2 make[3]: stopped in /usr/src/sbin 1 error make[3]: stopped in /usr/src/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /usr/src 4 errors make[2]: stopped in /usr/src *** [everything] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson8149657863189561540.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 13:38:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 432F4A3B5E4 for ; Mon, 30 Nov 2015 13:38:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 286DB1875; Mon, 30 Nov 2015 13:38:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 0A3891B77; Mon, 30 Nov 2015 13:38:41 +0000 (UTC) Date: Mon, 30 Nov 2015 13:38:39 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: kib@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1071389510.303.1448890720998.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1810529494.291.1448878763095.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1810529494.291.1448878763095.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3593 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 13:38:41 -0000 FreeBSD_HEAD - Build #3593 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3593/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3593/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3593/console Change summaries: 291486 by kib: Shorten conditional branch code. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation 291485 by kib: Remove unneeded instructions. Reviewed by:=09andrew Sponsored by:=09The FreeBSD Foundation The end of the build log: [...truncated 163170 lines...] ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xdd0d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xdd3c): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xde12): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xdf32): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xdf9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xdfcc): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe042): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe08b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe0cb): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe10b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee= 80211.c:(.text+0xe14b): more undefined references to `lib80211_set80211' fo= llow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe25d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe27b): undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe2a5): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe2d8): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe318): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe337): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe41d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe43b): undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe465): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe498): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe56d): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe5dd): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe63b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe6ac): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe6ff): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe74b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xe78b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee= 80211.c:(.text+0xe802): more undefined references to `lib80211_set80211' fo= llow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xf7ae): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xf7e0): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0xfd14): undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1170b): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x117fb): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1196f): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x11db6): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x126dc): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x126fa): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1273f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1275e): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1295b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12b2c): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12b45): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12bfd): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12c3d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12c84): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12cac): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12ccd): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12d20): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12d6f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12d94): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x12da8): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1300d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1370e): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13949): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13a95): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13af2): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13b5b): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13b9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13c03): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13c68): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13cab): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13d2e): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee= 80211.c:(.text+0x13d95): more undefined references to `lib80211_get80211val= ' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x13e4e): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14161): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x141c3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x141f3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14240): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1427c): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee= 80211.c:(.text+0x142bf): more undefined references to `lib80211_get80211val= ' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x143e0): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x145df): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x145f8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14644): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x146b0): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14752): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x148d8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1491b): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14994): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x149fc): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x14a3f): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee= 80211.c:(.text+0x14a9a): more undefined references to `lib80211_get80211val= ' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x1529b): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x152df): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x15319): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.te= xt+0x15379): undefined reference to `lib80211_get80211val' --- all_subdir_lib --- --- buildconfig --- =3D=3D=3D> lib/libmp/tests (buildconfig) --- libmp_p.a --- building profiled mp library ar -crD libmp_p.a `NM=3D'nm' NMFLAGS=3D'' lorder mpasbn.po | tsort -q`=20 ranlib -D libmp_p.a --- libmp.3.gz --- gzip -cn /builds/FreeBSD_HEAD/lib/libmp/libmp.3 > libmp.3.gz --- all_subdir_secure --- --- bio_ndef.po --- cc -pg -O2 -pipe -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../c= rypto/openssl -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_= DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -D= ECP_NISTZ256_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_= ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRL= POOL_ASM -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/secure/lib/libcrypt= o -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/crypt= o -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/crypt= o/asn1 -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/= crypto/evp -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/open= ssl/crypto/modes -MD -MP -MF.depend.bio_ndef.po -MTbio_ndef.po -std=3Dgnu89= -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-valu= e -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-= unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramet= er -Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/secure/lib/l= ibcrypto/../../../crypto/openssl/crypto/asn1/bio_ndef.c -o bio_ndef.po --- all_subdir_lib --- --- all --- =3D=3D=3D> lib/libmp/tests (all) --- legacy_test --- (cd /builds/FreeBSD_HEAD/lib/libmp/tests && DEPENDFILE=3D.depend.legacy_te= st NO_SUBDIR=3D1 make -f /builds/FreeBSD_HEAD/lib/libmp/tests/Makefile _RE= CURSING_PROGS=3D PROG=3Dlegacy_test ) --- legacy_test.o --- cc -O2 -pipe -MD -MP -MF.depend.legacy_test.legacy_test.o -MTlegacy_test= .o -std=3Dgnu99 -fstack-protector-strong -Qunused-arguments -c /builds/Fr= eeBSD_HEAD/lib/libmp/tests/legacy_test.c -o legacy_test.o --- all_subdir_secure --- --- d2i_pr.po --- cc -pg -O2 -pipe -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../c= rypto/openssl -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_= DLFCN_H -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAES_ASM -DVPAES_ASM -D= ECP_NISTZ256_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_= ASM_GF2m -DMD5_ASM -DGHASH_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRL= POOL_ASM -I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/secure/lib/libcrypt= o -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/crypt= o -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/crypt= o/asn1 -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/openssl/= crypto/evp -I/builds/FreeBSD_HEAD/secure/lib/libcrypto/../../../crypto/open= ssl/crypto/modes -MD -MP -MF.depend.d2i_pr.po -MTd2i_pr.po -std=3Dgnu89 -fs= tack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-in= t -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -W= no-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unus= ed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -= Wno-parentheses -Qunused-arguments -c /builds/FreeBSD_HEAD/secure/lib/libcr= ypto/../../../crypto/openssl/crypto/asn1/d2i_pr.c -o d2i_pr.po --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [rescue] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/res= cue 1 error make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/res= cue --- all_subdir_lib --- --- legacy_test --- --- all_subdir_rescue --- *** [rescue] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue 1 error make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue --- all_subdir_lib --- cc -O2 -pipe -std=3Dgnu99 -fstack-protector-strong -Qunused-arguments -o l= egacy_test legacy_test.o -lmp --- all_subdir_rescue --- *** [all] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/rescue 1 error make[3]: stopped in /builds/FreeBSD_HEAD/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD/lib/libmp/tests *** [legacy_test] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD/lib/libmp/tests 1 error make[5]: stopped in /builds/FreeBSD_HEAD/lib/libmp/tests *** [all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/lib/libmp 1 error make[4]: stopped in /builds/FreeBSD_HEAD/lib/libmp *** [all_subdir_libmp] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/sbin/fsdb *** [all_subdir_fsdb] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/sbin 1 error make[3]: stopped in /builds/FreeBSD_HEAD/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/secure/lib 1 error make[4]: stopped in /builds/FreeBSD_HEAD/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/secure 1 error make[3]: stopped in /builds/FreeBSD_HEAD/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 4 errors make[2]: stopped in /builds/FreeBSD_HEAD *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 14:55:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A24B0A3CAE1 for ; Mon, 30 Nov 2015 14:55:24 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 830B7181D for ; Mon, 30 Nov 2015 14:55:24 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 802D7A3CADF; Mon, 30 Nov 2015 14:55:24 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FBA4A3CADE for ; Mon, 30 Nov 2015 14:55:24 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0FA4D181C; Mon, 30 Nov 2015 14:55:23 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tAUEtI3U006456 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 30 Nov 2015 16:55:18 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tAUEtI3U006456 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tAUEtIc8006454; Mon, 30 Nov 2015 16:55:18 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 30 Nov 2015 16:55:18 +0200 From: Konstantin Belousov To: Daniel Eischen Cc: current@freebsd.org Subject: Re: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) Message-ID: <20151130145518.GK3448@kib.kiev.ua> References: <20151129102903.GD3448@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 14:55:24 -0000 On Sun, Nov 29, 2015 at 12:27:40PM -0500, Daniel Eischen wrote: > On Sun, 29 Nov 2015, Konstantin Belousov wrote: > > > On Sun, Nov 29, 2015 at 01:23:04AM -0500, Daniel Eischen wrote: > >> On Fri, 27 Nov 2015, Daniel Eischen wrote: > >> > >>> Damn, please use deischen@freebsd.org for replies. > >>> > >>> On Fri, 27 Nov 2015, Daniel Eischen wrote: > >>> > >>>> On Fri, 27 Nov 2015, Daniel Eischen wrote: > >>>> > >>>>> $ uname -a > >>>>> FreeBSD vega 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r277320: Mon Jan 19 > >>>>> 09:02:50 EST 2015 > >>>>> deischen@vega:/usr/FreeBSD/svn/obj/usr/FreeBSD/svn/src/sys/vega amd64 > >>>>> > >>>>> Upgrading to today's current, 'rm -rf /usr/obj/*; make -j8 buildworld' > >>>>> fails here: > >>>>> > >>>>> ===> lib/libc/tests/gen/execve (buildconfig) > >>>>> --- all_subdir_tests --- > >>>>> --- all_subdir_mqueue --- > >>>>> mqtest3.o: In function `main': > >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x139): undefined > >>>>> reference to `__mq_oshandle' > >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x14c): undefined > >>>>> reference to `__mq_oshandle' > >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x16c): undefined > >>>>> reference to `__mq_oshandle' > >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3e6): undefined > >>>>> reference to `__mq_oshandle' > >>>>> /usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x3f9): undefined > >>>>> reference to `__mq_oshandle' > >>>>> mqtest3.o:/usr/FreeBSD/svn/src/tests/sys/mqueue/mqtest3.c:(.text+0x40f): > >>>>> more undefined references to `__mq_oshandle' follow > >>>>> cc: error: linker command failed with exit code 1 (use -v to see > >>>>> invocation) > >>>>> > >>>>> Going to try make [-j1], next, but anyone come across this? > >>>> > >>>> Still fails. > >>>> > >>>> Why do the tests in tests/sys/mqueue/ try to use non-public APIs? > >> > >> So I found out that sometime in the last year or so, symbol versioning > >> for librt was broken and leaking symbols that shouldn't have been > >> leaked. I've just committed a fix for this. > >> > >> Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' > >> and see the non FBSD_foo symbols that shouldn't be there. > > > > I did the following on the librt from the HEAD of about month ago: > > > > pooma% ls -l netboot/sandy/usr/lib/librt.so.1 > > -r--r--r-- 1 root wheel 23704 Oct 24 23:35 netboot/sandy/usr/lib/librt.so.1 > > > > pooma% readelf -sw netboot/sandy/usr/lib/librt.so.1 | grep GLOBAL | grep -v UND | grep -v FBSDpriv | grep FBSD > > 97: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS FBSD_1.0 > > > > But I think that your commit is the good change. > > > Can you check librt.so.1 in your buildworld temporary build > environment? > > $ readelf -sW /usr/obj/usr/FreeBSD/svn/src/tmp/usr/lib/librt.so.1 \ > grep -v UND | grep GLOBAL > > There has to be a reason that tests/sys/mqueue/mqtest[3-4].c build > without error when they reference __mq_oshandle. That symbol is > not exported from librt. > > Hmm, looks like libc and libthr are also the same (leaky) in the > temporary build environment (TBE). So something broke when building > the TBE libraries. > > For r277320 on my system Jan 19, 2015, the TBE libraries must have > been built correctly because mqtests[3-4] failed with unresolved > references to __mq_oshandle. In fact, my command was wrong. I see that there are indeed a lot of symbols exported which are not versioned (this is where my command was wrong, the grep FBSD part), even for the installed librt. Your patch fixed the issue. From owner-freebsd-current@freebsd.org Mon Nov 30 16:04:45 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98153A3D9A7; Mon, 30 Nov 2015 16:04:45 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 868201F54; Mon, 30 Nov 2015 16:04:45 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id AD6AF1BCA; Mon, 30 Nov 2015 16:04:43 +0000 (UTC) Date: Mon, 30 Nov 2015 16:04:35 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: arybchik@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <727646234.309.1448899481254.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <93446735.297.1448885081057.JavaMail.jenkins@jenkins-9.freebsd.org> References: <93446735.297.1448885081057.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1803 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 16:04:45 -0000 FreeBSD_HEAD_i386 - Build #1803 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803/cons= ole Change summaries: 291488 by arybchik: sfxge: avoid TSO packets collapses bacause of not 2K aligned data Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4310 The end of the build log: [...truncated 108235 lines...] _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf5c6): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211burst': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf624): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211bmissthreshold': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf6c6): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211shortgi': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf72d): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf77d): = undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf7c0): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf8aa): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa00): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa6d): = undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfab0): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb3d): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb94): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfbf4): = undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfc54): = undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0xfcb4): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe1c): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe3b): = undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe6d): = undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfeab): = undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfee2): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xff00): = undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xffdc): = undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfffb): = undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1002d):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1006b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10146):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x101c6):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10244):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x102dc):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10355):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x103b4):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10414):= undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x104a3): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x115eb):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11625):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11c16):= undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x135db):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1370b):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x138b9):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x13d98):= undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14866):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14885):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148c7):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148e7):= undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14b15):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d04):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d2b):= undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e24):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e84):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ec4):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14eee):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f11):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f6c):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fb9):= undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fdc):= undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ff0):= undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1529d):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15a45):= undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15d38):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15ee5):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15f4d):= undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15fc3):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1600a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16053):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x160a9):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16131):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1619c):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x161ff): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x165e4):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16622):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x166b2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1670d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16742):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1679b):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x167de): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1695f):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ba0):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16bbc):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c0d):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c82):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16d33):= undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ed2):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f18):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f9a):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17008):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1704e):= undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.te= xt+0x170af): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1795c):= undefined reference to `lib80211_get80211len' --- all_subdir_secure --- --- tasn_prn.po --- --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179a9):= undefined reference to `lib80211_get80211len' --- all_subdir_secure --- cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/openss= l -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DL_= ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WORD= S -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD16= 0_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr/s= rc/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/ope= nssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/= asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/= usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3Dgn= u89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Wno-parentheses -Qunused-arguments -c /usr/src/secure/lib/libcrypto/= ../../../crypto/openssl/crypto/asn1/tasn_prn.c -o tasn_prn.po --- all_subdir_rescue --- _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179e6):= undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17a4b):= undefined reference to `lib80211_get80211val' --- all_subdir_sbin --- --- dir.o --- cc -O2 -pipe -I/usr/src/sbin/fsck_msdosfs/../fsck -std=3Dgnu99 -fstack-p= rotector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unus= ed-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wret= urn-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 -Wt= hread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variabl= e -Qunused-arguments -c /usr/src/sbin/fsck_msdosfs/dir.c -o dir.o --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [rescue] Error code 1 make[5]: stopped in /usr/obj/usr/src/rescue/rescue 1 error make[5]: stopped in /usr/obj/usr/src/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /usr/src/rescue/rescue 1 error make[4]: stopped in /usr/src/rescue/rescue *** [all] Error code 2 make[3]: stopped in /usr/src/rescue 1 error make[3]: stopped in /usr/src/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /usr/src --- all_subdir_secure --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/secure/lib/libcrypto *** [all] Error code 2 make[4]: stopped in /usr/src/secure/lib 1 error make[4]: stopped in /usr/src/secure/lib *** [all_subdir_lib] Error code 2 make[3]: stopped in /usr/src/secure 1 error make[3]: stopped in /usr/src/secure *** [all_subdir_secure] Error code 2 make[2]: stopped in /usr/src --- all_subdir_sbin --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/src/sbin/fsck_msdosfs *** [all_subdir_fsck_msdosfs] Error code 2 make[3]: stopped in /usr/src/sbin 1 error make[3]: stopped in /usr/src/sbin *** [all_subdir_sbin] Error code 2 make[2]: stopped in /usr/src --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[6]: stopped in /usr/src/lib/libnv/tests *** [dnv_tests] Error code 2 make[5]: stopped in /usr/src/lib/libnv/tests 1 error make[5]: stopped in /usr/src/lib/libnv/tests *** [all] Error code 2 make[4]: stopped in /usr/src/lib/libnv 1 error make[4]: stopped in /usr/src/lib/libnv *** [all_subdir_libnv] Error code 2 make[3]: stopped in /usr/src/lib 1 error make[3]: stopped in /usr/src/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /usr/src 4 errors make[2]: stopped in /usr/src *** [everything] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson314204738909637014.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 16:08:54 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EB6EA3DA94; Mon, 30 Nov 2015 16:08:54 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-io0-x231.google.com (mail-io0-x231.google.com [IPv6:2607:f8b0:4001:c06::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68539111D; Mon, 30 Nov 2015 16:08:54 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by ioc74 with SMTP id 74so176895458ioc.2; Mon, 30 Nov 2015 08:08:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=3caLBQWWvQf4hB9mQZl/e89Kxh9Wjpxgo8ABsbA7pbI=; b=niwE+xXxfdqoxbxjR9nZCa7gayj6++9IvYOgEQFB89gHYzFXsrgIQxMut0PeBrFylr 7UUahreTOv1E+CaW7b5RWw/gR3Wk6EcEp1l/gm+MZ78qVsmpYYydcyuXqVlWQGWHwl3z XcNyMiXTTUphwn0PtnXSil05UO26+S22CxJy37i+I7X/oXIljmsRPtK7g4tKUgKRY7Ei F0RZLagM6wTLO9BP2an1MVndr85jz7TTemEnZ2I8WN3lRYiazl1ESl/Ty1OV09CrEmmU 3ApXElc0wp7TutF/Ejhe/WIJT51On+ajvcYAylGLc16pTj6HD6XeIsZQ2BsPLoy4qgvV PiYA== MIME-Version: 1.0 X-Received: by 10.107.11.147 with SMTP id 19mr55675460iol.165.1448899732897; Mon, 30 Nov 2015 08:08:52 -0800 (PST) Received: by 10.36.217.196 with HTTP; Mon, 30 Nov 2015 08:08:52 -0800 (PST) In-Reply-To: <727646234.309.1448899481254.JavaMail.jenkins@jenkins-9.freebsd.org> References: <93446735.297.1448885081057.JavaMail.jenkins@jenkins-9.freebsd.org> <727646234.309.1448899481254.JavaMail.jenkins@jenkins-9.freebsd.org> Date: Mon, 30 Nov 2015 08:08:52 -0800 Message-ID: Subject: Re: FreeBSD_HEAD_i386 - Build #1803 - Still Failing From: Adrian Chadd To: "jenkins-admin@freebsd.org" Cc: arybchik@freebsd.org, freebsd-current , freebsd-i386@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 16:08:54 -0000 Hiya Is this a full or incremental build? it should be fixed now, but you have to delete usr/obj -a On 30 November 2015 at 08:04, wrote: > FreeBSD_HEAD_i386 - Build #1803 - Still Failing: > > Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803= / > Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803/c= hanges > Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1803/co= nsole > > Change summaries: > > 291488 by arybchik: > sfxge: avoid TSO packets collapses bacause of not 2K aligned data > > Sponsored by: Solarflare Communications, Inc. > MFC after: 2 days > Differential Revision: https://reviews.freebsd.org/D4310 > > > > The end of the build log: > > [...truncated 108235 lines...] > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf5c6)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211burst': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf624)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211bmissthreshold': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf6c6)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211shortgi': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf72d)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf77d)= : undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf7c0)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xf8aa)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa00)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfa6d)= : undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfab0)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb3d)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfb94)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfbf4)= : undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfc54)= : undefined reference to `lib80211_set80211' > ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0xfcb4): more undefined references to `lib80211_set80211' follow > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe1c)= : undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe3b)= : undefined reference to `lib80211_regdomain_findbyname' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfe6d)= : undefined reference to `lib80211_regdomain_findbysku' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfeab)= : undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfee2)= : undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xff00)= : undefined reference to `lib80211_country_findbycc' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xffdc)= : undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0xfffb)= : undefined reference to `lib80211_country_findbyname' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1002d= ): undefined reference to `lib80211_country_findbycc' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1006b= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10146= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x101c6= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10244= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x102dc= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10355= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x103b4= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x10414= ): undefined reference to `lib80211_set80211' > ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0x104a3): more undefined references to `lib80211_set80211' follow > ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x115eb= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11625= ): undefined reference to `lib80211_get80211val' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x11c16= ): undefined reference to `lib80211_get80211len' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x135db= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1370b= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x138b9= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x13d98= ): undefined reference to `lib80211_get80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14866= ): undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14885= ): undefined reference to `lib80211_regdomain_findbysku' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148c7= ): undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x148e7= ): undefined reference to `lib80211_country_findbycc' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14b15= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d04= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14d2b= ): undefined reference to `lib80211_get80211val' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e24= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14e84= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ec4= ): undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14eee= ): undefined reference to `lib80211_country_findbycc' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f11= ): undefined reference to `lib80211_regdomain_findbysku' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14f6c= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fb9= ): undefined reference to `lib80211_alloc_regdata' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14fdc= ): undefined reference to `lib80211_regdomain_findbysku' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x14ff0= ): undefined reference to `lib80211_country_findbycc' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1529d= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15a45= ): undefined reference to `lib80211_set80211' > ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15d38= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15ee5= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15f4d= ): undefined reference to `lib80211_get80211len' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x15fc3= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1600a= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16053= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x160a9= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16131= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1619c= ): undefined reference to `lib80211_get80211val' > ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0x161ff): more undefined references to `lib80211_get80211val' follow > ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x165e4= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16622= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x166b2= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1670d= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16742= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1679b= ): undefined reference to `lib80211_get80211val' > ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0x167de): more undefined references to `lib80211_get80211val' follow > ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1695f= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ba0= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16bbc= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c0d= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16c82= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16d33= ): undefined reference to `lib80211_get80211' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16ed2= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f18= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x16f9a= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17008= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1704e= ): undefined reference to `lib80211_get80211val' > ifconfig.lo:_$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.= text+0x170af): more undefined references to `lib80211_get80211val' follow > ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x1795c= ): undefined reference to `lib80211_get80211len' > --- all_subdir_secure --- > --- tasn_prn.po --- > --- all_subdir_rescue --- > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179a9= ): undefined reference to `lib80211_get80211len' > --- all_subdir_secure --- > cc -pg -O2 -pipe -I/usr/src/secure/lib/libcrypto/../../../crypto/open= ssl -DTERMIOS -DANSI_SOURCE -DOPENSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -D= L_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_PART_WO= RDS -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_ASM -DRMD= 160_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/obj/usr= /src/secure/lib/libcrypto -I/usr/src/secure/lib/libcrypto/../../../crypto/o= penssl/crypto -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypt= o/asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -= I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/modes -std=3D= gnu89 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-strin= g-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused= -value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion = -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-pa= rameter -Wno-parentheses -Q > unused-arguments -c /usr/src/secure/lib/libcrypto/../../../crypto/openss= l/crypto/asn1/tasn_prn.c -o tasn_prn.po > --- all_subdir_rescue --- > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x179e6= ): undefined reference to `lib80211_get80211val' > _$$hide$$ ifconfig.lo /usr/src/sbin/ifconfig/ifieee80211.c:(.text+0x17a4b= ): undefined reference to `lib80211_get80211val' > --- all_subdir_sbin --- > --- dir.o --- > cc -O2 -pipe -I/usr/src/sbin/fsck_msdosfs/../fsck -std=3Dgnu99 -fstack= -protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-un= used-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wr= eturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter= -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls= -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -= Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-varia= ble -Qunused-arguments -c /usr/src/sbin/fsck_msdosfs/dir.c -o dir.o > --- all_subdir_rescue --- > cc: error: linker command failed with exit code 1 (use -v to see invocati= on) > *** [rescue] Error code 1 > > make[5]: stopped in /usr/obj/usr/src/rescue/rescue > 1 error > > make[5]: stopped in /usr/obj/usr/src/rescue/rescue > *** [rescue] Error code 2 > > make[4]: stopped in /usr/src/rescue/rescue > 1 error > > make[4]: stopped in /usr/src/rescue/rescue > *** [all] Error code 2 > > make[3]: stopped in /usr/src/rescue > 1 error > > make[3]: stopped in /usr/src/rescue > *** [all_subdir_rescue] Error code 2 > > make[2]: stopped in /usr/src > --- all_subdir_secure --- > A failure has been detected in another branch of the parallel make > > make[5]: stopped in /usr/src/secure/lib/libcrypto > *** [all] Error code 2 > > make[4]: stopped in /usr/src/secure/lib > 1 error > > make[4]: stopped in /usr/src/secure/lib > *** [all_subdir_lib] Error code 2 > > make[3]: stopped in /usr/src/secure > 1 error > > make[3]: stopped in /usr/src/secure > *** [all_subdir_secure] Error code 2 > > make[2]: stopped in /usr/src > --- all_subdir_sbin --- > A failure has been detected in another branch of the parallel make > > make[4]: stopped in /usr/src/sbin/fsck_msdosfs > *** [all_subdir_fsck_msdosfs] Error code 2 > > make[3]: stopped in /usr/src/sbin > 1 error > > make[3]: stopped in /usr/src/sbin > *** [all_subdir_sbin] Error code 2 > > make[2]: stopped in /usr/src > --- all_subdir_lib --- > A failure has been detected in another branch of the parallel make > > make[6]: stopped in /usr/src/lib/libnv/tests > *** [dnv_tests] Error code 2 > > make[5]: stopped in /usr/src/lib/libnv/tests > 1 error > > make[5]: stopped in /usr/src/lib/libnv/tests > *** [all] Error code 2 > > make[4]: stopped in /usr/src/lib/libnv > 1 error > > make[4]: stopped in /usr/src/lib/libnv > *** [all_subdir_libnv] Error code 2 > > make[3]: stopped in /usr/src/lib > 1 error > > make[3]: stopped in /usr/src/lib > *** [all_subdir_lib] Error code 2 > > make[2]: stopped in /usr/src > 4 errors > > make[2]: stopped in /usr/src > *** [everything] Error code 2 > > make[1]: stopped in /usr/src > 1 error > > make[1]: stopped in /usr/src > *** [buildworld] Error code 2 > > make: stopped in /usr/src > 1 error > > make: stopped in /usr/src > Build step 'Execute shell' marked build as failure > [PostBuildScript] - Execution post build scripts. > [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson314204738909637014.sh > + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local= /bin' > + export 'jname=3DFreeBSD_HEAD_i386' > + echo 'clean up jail FreeBSD_HEAD_i386' > clean up jail FreeBSD_HEAD_i386 > + sudo jail -r FreeBSD_HEAD_i386 > + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias > + sudo umount FreeBSD_HEAD_i386/usr/src > + sudo umount FreeBSD_HEAD_i386/dev > + sudo rm -fr FreeBSD_HEAD_i386 > + true > + sudo chflags -R noschg FreeBSD_HEAD_i386 > + sudo rm -fr FreeBSD_HEAD_i386 > Email was triggered for: Failure - Any > Sending email for trigger: Failure - Any > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org= " From owner-freebsd-current@freebsd.org Mon Nov 30 16:35:33 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C40BA3C045 for ; Mon, 30 Nov 2015 16:35:33 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D1AC128C; Mon, 30 Nov 2015 16:35:33 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pabfh17 with SMTP id fh17so195243230pab.0; Mon, 30 Nov 2015 08:35:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=Gybk5I1FfTxdrlLeCRxqhTqGTKzprl2G5AyOUmNkXlQ=; b=BPyEwkXC3G0eXxsCraIY2LbE9fDu80bztJF3pCKHGDrtwQZlSYg37wWe6qEujLmwwj cvWrV/Btnpts3HrUbz5iKTPk+pl6zbtzXQLtHIwTZn+Qe1PHBpnS3nzyF2LrO8dQGQeX T0Q0xazlGF5spCwYz8VwUe9bERPMLUvHI/YNnxdAE39e8042xQHl9TkT5wB/FPopKXZQ u9oO/SKpjYr/SpffbtxmxoD6lKJVWvAoUbjyJfmoaUjnKVEvoP3X6kZPhK5XS/OLXwRj A38obeG6uFdRsblJoRD7bDvLiAwlnmKLUEoSStDe/ZvUkKi2JO1E45P9ihb83nWozAt7 XQAQ== X-Received: by 10.67.14.104 with SMTP id ff8mr70465605pad.92.1448901332911; Mon, 30 Nov 2015 08:35:32 -0800 (PST) Received: from [192.168.20.7] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id xi8sm36824703pab.9.2015.11.30.08.35.31 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Nov 2015 08:35:31 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: r 291486: buildworld failure: ifieee80211.c:(.text+0xeb7b): undefined reference to From: NGie Cooper In-Reply-To: <20151130113630.3fa9ce26.ohartman@zedat.fu-berlin.de> Date: Mon, 30 Nov 2015 08:35:30 -0800 Cc: FreeBSD CURRENT , Adrian Chadd Content-Transfer-Encoding: quoted-printable Message-Id: <7FBE3B38-E18D-478C-95B3-FF15F6353C93@gmail.com> References: <20151130113630.3fa9ce26.ohartman@zedat.fu-berlin.de> To: "O. Hartmann" X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 16:35:33 -0000 > On Nov 30, 2015, at 02:36, O. Hartmann = wrote: >=20 > It is hard to build a biuldworld buildkernel system these days :-( > [=E2=80=A6] =E2=80=A6 Hi, This issue should be fixed in r291491. Thanks, -NGie= From owner-freebsd-current@freebsd.org Mon Nov 30 16:36:38 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2693A3C0B5 for ; Mon, 30 Nov 2015 16:36:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id C149913B1; Mon, 30 Nov 2015 16:36:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8AA1D1BFA; Mon, 30 Nov 2015 16:36:37 +0000 (UTC) Date: Mon, 30 Nov 2015 16:36:34 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: arybchik@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1699002836.311.1448901396957.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1071389510.303.1448890720998.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1071389510.303.1448890720998.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3594 - Still Failing MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 16:36:38 -0000 FreeBSD_HEAD - Build #3594 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3594/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3594/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3594/console Change summaries: 291488 by arybchik: sfxge: avoid TSO packets collapses bacause of not 2K aligned data Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4310 The end of the build log: [...truncated 159733 lines...] ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xd985): more undefined references to `lib80211_get80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211fragthreshold': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdbbc): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211burst': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdbfb): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211bmissthreshold': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdc7c): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211shortgi': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdcc3): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdd0d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdd3c): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xde12): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ampdudensity': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdf32): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdu': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdf9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xdfcc): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211amsdulimit': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe042): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211puren': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe08b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211doth': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe0cb): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dfs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe10b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe14b): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe25d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe27b): undefined reference to `lib80211_regdomain_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe2a5): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe2d8): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe318): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe337): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211country': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe41d): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe43b): undefined reference to `lib80211_country_findbyname' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe465): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe498): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211location': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe56d): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211ecm': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe5dd): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211dotd': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe63b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htprotmode': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe6ac): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211htconf': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe6ff): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211rifs': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe74b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211smps': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe78b): undefined reference to `lib80211_set80211' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xe802): more undefined references to `lib80211_set80211' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo getchaninfo': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xf7ae): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xf7e0): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_scan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0xfd14): undefined reference to `lib80211_get80211len' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_roam': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1170b): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_txparams': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x117fb): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo list_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1196f): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_channels': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x11db6): undefined reference to `lib80211_get80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo print_regdomain': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x126dc): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x126fa): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1273f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1275e): undefined reference to `lib80211_country_findbycc' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211macmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1295b): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo getcurchan': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12b2c): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12b45): undefined reference to `lib80211_get80211val' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setroam_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12bfd): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo settxparams_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12c3d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo setregdomain_cb': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12c84): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12cac): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12ccd): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d20): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d6f): undefined reference to `lib80211_alloc_regdata' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12d94): undefined reference to `lib80211_regdomain_findbysku' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x12da8): undefined reference to `lib80211_country_findbycc' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1300d): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo set80211meshrtmac': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1370e): undefined reference to `lib80211_set80211' ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13949): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13a95): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13af2): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13b5b): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13b9d): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13c03): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13c68): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13cab): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13d2e): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13d95): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x13e4e): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14161): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x141c3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x141f3): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14240): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1427c): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x142bf): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x143e0): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x145df): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x145f8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14644): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x146b0): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14752): undefined reference to `lib80211_get80211' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x148d8): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1491b): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14994): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x149fc): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14a3f): undefined reference to `lib80211_get80211val' ifconfig.lo:_$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x14a9a): more undefined references to `lib80211_get80211val' follow ifconfig.lo: In function `_$$hide$$ ifconfig.lo ieee80211_status': _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x1529b): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x152df): undefined reference to `lib80211_get80211len' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x15319): undefined reference to `lib80211_get80211val' _$$hide$$ ifconfig.lo /builds/FreeBSD_HEAD/sbin/ifconfig/ifieee80211.c:(.text+0x15379): undefined reference to `lib80211_get80211val' --- all_subdir_gnu --- 1 warning generated. --- ci.1.gz --- gzip -cn /builds/FreeBSD_HEAD/gnu/usr.bin/rcs/ci/ci.1 > ci.1.gz --- ci --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/gnu/usr.bin/rcs/ci/../lib -std=gnu99 -fstack-protector-strong -Qunused-arguments -o ci ci.o /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/gnu/usr.bin/rcs/ci/../lib/librcs.a --- all_subdir_lib --- --- sha256hl.po --- cc -pg -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libmd -I/builds/FreeBSD_HEAD/lib/libmd/../../sys/crypto/sha2 -DWEAK_REFS -MD -MP -MF.depend.sha256hl.po -MTsha256hl.po -std=gnu99 -fstack-protector-strong -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c sha256hl.c -o sha256hl.po --- all_subdir_gnu --- --- all_subdir_co --- ===> gnu/usr.bin/rcs/co (all) --- all_subdir_rescue --- cc: error: linker command failed with exit code 1 (use -v to see invocation) *** [rescue] Error code 1 make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/rescue 1 error make[5]: stopped in /builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/rescue/rescue *** [rescue] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue 1 error make[4]: stopped in /builds/FreeBSD_HEAD/rescue/rescue *** [all] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/rescue 1 error make[3]: stopped in /builds/FreeBSD_HEAD/rescue *** [all_subdir_rescue] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_gnu --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/rcs/co *** [all_subdir_co] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/rcs 1 error make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/rcs *** [all_subdir_rcs] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[4]: stopped in /builds/FreeBSD_HEAD/lib/libmd *** [all_subdir_libmd] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD --- all_subdir_gnu --- --- all_subdir_groff --- A failure has been detected in another branch of the parallel make make[8]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/roff/troff *** [all_subdir_troff] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/roff 1 error make[7]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src/roff *** [all_subdir_roff] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src 1 error make[6]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff/src *** [all_subdir_src] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff 1 error make[5]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin/groff *** [all_subdir_groff] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin 2 errors make[4]: stopped in /builds/FreeBSD_HEAD/gnu/usr.bin *** [all_subdir_usr.bin] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD/gnu 1 error make[3]: stopped in /builds/FreeBSD_HEAD/gnu *** [all_subdir_gnu] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 3 errors make[2]: stopped in /builds/FreeBSD_HEAD *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Nov 30 17:00:36 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD4A2A3C6D4 for ; Mon, 30 Nov 2015 17:00:36 +0000 (UTC) (envelope-from fbl@aoek.com) Received: from srv56-45.cdn.bestreaming.com (ns330343.ip-37-187-119.eu [37.187.119.94]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "amnesiac", Issuer "amnesiac" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 82ED714F1 for ; Mon, 30 Nov 2015 17:00:35 +0000 (UTC) (envelope-from fbl@aoek.com) Received: from mail.yourbox.net (localhost [IPv6:::1]) by srv56-45.cdn.bestreaming.com (8.15.2/8.15.2) with ESMTP id tAUH0FKE012754 for ; Mon, 30 Nov 2015 18:00:15 +0100 (CET) (envelope-from fbl@aoek.com) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_63c0870cc04ea3d00ec51d5f28cb9ab8" Date: Mon, 30 Nov 2015 18:00:15 +0100 From: =?UTF-8?Q?Jos=C3=A9_P=C3=A9rez?= To: freebsd-current@freebsd.org Subject: SSD on Acer Aspire One Cloudbook 11 Message-ID: X-Sender: fbl@aoek.com User-Agent: Roundcube Webmail/1.1.3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 17:00:36 -0000 --=_63c0870cc04ea3d00ec51d5f28cb9ab8 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8; format=flowed Hi guys, I cannot see the SSD disk on an Acer Aspire One Cloudbook 11. It's a MMC drive, but sdhci cannot find it. Boot logs are plenty of "Controller timeout" (see attached dmesg) and an unfortunate "mmc0: No compatible cards found on bus". Apparently SDHCI can recognize the hardware: sdhci_pci0@pci0:0:16:0: class=0x080501 card=0x106c1025 chip=0x22948086 rev=0x21 hdr=0x00 vendor = 'Intel Corporation' class = base peripheral subclass = SD host controller Is this a problem with the specific chip? Any suggestion to have this working? Thank you Regards, -- José Pérez --=_63c0870cc04ea3d00ec51d5f28cb9ab8 Content-Transfer-Encoding: base64 Content-Type: text/plain; name=pciconf-lv.txt Content-Disposition: attachment; filename=pciconf-lv.txt; size=2729 aG9zdGIwQHBjaTA6MDowOjA6CWNsYXNzPTB4MDYwMDAwIGNhcmQ9MHgxMDZjMTAyNSBjaGlwPTB4 MjI4MDgwODYgcmV2PTB4MjEgaGRyPTB4MDAKICAgIHZlbmRvciAgICAgPSAnSW50ZWwgQ29ycG9y YXRpb24nCiAgICBjbGFzcyAgICAgID0gYnJpZGdlCiAgICBzdWJjbGFzcyAgID0gSE9TVC1QQ0kK dmdhcGNpMEBwY2kwOjA6MjowOgljbGFzcz0weDAzMDAwMCBjYXJkPTB4MTA2YzEwMjUgY2hpcD0w eDIyYjE4MDg2IHJldj0weDIxIGhkcj0weDAwCiAgICB2ZW5kb3IgICAgID0gJ0ludGVsIENvcnBv cmF0aW9uJwogICAgY2xhc3MgICAgICA9IGRpc3BsYXkKICAgIHN1YmNsYXNzICAgPSBWR0EKbm9u ZTBAcGNpMDowOjExOjA6CWNsYXNzPTB4MTE4MDAwIGNhcmQ9MHgxMDZjMTAyNSBjaGlwPTB4MjJk YzgwODYgcmV2PTB4MjEgaGRyPTB4MDAKICAgIHZlbmRvciAgICAgPSAnSW50ZWwgQ29ycG9yYXRp b24nCiAgICBjbGFzcyAgICAgID0gZGFzcApzZGhjaV9wY2kwQHBjaTA6MDoxNjowOgljbGFzcz0w eDA4MDUwMSBjYXJkPTB4MTA2YzEwMjUgY2hpcD0weDIyOTQ4MDg2IHJldj0weDIxIGhkcj0weDAw CiAgICB2ZW5kb3IgICAgID0gJ0ludGVsIENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAgICA9IGJh c2UgcGVyaXBoZXJhbAogICAgc3ViY2xhc3MgICA9IFNEIGhvc3QgY29udHJvbGxlcgp4aGNpMEBw Y2kwOjA6MjA6MDoJY2xhc3M9MHgwYzAzMzAgY2FyZD0weDEwNmMxMDI1IGNoaXA9MHgyMmI1ODA4 NiByZXY9MHgyMSBoZHI9MHgwMAogICAgdmVuZG9yICAgICA9ICdJbnRlbCBDb3Jwb3JhdGlvbicK ICAgIGNsYXNzICAgICAgPSBzZXJpYWwgYnVzCiAgICBzdWJjbGFzcyAgID0gVVNCCm5vbmUxQHBj aTA6MDoyNDowOgljbGFzcz0weDA4MDEwMiBjYXJkPTB4MTA2YzEwMjUgY2hpcD0weDIyYzA4MDg2 IHJldj0weDIxIGhkcj0weDAwCiAgICB2ZW5kb3IgICAgID0gJ0ludGVsIENvcnBvcmF0aW9uJwog ICAgY2xhc3MgICAgICA9IGJhc2UgcGVyaXBoZXJhbAogICAgc3ViY2xhc3MgICA9IERNQSBjb250 cm9sbGVyCm5vbmUyQHBjaTA6MDoyNDoxOgljbGFzcz0weDBjODAwMCBjYXJkPTB4MTA2YzEwMjUg Y2hpcD0weDIyYzE4MDg2IHJldj0weDIxIGhkcj0weDAwCiAgICB2ZW5kb3IgICAgID0gJ0ludGVs IENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAgICA9IHNlcmlhbCBidXMKbm9uZTNAcGNpMDowOjI2 OjA6CWNsYXNzPTB4MTA4MDAwIGNhcmQ9MHgxMDZjMTAyNSBjaGlwPTB4MjI5ODgwODYgcmV2PTB4 MjEgaGRyPTB4MDAKICAgIHZlbmRvciAgICAgPSAnSW50ZWwgQ29ycG9yYXRpb24nCiAgICBjbGFz cyAgICAgID0gZW5jcnlwdC9kZWNyeXB0CmhkYWMwQHBjaTA6MDoyNzowOgljbGFzcz0weDA0MDMw MCBjYXJkPTB4MTA2YzEwMjUgY2hpcD0weDIyODQ4MDg2IHJldj0weDIxIGhkcj0weDAwCiAgICB2 ZW5kb3IgICAgID0gJ0ludGVsIENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAgICA9IG11bHRpbWVk aWEKICAgIHN1YmNsYXNzICAgPSBIREEKcGNpYjFAcGNpMDowOjI4OjA6CWNsYXNzPTB4MDYwNDAw IGNhcmQ9MHgxMDZjMTAyNSBjaGlwPTB4MjJjODgwODYgcmV2PTB4MjEgaGRyPTB4MDEKICAgIHZl bmRvciAgICAgPSAnSW50ZWwgQ29ycG9yYXRpb24nCiAgICBjbGFzcyAgICAgID0gYnJpZGdlCiAg ICBzdWJjbGFzcyAgID0gUENJLVBDSQpwY2liMkBwY2kwOjA6Mjg6MjoJY2xhc3M9MHgwNjA0MDAg Y2FyZD0weDEwNmMxMDI1IGNoaXA9MHgyMmNjODA4NiByZXY9MHgyMSBoZHI9MHgwMQogICAgdmVu ZG9yICAgICA9ICdJbnRlbCBDb3Jwb3JhdGlvbicKICAgIGNsYXNzICAgICAgPSBicmlkZ2UKICAg IHN1YmNsYXNzICAgPSBQQ0ktUENJCm5vbmU0QHBjaTA6MDozMDowOgljbGFzcz0weDA4MDEwMiBj YXJkPTB4MTA2YzEwMjUgY2hpcD0weDIyODY4MDg2IHJldj0weDIxIGhkcj0weDAwCiAgICB2ZW5k b3IgICAgID0gJ0ludGVsIENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAgICA9IGJhc2UgcGVyaXBo ZXJhbAogICAgc3ViY2xhc3MgICA9IERNQSBjb250cm9sbGVyCm5vbmU1QHBjaTA6MDozMDo0Oglj bGFzcz0weDA3ODAwMCBjYXJkPTB4MTA2YzEwMjUgY2hpcD0weDIyOGM4MDg2IHJldj0weDIxIGhk cj0weDAwCiAgICB2ZW5kb3IgICAgID0gJ0ludGVsIENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAg ICA9IHNpbXBsZSBjb21tcwppc2FiMEBwY2kwOjA6MzE6MDoJY2xhc3M9MHgwNjAxMDAgY2FyZD0w eDEwNmMxMDI1IGNoaXA9MHgyMjljODA4NiByZXY9MHgyMSBoZHI9MHgwMAogICAgdmVuZG9yICAg ICA9ICdJbnRlbCBDb3Jwb3JhdGlvbicKICAgIGNsYXNzICAgICAgPSBicmlkZ2UKICAgIHN1YmNs YXNzICAgPSBQQ0ktSVNBCm5vbmU2QHBjaTA6MDozMTozOgljbGFzcz0weDBjMDUwMCBjYXJkPTB4 MTA2YzEwMjUgY2hpcD0weDIyOTI4MDg2IHJldj0weDIxIGhkcj0weDAwCiAgICB2ZW5kb3IgICAg ID0gJ0ludGVsIENvcnBvcmF0aW9uJwogICAgY2xhc3MgICAgICA9IHNlcmlhbCBidXMKICAgIHN1 YmNsYXNzICAgPSBTTUJ1cwphdGgwQHBjaTA6MjowOjA6CWNsYXNzPTB4MDI4MDAwIGNhcmQ9MHgw ODAzMTFhZCBjaGlwPTB4MDAzNjE2OGMgcmV2PTB4MDEgaGRyPTB4MDAKICAgIHZlbmRvciAgICAg PSAnUXVhbGNvbW0gQXRoZXJvcycKICAgIGRldmljZSAgICAgPSAnUUNBOTU2NSAvIEFSOTU2NSBX aXJlbGVzcyBOZXR3b3JrIEFkYXB0ZXInCiAgICBjbGFzcyAgICAgID0gbmV0d29yawo= --=_63c0870cc04ea3d00ec51d5f28cb9ab8 Content-Transfer-Encoding: base64 Content-Type: text/plain; name=dmesg.txt Content-Disposition: attachment; filename=dmesg.txt; size=19322 Q29weXJpZ2h0IChjKSAxOTkyLTIwMTUgVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIGlzIGEgcmVnaXN0ZXJlZCB0cmFkZW1hcmsgb2YgVGhlIEZy ZWVCU0QgRm91bmRhdGlvbi4KRnJlZUJTRCAxMS4wLUNVUlJFTlQgIzE6IFRodSBOb3YgMjYgMTg6 NDU6MTYgQ0VUIDIwMTUKICAgIHJvb3RAY3VycmVudDovdXNyL29iai91c3Ivc3JjL3N5cy9DVVJS RU5UIGFtZDY0CkZyZWVCU0QgY2xhbmcgdmVyc2lvbiAzLjcuMCAodGFncy9SRUxFQVNFXzM3MC9m aW5hbCAyNDYyNTcpIDIwMTUwOTA2ClZUKHZnYSk6IHJlc29sdXRpb24gNjQweDQ4MAppbmZvOiBb ZHJtXSBJbml0aWFsaXplZCBkcm0gMS4xLjAgMjAwNjA4MTAKQ1BVOiBJbnRlbChSKSBDZWxlcm9u KFIpIENQVSAgTjMwNTAgIEAgMS42MEdIeiAoMTYwMC4wNS1NSHogSzgtY2xhc3MgQ1BVKQogIE9y aWdpbj0iR2VudWluZUludGVsIiAgSWQ9MHg0MDZjMyAgRmFtaWx5PTB4NiAgTW9kZWw9MHg0YyAg U3RlcHBpbmc9MwogIEZlYXR1cmVzPTB4YmZlYmZiZmY8RlBVLFZNRSxERSxQU0UsVFNDLE1TUixQ QUUsTUNFLENYOCxBUElDLFNFUCxNVFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsQ0xGTFVTSCxE VFMsQUNQSSxNTVgsRlhTUixTU0UsU1NFMixTUyxIVFQsVE0sUEJFPgogIEZlYXR1cmVzMj0weDQz ZDhlM2JmPFNTRTMsUENMTVVMUURRLERURVM2NCxNT04sRFNfQ1BMLFZNWCxFU1QsVE0yLFNTU0Uz LENYMTYseFRQUixQRENNLFNTRTQuMSxTU0U0LjIsTU9WQkUsUE9QQ05ULFRTQ0RMVCxBRVNOSSxS RFJBTkQ+CiAgQU1EIEZlYXR1cmVzPTB4MjgxMDA4MDA8U1lTQ0FMTCxOWCxSRFRTQ1AsTE0+CiAg QU1EIEZlYXR1cmVzMj0weDEwMTxMQUhGLFByZWZldGNoPgogIFN0cnVjdHVyZWQgRXh0ZW5kZWQg RmVhdHVyZXM9MHgyMjgyPFRTQ0FESixTTUVQLEVSTVMsTkZQVVNHPgogIFZULXg6IFBBVCxITFQs TVRGLFBBVVNFLEVQVCxVRyxWUElECiAgVFNDOiBQLXN0YXRlIGludmFyaWFudCwgcGVyZm9ybWFu Y2Ugc3RhdGlzdGljcwpyZWFsIG1lbW9yeSAgPSAyMTQ3NDgzNjQ4ICgyMDQ4IE1CKQphdmFpbCBt ZW1vcnkgPSAxOTY4Mjc1NDU2ICgxODc3IE1CKQpFdmVudCB0aW1lciAiTEFQSUMiIHF1YWxpdHkg NjAwCkFDUEkgQVBJQyBUYWJsZTogPEFDUlNZUyBBQ1JQUkRDVD4KRnJlZUJTRC9TTVA6IE11bHRp cHJvY2Vzc29yIFN5c3RlbSBEZXRlY3RlZDogMiBDUFVzCkZyZWVCU0QvU01QOiAxIHBhY2thZ2Uo cykgeCAyIGNvcmUocykKIGNwdTAgKEJTUCk6IEFQSUMgSUQ6ICAwCiBjcHUxIChBUCk6IEFQSUMg SUQ6ICA0CnJhbmRvbTogdW5ibG9ja2luZyBkZXZpY2UuCmlvYXBpYzAgPFZlcnNpb24gMi4wPiBp cnFzIDAtMTE0IG9uIG1vdGhlcmJvYXJkCkN1c2UgdjAuMS4zNCBAIC9kZXYvY3VzZQpyYW5kb206 IGVudHJvcHkgZGV2aWNlIGV4dGVybmFsIGludGVyZmFjZQprYmQxIGF0IGtiZG11eDAKbmV0bWFw OiBsb2FkZWQgbW9kdWxlCm1vZHVsZV9yZWdpc3Rlcl9pbml0OiBNT0RfTE9BRCAodmVzYSwgMHhm ZmZmZmZmZjgwODRiMmIwLCAwKSBlcnJvciAxOQpyYW5kb206IHJlZ2lzdGVyaW5nIGZhc3Qgc291 cmNlIEludGVsIFNlY3VyZSBLZXkgUk5HCnJhbmRvbTogZmFzdCBwcm92aWRlcjogIkludGVsIFNl Y3VyZSBLZXkgUk5HIgp2dHZnYTA6IDxWVCBWR0EgZHJpdmVyPiBvbiBtb3RoZXJib2FyZApjcnlw dG9zb2Z0MDogPHNvZnR3YXJlIGNyeXB0bz4gb24gbW90aGVyYm9hcmQKYWNwaTA6IDxBQ1JTWVMg QUNSUFJEQ1Q+IG9uIG1vdGhlcmJvYXJkCmFjcGkwOiBQb3dlciBCdXR0b24gKGZpeGVkKQp1bmtu b3duOiBJL08gcmFuZ2Ugbm90IHN1cHBvcnRlZApjcHUwOiA8QUNQSSBDUFU+IG9uIGFjcGkwCmNw dTE6IDxBQ1BJIENQVT4gb24gYWNwaTAKYXR0aW1lcjA6IDxBVCB0aW1lcj4gcG9ydCAweDQwLTB4 NDMsMHg1MC0weDUzIGlycSAwIG9uIGFjcGkwClRpbWVjb3VudGVyICJpODI1NCIgZnJlcXVlbmN5 IDExOTMxODIgSHogcXVhbGl0eSAwCkV2ZW50IHRpbWVyICJpODI1NCIgZnJlcXVlbmN5IDExOTMx ODIgSHogcXVhbGl0eSAxMDAKYXRydGMwOiA8QVQgcmVhbHRpbWUgY2xvY2s+IHBvcnQgMHg3MC0w eDc3IG9uIGFjcGkwCmF0cnRjMDogV2FybmluZzogQ291bGRuJ3QgbWFwIEkvTy4KRXZlbnQgdGlt ZXIgIlJUQyIgZnJlcXVlbmN5IDMyNzY4IEh6IHF1YWxpdHkgMApocGV0MDogPEhpZ2ggUHJlY2lz aW9uIEV2ZW50IFRpbWVyPiBpb21lbSAweGZlZDAwMDAwLTB4ZmVkMDAzZmYgaXJxIDggb24gYWNw aTAKVGltZWNvdW50ZXIgIkhQRVQiIGZyZXF1ZW5jeSAxNDMxODE4MCBIeiBxdWFsaXR5IDk1MApF dmVudCB0aW1lciAiSFBFVCIgZnJlcXVlbmN5IDE0MzE4MTgwIEh6IHF1YWxpdHkgNDUwCkV2ZW50 IHRpbWVyICJIUEVUMSIgZnJlcXVlbmN5IDE0MzE4MTgwIEh6IHF1YWxpdHkgNDQwCkV2ZW50IHRp bWVyICJIUEVUMiIgZnJlcXVlbmN5IDE0MzE4MTgwIEh6IHF1YWxpdHkgNDQwClRpbWVjb3VudGVy ICJBQ1BJLXNhZmUiIGZyZXF1ZW5jeSAzNTc5NTQ1IEh6IHF1YWxpdHkgODUwCmFjcGlfdGltZXIw OiA8MjQtYml0IHRpbWVyIGF0IDMuNTc5NTQ1TUh6PiBwb3J0IDB4NDA4LTB4NDBiIG9uIGFjcGkw CnBjaWIwOiA8QUNQSSBIb3N0LVBDSSBicmlkZ2U+IHBvcnQgMHhjZjgtMHhjZmYgb24gYWNwaTAK cGNpMDogPEFDUEkgUENJIGJ1cz4gb24gcGNpYjAKdmdhcGNpMDogPFZHQS1jb21wYXRpYmxlIGRp c3BsYXk+IHBvcnQgMHgxMDAwLTB4MTAzZiBtZW0gMHg5MDAwMDAwMC0weDkwZmZmZmZmLDB4ODAw MDAwMDAtMHg4ZmZmZmZmZiBpcnEgMTYgYXQgZGV2aWNlIDIuMCBvbiBwY2kwCnZnYXBjaTA6IEJv b3QgdmlkZW8gZGV2aWNlCnNkaGNpX3BjaTA6IDxHZW5lcmljIFNEIEhDST4gbWVtIDB4OTEzMjEw MDAtMHg5MTMyMWZmZiBpcnEgMTYgYXQgZGV2aWNlIDE2LjAgb24gcGNpMApzZGhjaV9wY2kwOiAx IHNsb3QocykgYWxsb2NhdGVkCm1tYzA6IDxNTUMvU0QgYnVzPiBvbiBzZGhjaV9wY2kwCnhoY2kw OiA8WEhDSSAoZ2VuZXJpYykgVVNCIDMuMCBjb250cm9sbGVyPiBtZW0gMHg5MTMwMDAwMC0weDkx MzBmZmZmIGlycSAyMCBhdCBkZXZpY2UgMjAuMCBvbiBwY2kwCnhoY2kwOiAzMiBieXRlcyBjb250 ZXh0IHNpemUsIDY0LWJpdCBETUEKdXNidXMwOiB3YWl0aW5nIGZvciBCSU9TIHRvIGdpdmUgdXAg Y29udHJvbAp1c2J1czAgb24geGhjaTAKcGNpMDogPGJhc2UgcGVyaXBoZXJhbCwgRE1BIGNvbnRy b2xsZXI+IGF0IGRldmljZSAyNC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCnBjaTA6IDxzZXJpYWwg YnVzPiBhdCBkZXZpY2UgMjQuMSAobm8gZHJpdmVyIGF0dGFjaGVkKQpwY2kwOiA8ZW5jcnlwdC9k ZWNyeXB0PiBhdCBkZXZpY2UgMjYuMCAobm8gZHJpdmVyIGF0dGFjaGVkKQpoZGFjMDogPEludGVs ICgweDIyODQpIEhEQSBDb250cm9sbGVyPiBtZW0gMHg5MTMxMDAwMC0weDkxMzEzZmZmIGlycSAy MiBhdCBkZXZpY2UgMjcuMCBvbiBwY2kwCnBjaWIxOiA8QUNQSSBQQ0ktUENJIGJyaWRnZT4gYXQg ZGV2aWNlIDI4LjAgb24gcGNpMApwY2kxOiA8QUNQSSBQQ0kgYnVzPiBvbiBwY2liMQpwY2liMjog PEFDUEkgUENJLVBDSSBicmlkZ2U+IGlycSAxOCBhdCBkZXZpY2UgMjguMiBvbiBwY2kwCnBjaTI6 IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIyCmF0aDA6IDxRdWFsY29tbSBBdGhlcm9zIEFSOTU2NT4g bWVtIDB4OTEwMDAwMDAtMHg5MTA3ZmZmZiBpcnEgMTggYXQgZGV2aWNlIDAuMCBvbiBwY2kyCmFy OTMwMF9hdHRhY2g6IGNhbGxpbmcgYXI5MzAwX2h3X2F0dGFjaAphcjkzMDBfaHdfYXR0YWNoOiBj YWxsaW5nIGFyOTMwMF9lZXByb21fYXR0YWNoCmFyOTMwMF9mbGFzaF9tYXA6IHVuaW1wbGVtZW50 ZWQgZm9yIG5vdwpSZXN0b3JpbmcgQ2FsIGRhdGEgZnJvbSBEUkFNClJlc3RvcmluZyBDYWwgZGF0 YSBmcm9tIEVFUFJPTQpSZXN0b3JpbmcgQ2FsIGRhdGEgZnJvbSBGbGFzaApSZXN0b3JpbmcgQ2Fs IGRhdGEgZnJvbSBGbGFzaApSZXN0b3JpbmcgQ2FsIGRhdGEgZnJvbSBPVFAKYXI5MzAwX2h3X2F0 dGFjaDogYXI5MzAwX2VlcHJvbV9hdHRhY2ggcmV0dXJuZWQgMAphdGgwOiBbSFRdIGVuYWJsaW5n IEhUIG1vZGVzCmF0aDA6IFtIVF0gZW5hYmxpbmcgc2hvcnQtR0kgaW4gMjBNSHogbW9kZQphdGgw OiBbSFRdIDEgc3RyZWFtIFNUQkMgcmVjZWl2ZSBlbmFibGVkCmF0aDA6IFtIVF0gMSBSWCBzdHJl YW1zOyAxIFRYIHN0cmVhbXMKYXRoMDogQVI5NTY1IG1hYyA3MDQuMiBSRjUxMTAgcGh5IDI0NTcu OQphdGgwOiAyR0h6IHJhZGlvOiAweDAwMDA7IDVHSHogcmFkaW86IDB4MDAwMApwY2kwOiA8YmFz ZSBwZXJpcGhlcmFsLCBETUEgY29udHJvbGxlcj4gYXQgZGV2aWNlIDMwLjAgKG5vIGRyaXZlciBh dHRhY2hlZCkKcGNpMDogPHNpbXBsZSBjb21tcz4gYXQgZGV2aWNlIDMwLjQgKG5vIGRyaXZlciBh dHRhY2hlZCkKaXNhYjA6IDxQQ0ktSVNBIGJyaWRnZT4gYXQgZGV2aWNlIDMxLjAgb24gcGNpMApp c2EwOiA8SVNBIGJ1cz4gb24gaXNhYjAKYWNwaV9idXR0b24wOiA8UG93ZXIgQnV0dG9uPiBvbiBh Y3BpMAphY3BpX2xpZDA6IDxDb250cm9sIE1ldGhvZCBMaWQgU3dpdGNoPiBvbiBhY3BpMAphY3Bp X2J1dHRvbjE6IDxTbGVlcCBCdXR0b24+IG9uIGFjcGkwCmFjcGlfdHowOiA8VGhlcm1hbCBab25l PiBvbiBhY3BpMApBQ1BJIEVycm9yOiBbVENOVF0gTmFtZXNwYWNlIGxvb2t1cCBmYWlsdXJlLCBB RV9OT1RfRk9VTkQgKDIwMTUwODE4L3BzYXJncy0zOTEpCkFDUEkgRXJyb3I6IE1ldGhvZCBwYXJz ZS9leGVjdXRpb24gZmFpbGVkIFtcMTM0X1RaLlRaMDAuX1BTTF0gKE5vZGUgMHhmZmZmZjgwMDAy NjcwNDAwKSwgQUVfTk9UX0ZPVU5EICgyMDE1MDgxOC9wc3BhcnNlLTU1OCkKYWNwaV90ejE6IDxU aGVybWFsIFpvbmU+IG9uIGFjcGkwCmF0a2JkYzA6IDxLZXlib2FyZCBjb250cm9sbGVyIChpODA0 Mik+IHBvcnQgMHg2MCwweDY0IGlycSAxIG9uIGFjcGkwCmF0a2JkMDogPEFUIEtleWJvYXJkPiBp cnEgMSBvbiBhdGtiZGMwCmtiZDAgYXQgYXRrYmQwCmF0a2JkMDogW0dJQU5ULUxPQ0tFRF0KYWNw aV9hY2FkMDogPEFDIEFkYXB0ZXI+IG9uIGFjcGkwCmJhdHRlcnkwOiA8QUNQSSBDb250cm9sIE1l dGhvZCBCYXR0ZXJ5PiBvbiBhY3BpMAplc3QwOiA8RW5oYW5jZWQgU3BlZWRTdGVwIEZyZXF1ZW5j eSBDb250cm9sPiBvbiBjcHUwCmVzdDE6IDxFbmhhbmNlZCBTcGVlZFN0ZXAgRnJlcXVlbmN5IENv bnRyb2w+IG9uIGNwdTEKZnVzZS1mcmVlYnNkOiB2ZXJzaW9uIDAuNC40LCBGVVNFIEFCSSA3LjgK VGltZWNvdW50ZXJzIHRpY2sgZXZlcnkgMS4wMDAgbXNlYwpJUHNlYzogSW5pdGlhbGl6ZWQgU2Vj dXJpdHkgQXNzb2NpYXRpb24gUHJvY2Vzc2luZy4KdXNidXMwOiA1LjBHYnBzIFN1cGVyIFNwZWVk IFVTQiB2My4wCnVnZW4wLjE6IDwweDgwODY+IGF0IHVzYnVzMAp1aHViMDogPDB4ODA4NiBYSENJ IHJvb3QgSFVCLCBjbGFzcyA5LzAsIHJldiAzLjAwLzEuMDAsIGFkZHIgMT4gb24gdXNidXMwCnVo dWIwOiAxMyBwb3J0cyB3aXRoIDEzIHJlbW92YWJsZSwgc2VsZiBwb3dlcmVkCnVnZW4wLjI6IDxT TUkgQ29ycG9yYXRpb24+IGF0IHVzYnVzMAp1bWFzczA6IDxTTUkgQ29ycG9yYXRpb24gVVNCIERJ U0ssIGNsYXNzIDAvMCwgcmV2IDIuMDAvMTEuMDAsIGFkZHIgMT4gb24gdXNidXMwCnVtYXNzMDog IFNDU0kgb3ZlciBCdWxrLU9ubHk7IHF1aXJrcyA9IDB4NDAwMAp1bWFzczA6MDowOiBBdHRhY2hl ZCB0byBzY2J1czAKZGEwIGF0IHVtYXNzLXNpbTAgYnVzIDAgc2NidXMwIHRhcmdldCAwIGx1biAw CmRhMDogPFNNSSBVU0IgRElTSyAxMTAwPiBSZW1vdmFibGUgRGlyZWN0IEFjY2VzcyBTQ1NJIGRl dmljZQpkYTA6IDQwLjAwME1CL3MgdHJhbnNmZXJzCmRhMDogNzgwME1CICgxNTk3NDQwMCA1MTIg Ynl0ZSBzZWN0b3JzKQpkYTA6IHF1aXJrcz0weDM8Tk9fU1lOQ19DQUNIRSxOT182X0JZVEU+CnVn ZW4wLjM6IDxHZW5lcmljPiBhdCB1c2J1czAKdWdlbjAuNDogPFN1WWluPiBhdCB1c2J1czAKdWdl bjAuNTogPHZlbmRvciAweDA0Y2E+IGF0IHVzYnVzMApzZGhjaV9wY2kwLXNsb3QwOiAgQ29udHJv bGxlciB0aW1lb3V0CnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09IFJFR0lTVEVSIERV TVAgPT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogU3lzIGFkZHI6IDB4MDAwMDAwMDAg fCBWZXJzaW9uOiAgMHgwMDAwMTAwMgpzZGhjaV9wY2kwLXNsb3QwOiBCbGsgc2l6ZTogMHgwMDAw MDAwMCB8IEJsayBjbnQ6ICAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEFyZ3VtZW50OiAw eDAwMDAwMDAwIHwgVHJuIG1vZGU6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogUHJlc2Vu dDogIDB4MWZmZjAwMDEgfCBIb3N0IGN0bDogMHgwMDAwMDAwMQpzZGhjaV9wY2kwLXNsb3QwOiBQ b3dlcjogICAgMHgwMDAwMDAwMCB8IEJsayBnYXA6ICAweDAwMDAwMDgwCnNkaGNpX3BjaTAtc2xv dDA6IFdha2UtdXA6ICAweDAwMDAwMDAwIHwgQ2xvY2s6ICAgIDB4MDAwMGZhMDcKc2RoY2lfcGNp MC1zbG90MDogVGltZW91dDogIDB4MDAwMDAwMDAgfCBJbnQgc3RhdDogMHgwMDAwMDAwMApzZGhj aV9wY2kwLXNsb3QwOiBJbnQgZW5hYjogMHgwMWZmMDBmYiB8IFNpZyBlbmFiOiAweDAxZmYwMGZi CnNkaGNpX3BjaTAtc2xvdDA6IEFDMTIgZXJyOiAweDAwMDAwMDAwIHwgU2xvdCBpbnQ6IDB4MDAw MDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQ2FwczogICAgIDB4NDQ2Y2M4YjIgfCBNYXggY3Vycjog MHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xvdDA6ICBDb250cm9sbGVyIHRpbWVvdXQKc2Ro Y2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT0gUkVHSVNURVIgRFVNUCA9PT09PT09PT09PT09 PQpzZGhjaV9wY2kwLXNsb3QwOiBTeXMgYWRkcjogMHgwMDAwMDAwMCB8IFZlcnNpb246ICAweDAw MDAxMDAyCnNkaGNpX3BjaTAtc2xvdDA6IEJsayBzaXplOiAweDAwMDAwMDAwIHwgQmxrIGNudDog IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQXJndW1lbnQ6IDB4MDAwMDAwMDAgfCBUcm4g bW9kZTogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBQcmVzZW50OiAgMHgxZmZmMDAwMSB8 IEhvc3QgY3RsOiAweDAwMDAwMDAxCnNkaGNpX3BjaTAtc2xvdDA6IFBvd2VyOiAgICAweDAwMDAw MDAwIHwgQmxrIGdhcDogIDB4MDAwMDAwODAKc2RoY2lfcGNpMC1zbG90MDogV2FrZS11cDogIDB4 MDAwMDAwMDAgfCBDbG9jazogICAgMHgwMDAwZmEwNwpzZGhjaV9wY2kwLXNsb3QwOiBUaW1lb3V0 OiAgMHgwMDAwMDAwMCB8IEludCBzdGF0OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IElu dCBlbmFiOiAweDAxZmYwMGZiIHwgU2lnIGVuYWI6IDB4MDFmZjAwZmIKc2RoY2lfcGNpMC1zbG90 MDogQUMxMiBlcnI6IDB4MDAwMDAwMDAgfCBTbG90IGludDogMHgwMDAwMDAwMApzZGhjaV9wY2kw LXNsb3QwOiBDYXBzOiAgICAgMHg0NDZjYzhiMiB8IE1heCBjdXJyOiAweDAwMDAwMDAwCnNkaGNp X3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0K c2RoY2lfcGNpMC1zbG90MDogIENvbnRyb2xsZXIgdGltZW91dApzZGhjaV9wY2kwLXNsb3QwOiA9 PT09PT09PT09PT09PSBSRUdJU1RFUiBEVU1QID09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xv dDA6IFN5cyBhZGRyOiAweDAwMDAwMDAwIHwgVmVyc2lvbjogIDB4MDAwMDEwMDIKc2RoY2lfcGNp MC1zbG90MDogQmxrIHNpemU6IDB4MDAwMDAwMDAgfCBCbGsgY250OiAgMHgwMDAwMDAwMApzZGhj aV9wY2kwLXNsb3QwOiBBcmd1bWVudDogMHgwMDAwMDAwMCB8IFRybiBtb2RlOiAweDAwMDAwMDAw CnNkaGNpX3BjaTAtc2xvdDA6IFByZXNlbnQ6ICAweDFmZmYwMDAxIHwgSG9zdCBjdGw6IDB4MDAw MDAwMDEKc2RoY2lfcGNpMC1zbG90MDogUG93ZXI6ICAgIDB4MDAwMDAwMDAgfCBCbGsgZ2FwOiAg MHgwMDAwMDA4MApzZGhjaV9wY2kwLXNsb3QwOiBXYWtlLXVwOiAgMHgwMDAwMDAwMCB8IENsb2Nr OiAgICAweDAwMDBmYTA3CnNkaGNpX3BjaTAtc2xvdDA6IFRpbWVvdXQ6ICAweDAwMDAwMDAwIHwg SW50IHN0YXQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogSW50IGVuYWI6IDB4MDFmZjAw ZmIgfCBTaWcgZW5hYjogMHgwMWZmMDBmYgpzZGhjaV9wY2kwLXNsb3QwOiBBQzEyIGVycjogMHgw MDAwMDAwMCB8IFNsb3QgaW50OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IENhcHM6ICAg ICAweDQ0NmNjOGIyIHwgTWF4IGN1cnI6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3Qw OiAgQ29udHJvbGxlciB0aW1lb3V0CnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09IFJF R0lTVEVSIERVTVAgPT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogU3lzIGFkZHI6IDB4 MDAwMDAwMDAgfCBWZXJzaW9uOiAgMHgwMDAwMTAwMgpzZGhjaV9wY2kwLXNsb3QwOiBCbGsgc2l6 ZTogMHgwMDAwMDAwMCB8IEJsayBjbnQ6ICAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEFy Z3VtZW50OiAweDAwMDAwMDAwIHwgVHJuIG1vZGU6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90 MDogUHJlc2VudDogIDB4MWZmZjAwMDEgfCBIb3N0IGN0bDogMHgwMDAwMDAwMQpzZGhjaV9wY2kw LXNsb3QwOiBQb3dlcjogICAgMHgwMDAwMDAwMCB8IEJsayBnYXA6ICAweDAwMDAwMDgwCnNkaGNp X3BjaTAtc2xvdDA6IFdha2UtdXA6ICAweDAwMDAwMDAwIHwgQ2xvY2s6ICAgIDB4MDAwMGZhMDcK c2RoY2lfcGNpMC1zbG90MDogVGltZW91dDogIDB4MDAwMDAwMDAgfCBJbnQgc3RhdDogMHgwMDAw MDAwMApzZGhjaV9wY2kwLXNsb3QwOiBJbnQgZW5hYjogMHgwMWZmMDBmYiB8IFNpZyBlbmFiOiAw eDAxZmYwMGZiCnNkaGNpX3BjaTAtc2xvdDA6IEFDMTIgZXJyOiAweDAwMDAwMDAwIHwgU2xvdCBp bnQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQ2FwczogICAgIDB4NDQ2Y2M4YjIgfCBN YXggY3VycjogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xvdDA6ICBDb250cm9sbGVyIHRp bWVvdXQKc2RoY2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT0gUkVHSVNURVIgRFVNUCA9PT09 PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiBTeXMgYWRkcjogMHgwMDAwMDAwMCB8IFZlcnNp b246ICAweDAwMDAxMDAyCnNkaGNpX3BjaTAtc2xvdDA6IEJsayBzaXplOiAweDAwMDAwMDAwIHwg QmxrIGNudDogIDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQXJndW1lbnQ6IDB4MDAwMDAx YWEgfCBUcm4gbW9kZTogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBQcmVzZW50OiAgMHgx ZmZmMDAwMSB8IEhvc3QgY3RsOiAweDAwMDAwMDAxCnNkaGNpX3BjaTAtc2xvdDA6IFBvd2VyOiAg ICAweDAwMDAwMDAwIHwgQmxrIGdhcDogIDB4MDAwMDAwODAKc2RoY2lfcGNpMC1zbG90MDogV2Fr ZS11cDogIDB4MDAwMDAwMDAgfCBDbG9jazogICAgMHgwMDAwZmEwNwpzZGhjaV9wY2kwLXNsb3Qw OiBUaW1lb3V0OiAgMHgwMDAwMDAwMCB8IEludCBzdGF0OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAt c2xvdDA6IEludCBlbmFiOiAweDAxZmYwMGZiIHwgU2lnIGVuYWI6IDB4MDFmZjAwZmIKc2RoY2lf cGNpMC1zbG90MDogQUMxMiBlcnI6IDB4MDAwMDAwMDAgfCBTbG90IGludDogMHgwMDAwMDAwMApz ZGhjaV9wY2kwLXNsb3QwOiBDYXBzOiAgICAgMHg0NDZjYzhiMiB8IE1heCBjdXJyOiAweDAwMDAw MDAwCnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogIENvbnRyb2xsZXIgdGltZW91dApzZGhjaV9wY2kw LXNsb3QwOiA9PT09PT09PT09PT09PSBSRUdJU1RFUiBEVU1QID09PT09PT09PT09PT09CnNkaGNp X3BjaTAtc2xvdDA6IFN5cyBhZGRyOiAweDAwMDAwMDAwIHwgVmVyc2lvbjogIDB4MDAwMDEwMDIK c2RoY2lfcGNpMC1zbG90MDogQmxrIHNpemU6IDB4MDAwMDAwMDAgfCBCbGsgY250OiAgMHgwMDAw MDAwMApzZGhjaV9wY2kwLXNsb3QwOiBBcmd1bWVudDogMHgwMDAwMDFhYSB8IFRybiBtb2RlOiAw eDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IFByZXNlbnQ6ICAweDFmZmYwMDAxIHwgSG9zdCBj dGw6IDB4MDAwMDAwMDEKc2RoY2lfcGNpMC1zbG90MDogUG93ZXI6ICAgIDB4MDAwMDAwMDAgfCBC bGsgZ2FwOiAgMHgwMDAwMDA4MApzZGhjaV9wY2kwLXNsb3QwOiBXYWtlLXVwOiAgMHgwMDAwMDAw MCB8IENsb2NrOiAgICAweDAwMDBmYTA3CnNkaGNpX3BjaTAtc2xvdDA6IFRpbWVvdXQ6ICAweDAw MDAwMDAwIHwgSW50IHN0YXQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogSW50IGVuYWI6 IDB4MDFmZjAwZmIgfCBTaWcgZW5hYjogMHgwMWZmMDBmYgpzZGhjaV9wY2kwLXNsb3QwOiBBQzEy IGVycjogMHgwMDAwMDAwMCB8IFNsb3QgaW50OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6 IENhcHM6ICAgICAweDQ0NmNjOGIyIHwgTWF4IGN1cnI6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1z bG90MDogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpzZGhjaV9w Y2kwLXNsb3QwOiAgQ29udHJvbGxlciB0aW1lb3V0CnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09 PT09PT09IFJFR0lTVEVSIERVTVAgPT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogU3lz IGFkZHI6IDB4MDAwMDAwMDAgfCBWZXJzaW9uOiAgMHgwMDAwMTAwMgpzZGhjaV9wY2kwLXNsb3Qw OiBCbGsgc2l6ZTogMHgwMDAwMDAwMCB8IEJsayBjbnQ6ICAweDAwMDAwMDAwCnNkaGNpX3BjaTAt c2xvdDA6IEFyZ3VtZW50OiAweDAwMDAwMWFhIHwgVHJuIG1vZGU6IDB4MDAwMDAwMDAKc2RoY2lf cGNpMC1zbG90MDogUHJlc2VudDogIDB4MWZmZjAwMDEgfCBIb3N0IGN0bDogMHgwMDAwMDAwMQpz ZGhjaV9wY2kwLXNsb3QwOiBQb3dlcjogICAgMHgwMDAwMDAwMCB8IEJsayBnYXA6ICAweDAwMDAw MDgwCnNkaGNpX3BjaTAtc2xvdDA6IFdha2UtdXA6ICAweDAwMDAwMDAwIHwgQ2xvY2s6ICAgIDB4 MDAwMGZhMDcKc2RoY2lfcGNpMC1zbG90MDogVGltZW91dDogIDB4MDAwMDAwMDAgfCBJbnQgc3Rh dDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBJbnQgZW5hYjogMHgwMWZmMDBmYiB8IFNp ZyBlbmFiOiAweDAxZmYwMGZiCnNkaGNpX3BjaTAtc2xvdDA6IEFDMTIgZXJyOiAweDAwMDAwMDAw IHwgU2xvdCBpbnQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQ2FwczogICAgIDB4NDQ2 Y2M4YjIgfCBNYXggY3VycjogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xvdDA6ICBDb250 cm9sbGVyIHRpbWVvdXQKc2RoY2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT0gUkVHSVNURVIg RFVNUCA9PT09PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiBTeXMgYWRkcjogMHgwMDAwMDAw MCB8IFZlcnNpb246ICAweDAwMDAxMDAyCnNkaGNpX3BjaTAtc2xvdDA6IEJsayBzaXplOiAweDAw MDAwMDAwIHwgQmxrIGNudDogIDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQXJndW1lbnQ6 IDB4MDAwMDAxYWEgfCBUcm4gbW9kZTogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBQcmVz ZW50OiAgMHgxZmZmMDAwMSB8IEhvc3QgY3RsOiAweDAwMDAwMDAxCnNkaGNpX3BjaTAtc2xvdDA6 IFBvd2VyOiAgICAweDAwMDAwMDAwIHwgQmxrIGdhcDogIDB4MDAwMDAwODAKc2RoY2lfcGNpMC1z bG90MDogV2FrZS11cDogIDB4MDAwMDAwMDAgfCBDbG9jazogICAgMHgwMDAwZmEwNwpzZGhjaV9w Y2kwLXNsb3QwOiBUaW1lb3V0OiAgMHgwMDAwMDAwMCB8IEludCBzdGF0OiAweDAwMDAwMDAwCnNk aGNpX3BjaTAtc2xvdDA6IEludCBlbmFiOiAweDAxZmYwMGZiIHwgU2lnIGVuYWI6IDB4MDFmZjAw ZmIKc2RoY2lfcGNpMC1zbG90MDogQUMxMiBlcnI6IDB4MDAwMDAwMDAgfCBTbG90IGludDogMHgw MDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBDYXBzOiAgICAgMHg0NDZjYzhiMiB8IE1heCBjdXJy OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogIENvbnRyb2xsZXIgdGltZW91dApz ZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PSBSRUdJU1RFUiBEVU1QID09PT09PT09PT09 PT09CnNkaGNpX3BjaTAtc2xvdDA6IFN5cyBhZGRyOiAweDAwMDAwMDAwIHwgVmVyc2lvbjogIDB4 MDAwMDEwMDIKc2RoY2lfcGNpMC1zbG90MDogQmxrIHNpemU6IDB4MDAwMDAwMDAgfCBCbGsgY250 OiAgMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBBcmd1bWVudDogMHgwMDAwMDAwMCB8IFRy biBtb2RlOiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IFByZXNlbnQ6ICAweDFmZmYwMDAx IHwgSG9zdCBjdGw6IDB4MDAwMDAwMDEKc2RoY2lfcGNpMC1zbG90MDogUG93ZXI6ICAgIDB4MDAw MDAwMDAgfCBCbGsgZ2FwOiAgMHgwMDAwMDA4MApzZGhjaV9wY2kwLXNsb3QwOiBXYWtlLXVwOiAg MHgwMDAwMDAwMCB8IENsb2NrOiAgICAweDAwMDBmYTA3CnNkaGNpX3BjaTAtc2xvdDA6IFRpbWVv dXQ6ICAweDAwMDAwMDAwIHwgSW50IHN0YXQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDog SW50IGVuYWI6IDB4MDFmZjAwZmIgfCBTaWcgZW5hYjogMHgwMWZmMDBmYgpzZGhjaV9wY2kwLXNs b3QwOiBBQzEyIGVycjogMHgwMDAwMDAwMCB8IFNsb3QgaW50OiAweDAwMDAwMDAwCnNkaGNpX3Bj aTAtc2xvdDA6IENhcHM6ICAgICAweDQ0NmNjOGIyIHwgTWF4IGN1cnI6IDB4MDAwMDAwMDAKc2Ro Y2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PQpzZGhjaV9wY2kwLXNsb3QwOiAgQ29udHJvbGxlciB0aW1lb3V0CnNkaGNpX3BjaTAtc2xvdDA6 ID09PT09PT09PT09PT09IFJFR0lTVEVSIERVTVAgPT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1z bG90MDogU3lzIGFkZHI6IDB4MDAwMDAwMDAgfCBWZXJzaW9uOiAgMHgwMDAwMTAwMgpzZGhjaV9w Y2kwLXNsb3QwOiBCbGsgc2l6ZTogMHgwMDAwMDAwMCB8IEJsayBjbnQ6ICAweDAwMDAwMDAwCnNk aGNpX3BjaTAtc2xvdDA6IEFyZ3VtZW50OiAweDAwMDAwMDAwIHwgVHJuIG1vZGU6IDB4MDAwMDAw MDAKc2RoY2lfcGNpMC1zbG90MDogUHJlc2VudDogIDB4MWZmZjAwMDEgfCBIb3N0IGN0bDogMHgw MDAwMDAwMQpzZGhjaV9wY2kwLXNsb3QwOiBQb3dlcjogICAgMHgwMDAwMDAwMCB8IEJsayBnYXA6 ICAweDAwMDAwMDgwCnNkaGNpX3BjaTAtc2xvdDA6IFdha2UtdXA6ICAweDAwMDAwMDAwIHwgQ2xv Y2s6ICAgIDB4MDAwMGZhMDcKc2RoY2lfcGNpMC1zbG90MDogVGltZW91dDogIDB4MDAwMDAwMDAg fCBJbnQgc3RhdDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBJbnQgZW5hYjogMHgwMWZm MDBmYiB8IFNpZyBlbmFiOiAweDAxZmYwMGZiCnNkaGNpX3BjaTAtc2xvdDA6IEFDMTIgZXJyOiAw eDAwMDAwMDAwIHwgU2xvdCBpbnQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogQ2Fwczog ICAgIDB4NDQ2Y2M4YjIgfCBNYXggY3VycjogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiA9 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xv dDA6ICBDb250cm9sbGVyIHRpbWVvdXQKc2RoY2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT0g UkVHSVNURVIgRFVNUCA9PT09PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiBTeXMgYWRkcjog MHgwMDAwMDAwMCB8IFZlcnNpb246ICAweDAwMDAxMDAyCnNkaGNpX3BjaTAtc2xvdDA6IEJsayBz aXplOiAweDAwMDAwMDAwIHwgQmxrIGNudDogIDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDog QXJndW1lbnQ6IDB4MDAwMDAwMDAgfCBUcm4gbW9kZTogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNs b3QwOiBQcmVzZW50OiAgMHgxZmZmMDAwMSB8IEhvc3QgY3RsOiAweDAwMDAwMDAxCnNkaGNpX3Bj aTAtc2xvdDA6IFBvd2VyOiAgICAweDAwMDAwMDAwIHwgQmxrIGdhcDogIDB4MDAwMDAwODAKc2Ro Y2lfcGNpMC1zbG90MDogV2FrZS11cDogIDB4MDAwMDAwMDAgfCBDbG9jazogICAgMHgwMDAwZmEw NwpzZGhjaV9wY2kwLXNsb3QwOiBUaW1lb3V0OiAgMHgwMDAwMDAwMCB8IEludCBzdGF0OiAweDAw MDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEludCBlbmFiOiAweDAxZmYwMGZiIHwgU2lnIGVuYWI6 IDB4MDFmZjAwZmIKc2RoY2lfcGNpMC1zbG90MDogQUMxMiBlcnI6IDB4MDAwMDAwMDAgfCBTbG90 IGludDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBDYXBzOiAgICAgMHg0NDZjYzhiMiB8 IE1heCBjdXJyOiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogIENvbnRyb2xsZXIg dGltZW91dApzZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PSBSRUdJU1RFUiBEVU1QID09 PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xvdDA6IFN5cyBhZGRyOiAweDAwMDAwMDAwIHwgVmVy c2lvbjogIDB4MDAwMDEwMDIKc2RoY2lfcGNpMC1zbG90MDogQmxrIHNpemU6IDB4MDAwMDAwMDAg fCBCbGsgY250OiAgMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBBcmd1bWVudDogMHgwMDAw MDAwMCB8IFRybiBtb2RlOiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IFByZXNlbnQ6ICAw eDFmZmYwMDAxIHwgSG9zdCBjdGw6IDB4MDAwMDAwMDEKc2RoY2lfcGNpMC1zbG90MDogUG93ZXI6 ICAgIDB4MDAwMDAwMDAgfCBCbGsgZ2FwOiAgMHgwMDAwMDA4MApzZGhjaV9wY2kwLXNsb3QwOiBX YWtlLXVwOiAgMHgwMDAwMDAwMCB8IENsb2NrOiAgICAweDAwMDBmYTA3CnNkaGNpX3BjaTAtc2xv dDA6IFRpbWVvdXQ6ICAweDAwMDAwMDAwIHwgSW50IHN0YXQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNp MC1zbG90MDogSW50IGVuYWI6IDB4MDFmZjAwZmIgfCBTaWcgZW5hYjogMHgwMWZmMDBmYgpzZGhj aV9wY2kwLXNsb3QwOiBBQzEyIGVycjogMHgwMDAwMDAwMCB8IFNsb3QgaW50OiAweDAwMDAwMDAw CnNkaGNpX3BjaTAtc2xvdDA6IENhcHM6ICAgICAweDQ0NmNjOGIyIHwgTWF4IGN1cnI6IDB4MDAw MDAwMDAKc2RoY2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiAgQ29udHJvbGxlciB0aW1lb3V0CnNkaGNpX3Bj aTAtc2xvdDA6ID09PT09PT09PT09PT09IFJFR0lTVEVSIERVTVAgPT09PT09PT09PT09PT0Kc2Ro Y2lfcGNpMC1zbG90MDogU3lzIGFkZHI6IDB4MDAwMDAwMDAgfCBWZXJzaW9uOiAgMHgwMDAwMTAw MgpzZGhjaV9wY2kwLXNsb3QwOiBCbGsgc2l6ZTogMHgwMDAwMDAwMCB8IEJsayBjbnQ6ICAweDAw MDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEFyZ3VtZW50OiAweDAwMDAwMDAwIHwgVHJuIG1vZGU6 IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogUHJlc2VudDogIDB4MWZmZjAwMDEgfCBIb3N0 IGN0bDogMHgwMDAwMDAwMQpzZGhjaV9wY2kwLXNsb3QwOiBQb3dlcjogICAgMHgwMDAwMDAwMCB8 IEJsayBnYXA6ICAweDAwMDAwMDgwCnNkaGNpX3BjaTAtc2xvdDA6IFdha2UtdXA6ICAweDAwMDAw MDAwIHwgQ2xvY2s6ICAgIDB4MDAwMGZhMDcKc2RoY2lfcGNpMC1zbG90MDogVGltZW91dDogIDB4 MDAwMDAwMDAgfCBJbnQgc3RhdDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBJbnQgZW5h YjogMHgwMWZmMDBmYiB8IFNpZyBlbmFiOiAweDAxZmYwMGZiCnNkaGNpX3BjaTAtc2xvdDA6IEFD MTIgZXJyOiAweDAwMDAwMDAwIHwgU2xvdCBpbnQ6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90 MDogQ2FwczogICAgIDB4NDQ2Y2M4YjIgfCBNYXggY3VycjogMHgwMDAwMDAwMApzZGhjaV9wY2kw LXNsb3QwOiA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CnNkaGNp X3BjaTAtc2xvdDA6ICBDb250cm9sbGVyIHRpbWVvdXQKc2RoY2lfcGNpMC1zbG90MDogPT09PT09 PT09PT09PT0gUkVHSVNURVIgRFVNUCA9PT09PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiBT eXMgYWRkcjogMHgwMDAwMDAwMCB8IFZlcnNpb246ICAweDAwMDAxMDAyCnNkaGNpX3BjaTAtc2xv dDA6IEJsayBzaXplOiAweDAwMDAwMDAwIHwgQmxrIGNudDogIDB4MDAwMDAwMDAKc2RoY2lfcGNp MC1zbG90MDogQXJndW1lbnQ6IDB4MDAwMDAwMDAgfCBUcm4gbW9kZTogMHgwMDAwMDAwMApzZGhj aV9wY2kwLXNsb3QwOiBQcmVzZW50OiAgMHgxZmZmMDAwMSB8IEhvc3QgY3RsOiAweDAwMDAwMDAx CnNkaGNpX3BjaTAtc2xvdDA6IFBvd2VyOiAgICAweDAwMDAwMDAwIHwgQmxrIGdhcDogIDB4MDAw MDAwODAKc2RoY2lfcGNpMC1zbG90MDogV2FrZS11cDogIDB4MDAwMDAwMDAgfCBDbG9jazogICAg MHgwMDAwZmEwNwpzZGhjaV9wY2kwLXNsb3QwOiBUaW1lb3V0OiAgMHgwMDAwMDAwMCB8IEludCBz dGF0OiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEludCBlbmFiOiAweDAxZmYwMGZiIHwg U2lnIGVuYWI6IDB4MDFmZjAwZmIKc2RoY2lfcGNpMC1zbG90MDogQUMxMiBlcnI6IDB4MDAwMDAw MDAgfCBTbG90IGludDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBDYXBzOiAgICAgMHg0 NDZjYzhiMiB8IE1heCBjdXJyOiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogIENv bnRyb2xsZXIgdGltZW91dApzZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PSBSRUdJU1RF UiBEVU1QID09PT09PT09PT09PT09CnNkaGNpX3BjaTAtc2xvdDA6IFN5cyBhZGRyOiAweDAwMDAw MDAwIHwgVmVyc2lvbjogIDB4MDAwMDEwMDIKc2RoY2lfcGNpMC1zbG90MDogQmxrIHNpemU6IDB4 MDAwMDAwMDAgfCBCbGsgY250OiAgMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3QwOiBBcmd1bWVu dDogMHgwMDAwMDAwMCB8IFRybiBtb2RlOiAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IFBy ZXNlbnQ6ICAweDFmZmYwMDAxIHwgSG9zdCBjdGw6IDB4MDAwMDAwMDEKc2RoY2lfcGNpMC1zbG90 MDogUG93ZXI6ICAgIDB4MDAwMDAwMDAgfCBCbGsgZ2FwOiAgMHgwMDAwMDA4MApzZGhjaV9wY2kw LXNsb3QwOiBXYWtlLXVwOiAgMHgwMDAwMDAwMCB8IENsb2NrOiAgICAweDAwMDBmYTA3CnNkaGNp X3BjaTAtc2xvdDA6IFRpbWVvdXQ6ICAweDAwMDAwMDAwIHwgSW50IHN0YXQ6IDB4MDAwMDAwMDAK c2RoY2lfcGNpMC1zbG90MDogSW50IGVuYWI6IDB4MDFmZjAwZmIgfCBTaWcgZW5hYjogMHgwMWZm MDBmYgpzZGhjaV9wY2kwLXNsb3QwOiBBQzEyIGVycjogMHgwMDAwMDAwMCB8IFNsb3QgaW50OiAw eDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IENhcHM6ICAgICAweDQ0NmNjOGIyIHwgTWF4IGN1 cnI6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PQpzZGhjaV9wY2kwLXNsb3QwOiAgQ29udHJvbGxlciB0aW1lb3V0 CnNkaGNpX3BjaTAtc2xvdDA6ID09PT09PT09PT09PT09IFJFR0lTVEVSIERVTVAgPT09PT09PT09 PT09PT0Kc2RoY2lfcGNpMC1zbG90MDogU3lzIGFkZHI6IDB4MDAwMDAwMDAgfCBWZXJzaW9uOiAg MHgwMDAwMTAwMgpzZGhjaV9wY2kwLXNsb3QwOiBCbGsgc2l6ZTogMHgwMDAwMDAwMCB8IEJsayBj bnQ6ICAweDAwMDAwMDAwCnNkaGNpX3BjaTAtc2xvdDA6IEFyZ3VtZW50OiAweDAwMDAwMDAwIHwg VHJuIG1vZGU6IDB4MDAwMDAwMDAKc2RoY2lfcGNpMC1zbG90MDogUHJlc2VudDogIDB4MWZmZjAw MDEgfCBIb3N0IGN0bDogMHgwMDAwMDAwMQpzZGhjaV9wY2kwLXNsb3QwOiBQb3dlcjogICAgMHgw MDAwMDAwMCB8IEJsayBnYXA6ICAweDAwMDAwMDgwCnNkaGNpX3BjaTAtc2xvdDA6IFdha2UtdXA6 ICAweDAwMDAwMDAwIHwgQ2xvY2s6ICAgIDB4MDAwMGZhMDcKc2RoY2lfcGNpMC1zbG90MDogVGlt ZW91dDogIDB4MDAwMDAwMDAgfCBJbnQgc3RhdDogMHgwMDAwMDAwMApzZGhjaV9wY2kwLXNsb3Qw OiBJbnQgZW5hYjogMHgwMWZmMDBmYiB8IFNpZyBlbmFiOiAweDAxZmYwMGZiCnNkaGNpX3BjaTAt c2xvdDA6IEFDMTIgZXJyOiAweDAwMDAwMDAwIHwgU2xvdCBpbnQ6IDB4MDAwMDAwMDAKc2RoY2lf cGNpMC1zbG90MDogQ2FwczogICAgIDB4NDQ2Y2M4YjIgfCBNYXggY3VycjogMHgwMDAwMDAwMApz ZGhjaV9wY2kwLXNsb3QwOiA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09Cm1tYzA6IE5vIGNvbXBhdGlibGUgY2FyZHMgZm91bmQgb24gYnVzCmhkYWNjMDogPFJlYWx0 ZWsgKDB4MDIzNSkgSERBIENPREVDPiBhdCBjYWQgMCBvbiBoZGFjMApoZGFhMDogPFJlYWx0ZWsg KDB4MDIzNSkgQXVkaW8gRnVuY3Rpb24gR3JvdXA+IGF0IG5pZCAxIG9uIGhkYWNjMApwY20wOiA8 UmVhbHRlayAoMHgwMjM1KSAoSW50ZXJuYWwgQW5hbG9nKT4gYXQgbmlkIDIwIGFuZCAxOCBvbiBo ZGFhMApwY20xOiA8UmVhbHRlayAoMHgwMjM1KSAoRnJvbnQgQW5hbG9nIEhlYWRwaG9uZXMpPiBh dCBuaWQgMzMgb24gaGRhYTAKaGRhY2MxOiA8SW50ZWwgKDB4Mjg4MykgSERBIENPREVDPiBhdCBj YWQgMiBvbiBoZGFjMApoZGFhMTogPEludGVsICgweDI4ODMpIEF1ZGlvIEZ1bmN0aW9uIEdyb3Vw PiBhdCBuaWQgMSBvbiBoZGFjYzEKcGNtMjogPEludGVsICgweDI4ODMpIChIRE1JL0RQIDhjaCk+ IGF0IG5pZCA3IG9uIGhkYWExClNNUDogQVAgQ1BVICMxIExhdW5jaGVkIQpUaW1lY291bnRlciAi VFNDIiBmcmVxdWVuY3kgMTYwMDA1NDAwMCBIeiBxdWFsaXR5IDEwMDAKVHJ5aW5nIHRvIG1vdW50 IHJvb3QgZnJvbSB1ZnM6L2Rldi91ZnMvRnJlZUJTRF9JbnN0YWxsIFtydyxub2F0aW1lXS4uLgo= --=_63c0870cc04ea3d00ec51d5f28cb9ab8-- From owner-freebsd-current@freebsd.org Mon Nov 30 17:33:53 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19BD6A3D075 for ; Mon, 30 Nov 2015 17:33:53 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x231.google.com (mail-pa0-x231.google.com [IPv6:2607:f8b0:400e:c03::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DCC081A6F; Mon, 30 Nov 2015 17:33:52 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pabfh17 with SMTP id fh17so196750447pab.0; Mon, 30 Nov 2015 09:33:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=9/64i7Sm7a5JytVYjDYvTP384vtrIQsnEo4y6kLOXPU=; b=ChrPUEA+HLs7PVNZd0fbs9YHcgifKYSQZHOal5Wnh+vBq025W1iArjvgePeWD19OTu 9UM2BfZQWgOz1Kt0BsM9tJzX75ccVY3f64OAlsPBILEMZmn64JwpcJ3gRlOger++PYkF F0QqMfH0BWPiDk9hmeXT++7cBxgO2czNjWiKCdEXnNXvpeXZihIigqULpO6mFIjyFPp7 Z1OO3PdBzHhh3+esqycn3VMtdq8pLiRWi8MCypvuXRApI2/Dl2RqZTtevUsi/Am6yO82 9eol+qosj/wqWQqhmXypay0WtXVUV5c12jwBibwZ/pZNzaSxNxnT6778+mVQT/NL5OTA o+fg== X-Received: by 10.66.55.72 with SMTP id q8mr92658267pap.136.1448904832463; Mon, 30 Nov 2015 09:33:52 -0800 (PST) Received: from [192.168.20.7] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id 9sm52513996pfn.51.2015.11.30.09.33.50 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Nov 2015 09:33:51 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" From: NGie Cooper In-Reply-To: <20151130093949.GH3448@kib.kiev.ua> Date: Mon, 30 Nov 2015 09:33:49 -0800 Cc: "O. Hartmann" , Henry Hu , FreeBSD CURRENT , jhb@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130080759.GG3448@kib.kiev.ua> <20151130100446.1af41a37.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> To: Konstantin Belousov X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 17:33:53 -0000 > On Nov 30, 2015, at 01:39, Konstantin Belousov = wrote: =E2=80=A6 > Just to explicitely state the obvious, the problem is that libkvm = grown > the dependency on libelf after r291406, and libelf lives in /usr. = libkvm > is used before /usr is mounted. >=20 > I do not know what is the best way to handle it. Most simple is to = move > libelf to /lib. How feasible is to move libkvm to /usr/lib (and all > stuff in / which needs libkvm) is the open question. This patch should fix the problem in theory: = https://people.freebsd.org/~ngie/fix-libkvm-use-when-usr-and-root-split.pa= tch Thanks, -NGie= From owner-freebsd-current@freebsd.org Mon Nov 30 17:51:06 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1550DA3D319 for ; Mon, 30 Nov 2015 17:51:06 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3A7B1242 for ; Mon, 30 Nov 2015 17:51:05 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id D8AA7B980; Mon, 30 Nov 2015 12:51:03 -0500 (EST) From: John Baldwin To: NGie Cooper Cc: Konstantin Belousov , "O. Hartmann" , Henry Hu , FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Date: Mon, 30 Nov 2015 09:49 -0800 Message-ID: <1639772.qjkNgKOJT0@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 30 Nov 2015 12:51:03 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 17:51:06 -0000 On Monday, November 30, 2015 09:33:49 AM NGie Cooper wrote: >=20 > > On Nov 30, 2015, at 01:39, Konstantin Belousov wrote: >=20 > =E2=80=A6 >=20 > > Just to explicitely state the obvious, the problem is that libkvm g= rown > > the dependency on libelf after r291406, and libelf lives in /usr. l= ibkvm > > is used before /usr is mounted. > >=20 > > I do not know what is the best way to handle it. Most simple is to = move > > libelf to /lib. How feasible is to move libkvm to /usr/lib (and all= > > stuff in / which needs libkvm) is the open question. >=20 > This patch should fix the problem in theory: https://people.freebsd.o= rg/~ngie/fix-libkvm-use-when-usr-and-root-split.patch > Thanks, Looks fine to me if kib@ is ok with it. --=20 John Baldwin From owner-freebsd-current@freebsd.org Mon Nov 30 18:05:04 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00D62A3D5B9 for ; Mon, 30 Nov 2015 18:05:04 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x235.google.com (mail-pa0-x235.google.com [IPv6:2607:f8b0:400e:c03::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C85D41992; Mon, 30 Nov 2015 18:05:03 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pabfh17 with SMTP id fh17so197567507pab.0; Mon, 30 Nov 2015 10:05:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=dcXzCPtM8HrcdqrhJ7zyt1rE32aj/pKMgo8kaNe+tTU=; b=atU384cl3x0D4LKM3es7vOynmo8vsochDcRZbWAs/O9paGpNYMtodrhLTC3ybzkKHh Um+KcScosLzjC0G6D1kSy+yS0cK6GJzc2zzNW+nAeddQ+2+tRoup3UTqFseMXVINhi/a OOSAB72Eg07XqyHQsac7Kmtmg0G4Y9QXd7ePsnn39+yMNxck9eu7Fbjm112TJ83M/wD5 2Tncu00aCIVBUl/gtP0YszuuvZdt38A4tT5M2ANltG0o4NX8NCOGGRAsIEyjlUS3eEtE 8KAQhHfR4WwcVMsw/iCFTE5j/nG45qPCWi9QWOSE6KTNkA9Z+B3Q16M3XGixaIZ8JTTB KbmA== X-Received: by 10.67.5.98 with SMTP id cl2mr7297590pad.157.1448906703369; Mon, 30 Nov 2015 10:05:03 -0800 (PST) Received: from [192.168.20.7] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id n16sm52614428pfa.53.2015.11.30.10.05.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Nov 2015 10:05:01 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" From: NGie Cooper In-Reply-To: <1639772.qjkNgKOJT0@ralph.baldwin.cx> Date: Mon, 30 Nov 2015 10:04:59 -0800 Cc: Konstantin Belousov , "O. Hartmann" , Henry Hu , FreeBSD CURRENT Content-Transfer-Encoding: quoted-printable Message-Id: <47CD71DA-D2CB-4CB7-A347-0C8A52F0A64D@gmail.com> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> <1639772.qjkNgKOJT0@ralph.baldwin.cx> To: John Baldwin X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 18:05:04 -0000 > On Nov 30, 2015, at 09:49, John Baldwin wrote: >=20 > On Monday, November 30, 2015 09:33:49 AM NGie Cooper wrote: >>=20 >>> On Nov 30, 2015, at 01:39, Konstantin Belousov = wrote: >>=20 >> =E2=80=A6 >>=20 >>> Just to explicitely state the obvious, the problem is that libkvm = grown >>> the dependency on libelf after r291406, and libelf lives in /usr. = libkvm >>> is used before /usr is mounted. >>>=20 >>> I do not know what is the best way to handle it. Most simple is to = move >>> libelf to /lib. How feasible is to move libkvm to /usr/lib (and all >>> stuff in / which needs libkvm) is the open question. >>=20 >> This patch should fix the problem in theory: = https://people.freebsd.org/~ngie/fix-libkvm-use-when-usr-and-root-split.pa= tch >> Thanks, >=20 > Looks fine to me if kib@ is ok with it. I=E2=80=99ll run the patch through make tinderbox on ref11-amd64. Thanks! -NGie= From owner-freebsd-current@freebsd.org Mon Nov 30 18:14:16 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E5ECA3D7DF for ; Mon, 30 Nov 2015 18:14:16 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 172051157; Mon, 30 Nov 2015 18:14:15 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tAUIEA9c043123 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 30 Nov 2015 20:14:10 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tAUIEA9c043123 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tAUIEAk2042729; Mon, 30 Nov 2015 20:14:10 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 30 Nov 2015 20:14:10 +0200 From: Konstantin Belousov To: John Baldwin Cc: NGie Cooper , "O. Hartmann" , Henry Hu , FreeBSD CURRENT Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" Message-ID: <20151130181410.GN3448@kib.kiev.ua> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> <1639772.qjkNgKOJT0@ralph.baldwin.cx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1639772.qjkNgKOJT0@ralph.baldwin.cx> User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 18:14:16 -0000 On Mon, Nov 30, 2015 at 09:49:00AM -0800, John Baldwin wrote: > On Monday, November 30, 2015 09:33:49 AM NGie Cooper wrote: > > > > > On Nov 30, 2015, at 01:39, Konstantin Belousov wrote: > > > > ??? > > > > > Just to explicitely state the obvious, the problem is that libkvm grown > > > the dependency on libelf after r291406, and libelf lives in /usr. libkvm > > > is used before /usr is mounted. > > > > > > I do not know what is the best way to handle it. Most simple is to move > > > libelf to /lib. How feasible is to move libkvm to /usr/lib (and all > > > stuff in / which needs libkvm) is the open question. > > > > This patch should fix the problem in theory: https://people.freebsd.org/~ngie/fix-libkvm-use-when-usr-and-root-split.patch > > Thanks, > > Looks fine to me if kib@ is ok with it. I do not have objections. From owner-freebsd-current@freebsd.org Mon Nov 30 18:20:28 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D94AA3D89B; Mon, 30 Nov 2015 18:20:28 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id ED9AC136D; Mon, 30 Nov 2015 18:20:27 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id D62591C40; Mon, 30 Nov 2015 18:20:27 +0000 (UTC) Date: Mon, 30 Nov 2015 18:20:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mmel@FreeBSD.org, ngie@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <2062622331.313.1448907626700.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <727646234.309.1448899481254.JavaMail.jenkins@jenkins-9.freebsd.org> References: <727646234.309.1448899481254.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1804 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 18:20:28 -0000 FreeBSD_HEAD_i386 - Build #1804 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1804/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1804/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1804/console Change summaries: 291492 by mmel: ARM: create new memory attribute for writethrough cacheable memory. - add new TEX class for WT cacheable memory - export new TEX class to kernel as VM_MEMATTR_WT attribute - add new aliases VM_MEMATTR_WRITE_COMBINING and VM_MEMATTR_WRITE_BACK, it's used in DRM code Note: Only Cortex A8 supports WT caching in HW. On rest of Cortex CPUs, WT requests is treated as uncacheable. Approved by: kib (mentor) 291491 by ngie: Fix the build after ifconfig was converted over to lib80211 in r291470 Reported by: jenkins, O. Hartmann Pointyhat to: adrian From owner-freebsd-current@freebsd.org Mon Nov 30 18:40:57 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50D48A3DC02 for ; Mon, 30 Nov 2015 18:40:57 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03D0A1D5A; Mon, 30 Nov 2015 18:40:56 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a3TNe-001kZ4-CE>; Mon, 30 Nov 2015 19:40:54 +0100 Received: from f052164138.adsl.alicedsl.de ([78.52.164.138] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a3TNe-003cM4-6R>; Mon, 30 Nov 2015 19:40:54 +0100 Date: Mon, 30 Nov 2015 19:40:49 +0100 From: "O. Hartmann" To: NGie Cooper Cc: FreeBSD CURRENT , Adrian Chadd Subject: Re: r 291486: buildworld failure: ifieee80211.c:(.text+0xeb7b): undefined reference to Message-ID: <20151130194049.554309f9.ohartman@zedat.fu-berlin.de> In-Reply-To: <7FBE3B38-E18D-478C-95B3-FF15F6353C93@gmail.com> References: <20151130113630.3fa9ce26.ohartman@zedat.fu-berlin.de> <7FBE3B38-E18D-478C-95B3-FF15F6353C93@gmail.com> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_//axWbB3k1_TAWekNyJzO7Nz"; protocol="application/pgp-signature" X-Originating-IP: 78.52.164.138 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 18:40:57 -0000 --Sig_//axWbB3k1_TAWekNyJzO7Nz Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Am Mon, 30 Nov 2015 08:35:30 -0800 NGie Cooper schrieb: > > On Nov 30, 2015, at 02:36, O. Hartmann wr= ote: > >=20 > > It is hard to build a biuldworld buildkernel system these days :-( > > [=E2=80=A6] =20 >=20 > =E2=80=A6 >=20 > Hi, > This issue should be fixed in r291491. > Thanks, > -NGie Great! Thank you. oh --Sig_//axWbB3k1_TAWekNyJzO7Nz Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXJgxAAoJEOgBcD7A/5N8YyQH/jSQOC8EiMsrvaldVkS530U6 07awhx5HTALptC72YxRMeckpHFb0oiaPsp30zeC9ZCNMWq7q0bE1xKJnOc9WzuKP U6cNUwe2YCCoL7Cb7bc9wso2YER8X9hRrAP6dPPN57sy8xd6aNrvVG0LDi90wXnN ssSFXhISx+yHTx6fVpaGJiSG13iNNjiZd3sa3cp3T+DpsPJStHlI+eHuk3cs3otz J3Nqk4lvB23eO0jjC7n7Kh1gWJo//rKIJG6EZqgi4fMnOcOJvk2VNOu9Kd4hiL5n w3JAtCgA+ElUXD6WGNg55JkjSgnYa4gcRIQzEiU+8alEeHNLf2/1Egovj4gzA7A= =wbuM -----END PGP SIGNATURE----- --Sig_//axWbB3k1_TAWekNyJzO7Nz-- From owner-freebsd-current@freebsd.org Mon Nov 30 19:32:25 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27C4AA3C4EE; Mon, 30 Nov 2015 19:32:25 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3BB01785; Mon, 30 Nov 2015 19:32:24 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id B87EF5A9F12; Mon, 30 Nov 2015 19:23:48 +0000 (UTC) Date: Mon, 30 Nov 2015 19:23:48 +0000 From: Brooks Davis To: Aaron Zauner Cc: Dag-Erling Sm??rgrav , freebsd-security@freebsd.org, freebsd-current@freebsd.org, Dewayne Geraghty , Benjamin Kaduk Subject: Re: OpenSSH HPN Message-ID: <20151130192348.GD81246@spindle.one-eyed-alien.net> References: <86y4e47uty.fsf@desk.des.no> <56436F4B.8050002@FreeBSD.org> <86r3jwfpiq.fsf@desk.des.no> <20151111181339.GE48728@zxy.spb.ru> <86io58flhk.fsf@desk.des.no> <20151111184448.GR31314@zxy.spb.ru> <86egfu9z0j.fsf@desk.des.no> <20151124212613.4ff9b25ea0@80601bfc61c7744> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: <20151124212613.4ff9b25ea0@80601bfc61c7744> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 19:32:25 -0000 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 24, 2015 at 09:29:44PM +0100, Aaron Zauner wrote: > Hi, >=20 > Please forgive my ignorance but what's the reason FreeBSD ships > OpenSSH patched with HPN by default? Besides my passion for > security, I've been working in the HPC sector for a while and > benchmarked the patch for a customer about 1.5 years ago. The > CTR-multi threading patch is actually *slower* than upstream OpenSSH > with AES in CTR mode. GCM being, of course, the fastest mode on > AESNI plattforms. We never imported the AES bits as they were broken and AESNI was available. > The NULL mode is a security concern as some have noted, I can only > imagine that the window-scaling patch is of such importance? Both NULL and window-scaling were merged because both are useful in some environments. -- Brooks --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBAgAGBQJWXKJDAAoJEKzQXbSebgfASrgH/1p/MkvhO0k28KFPB9wE0eKG MwNfbV7LzVJNR7ZZPUZHbvuR4OS1XR497q9yHBEmcpwEDCMqPZazHrSsaam9z46N e1sUcbLzPE1qeWIiHZX4cDddTQZMDkK53Wb368doSPF04SO+FseJWBZi0N0UEcjI RdRXtGkqH4pjvUc9g7HgKrhGQuL8qTpym9QGkfqTla3JrOHYK92DqNU2VNQnDX5T /N3OsD9BprvoQo+rrjwMc0znODGpBFFaxY8LxyCNJFb8k4S69yhrSufoad3/sTFj Q+tPhl01pNKRBxfN0O5Zz1hrx1U36A5OcpNfhcImnK5nI8RfXvqP8cFzdqkgASc= =uiPE -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw-- From owner-freebsd-current@freebsd.org Mon Nov 30 19:45:07 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F154A3C860 for ; Mon, 30 Nov 2015 19:45:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 8FD611D4F; Mon, 30 Nov 2015 19:45:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 7E3E61C73; Mon, 30 Nov 2015 19:45:07 +0000 (UTC) Date: Mon, 30 Nov 2015 19:45:04 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mmel@FreeBSD.org, avos@FreeBSD.org, ngie@FreeBSD.org, rrs@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <189283471.317.1448912707447.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1699002836.311.1448901396957.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1699002836.311.1448901396957.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3595 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 19:45:07 -0000 FreeBSD_HEAD - Build #3595 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3595/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3595/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3595/console Change summaries: 291494 by rrs: Add support for Intel Skylake and Intel Broadwell PMC's. The Broadwell PMC's have been tested on the Broadwell-Xeon with a hacked up version of pmcstudy -T. I still need to circle back and add in to pmcstudy all the new tests from the Broadwell Vtune guide (for the hacked up version I just made it so I could run the -T option). The Skylake CPU is not yet available (even though Intel is advertising it .. imagine that). The Skylake PMC's will need to be tested once we can get a sample skylake CPU :-) Sponsored by: Netflix Inc. 291493 by avos: wpi: ignore ic_update_promisc() call when device is not running This change will fix kernel panic with uninitialized (zeroed) RXON structure. Tested with Intel 3945BG, IBSS mode. Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D4304 291492 by mmel: ARM: create new memory attribute for writethrough cacheable memory. - add new TEX class for WT cacheable memory - export new TEX class to kernel as VM_MEMATTR_WT attribute - add new aliases VM_MEMATTR_WRITE_COMBINING and VM_MEMATTR_WRITE_BACK, it's used in DRM code Note: Only Cortex A8 supports WT caching in HW. On rest of Cortex CPUs, WT requests is treated as uncacheable. Approved by: kib (mentor) 291491 by ngie: Fix the build after ifconfig was converted over to lib80211 in r291470 Reported by: jenkins, O. Hartmann Pointyhat to: adrian From owner-freebsd-current@freebsd.org Mon Nov 30 19:45:54 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF10DA3C8BF for ; Mon, 30 Nov 2015 19:45:54 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id C8D6F1E81 for ; Mon, 30 Nov 2015 19:45:54 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id D35B81C74 for ; Mon, 30 Nov 2015 19:45:54 +0000 (UTC) Date: Mon, 30 Nov 2015 19:45:54 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1302625334.318.1448912754846.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1364918022.277.1448858776375.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1364918022.277.1448858776375.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2818 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 19:45:55 -0000 See ------------------------------------------ [...truncated 4302 lines...] -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> ===> lib/msun/tests (install) install -o root -g wheel -m 444 Kyuafile.auto (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.acos_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=acos_test install) install -s -o root -g wheel -m 555 acos_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.asin_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=asin_test install) install -s -o root -g wheel -m 555 asin_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.atan_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=atan_test install) install -s -o root -g wheel -m 555 atan_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cbrt_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cbrt_test install) install -s -o root -g wheel -m 555 cbrt_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.ceil_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=ceil_test install) install -s -o root -g wheel -m 555 ceil_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cos_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cos_test install) install -s -o root -g wheel -m 555 cos_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cosh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cosh_test install) install -s -o root -g wheel -m 555 cosh_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.erf_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=erf_test install) install -s -o root -g wheel -m 555 erf_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.exp_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=exp_test install) install -s -o root -g wheel -m 555 exp_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.fmod_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=fmod_test install) install -s -o root -g wheel -m 555 fmod_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.infinity_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=infinity_test install) install -s -o root -g wheel -m 555 infinity_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.ldexp_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=ldexp_test install) install -s -o root -g wheel -m 555 ldexp_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.log_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=log_test install) install -s -o root -g wheel -m 555 log_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.pow_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=pow_test install) install -s -o root -g wheel -m 555 pow_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.precision_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=precision_test install) install -s -o root -g wheel -m 555 precision_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.round_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=round_test install) install -s -o root -g wheel -m 555 round_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.scalbn_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=scalbn_test install) install -s -o root -g wheel -m 555 scalbn_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sin_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sin_test install) install -s -o root -g wheel -m 555 sin_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sinh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sinh_test install) install -s -o root -g wheel -m 555 sinh_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sqrt_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sqrt_test install) install -s -o root -g wheel -m 555 sqrt_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.tan_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=tan_test install) install -s -o root -g wheel -m 555 tan_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.tanh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=tanh_test install) install -s -o root -g wheel -m 555 tanh_test ===> lib/libalias (install) ===> lib/libalias/libalias (install) install -C -o root -g wheel -m 444 libalias.a install -C -o root -g wheel -m 444 libalias_p.a install -s -o root -g wheel -m 444 libalias.so.7 install -l rs install -C -o root -g wheel -m 444 /builds/FreeBSD_HEAD/lib/libalias/libalias/../../../sys/netinet/libalias/alias.h install -o root -g wheel -m 444 libalias.3.gz ===> lib/libalias/modules (install) ===> lib/libalias/modules/cuseeme (install) install -C -o root -g wheel -m 444 libalias_cuseeme.a install -C -o root -g wheel -m 444 libalias_cuseeme_p.a install -s -o root -g wheel -m 444 libalias_cuseeme.so ===> lib/libalias/modules/dummy (install) install -C -o root -g wheel -m 444 libalias_dummy.a install -C -o root -g wheel -m 444 libalias_dummy_p.a install -s -o root -g wheel -m 444 libalias_dummy.so ===> lib/libalias/modules/ftp (install) install -C -o root -g wheel -m 444 libalias_ftp.a install -C -o root -g wheel -m 444 libalias_ftp_p.a install -s -o root -g wheel -m 444 libalias_ftp.so ===> lib/libalias/modules/irc (install) install -C -o root -g wheel -m 444 libalias_irc.a install -C -o root -g wheel -m 444 libalias_irc_p.a install -s -o root -g wheel -m 444 libalias_irc.so ===> lib/libalias/modules/nbt (install) install -C -o root -g wheel -m 444 libalias_nbt.a install -C -o root -g wheel -m 444 libalias_nbt_p.a install -s -o root -g wheel -m 444 libalias_nbt.so ===> lib/libalias/modules/pptp (install) install -C -o root -g wheel -m 444 libalias_pptp.a install -C -o root -g wheel -m 444 libalias_pptp_p.a install -s -o root -g wheel -m 444 libalias_pptp.so ===> lib/libalias/modules/skinny (install) install -C -o root -g wheel -m 444 libalias_skinny.a install -C -o root -g wheel -m 444 libalias_skinny_p.a install -s -o root -g wheel -m 444 libalias_skinny.so ===> lib/libalias/modules/smedia (install) install -C -o root -g wheel -m 444 libalias_smedia.a install -C -o root -g wheel -m 444 libalias_smedia_p.a install -s -o root -g wheel -m 444 libalias_smedia.so ===> lib/libarchive (install) install -C -o root -g wheel -m 444 libarchive.a install -C -o root -g wheel -m 444 libarchive_p.a install: libarchive_p.a: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libarchive *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Mon Nov 30 20:28:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EDAC0A3CEAE for ; Mon, 30 Nov 2015 20:28:47 +0000 (UTC) (envelope-from sbruno@freebsd.org) Received: from mail.ignoranthack.me (ignoranthack.me [199.102.79.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1A501DAD; Mon, 30 Nov 2015 20:28:47 +0000 (UTC) (envelope-from sbruno@freebsd.org) Received: from [192.168.200.208] (unknown [50.136.155.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: sbruno@ignoranthack.me) by mail.ignoranthack.me (Postfix) with ESMTPSA id AF56A192AD1; Mon, 30 Nov 2015 20:28:39 +0000 (UTC) Subject: Re: sys/modules "make clean" seems broken again To: Warner Losh , John Baldwin References: <564E0322.8050308@freebsd.org> <3514235.7QMnNNElsE@ralph.baldwin.cx> Cc: FreeBSD Current From: Sean Bruno Message-ID: <565CB176.4070906@freebsd.org> Date: Mon, 30 Nov 2015 12:28:38 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 20:28:48 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 11/19/15 15:42, Warner Losh wrote: > > > On Thu, Nov 19, 2015 at 11:12 AM, John Baldwin > wrote: > > On Thursday, November 19, 2015 09:13:06 AM Sean Bruno wrote: >> I thought I fixed this a year or two ago, but now a "make clean" >> in sys/modules seems to leave bus_if.h device_if.h and pci_if.h >> in the directory. >> >> Should I just add these to the clean targets? > > Blame Warner as his MFILES changes broke this. In particular, see > r287263 which turned off cleaning these up. I'm not sure what that > broke that caused it to be disabled. > > Your change is a gross hack though. > > > Yes. The reason I had to break it was that there were a few files > named _if.c and _if.h in the tree that would get deleted when make > clean was run in the modules. > > I'll take another run at fixing this. Sean's "fix" is a horrible > hack. > > Warner Just bouncing a ping here. I haven't actually checked to see if the last weeks' commits to head fixed this, but I suspect this hasn't been addressed. What do we want to do different if not this hackery I propose? sean -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAEBCgBmBQJWXLFzXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCQUFENDYzMkU3MTIxREU4RDIwOTk3REQx MjAxRUZDQTFFNzI3RTY0AAoJEBIB78oecn5kQGgH/0f9VFqsC2v/CxFSn/oB+n8t 6OwiSZzCQ6D9DQJ259kTFPUXBpOvoDOCrmqxklx0dPov9X9np601CtYlLdz3Ozrk P3Pg6KrxAq9dZU2TGMm3SSsho6LTvPJ93Up+m0ekk8KRmhntemk1AoUtxShrUFZi OdEaSxWFfar1cc/6UYhtqXmKcBZXnxdQGkVe0aFCJJDCyuCLWMuIXSO+vjHWvFYF NUj2fhBHfr1PNX1Hao4j4aR3VfUpLTDclfW0f8e3ABJo2cQ07w935kCPkZQau/8f ongD795281LJdgamYtB/A0r63xQgzXqeJV6Gk0SRTXU75NUArWfGiweEtMd6wfw= =RB/W -----END PGP SIGNATURE----- From owner-freebsd-current@freebsd.org Mon Nov 30 20:49:59 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D2EBA3D4F2 for ; Mon, 30 Nov 2015 20:49:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 52FAF1B61; Mon, 30 Nov 2015 20:49:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 6E0B51C9A; Mon, 30 Nov 2015 20:49:59 +0000 (UTC) Date: Mon, 30 Nov 2015 20:49:10 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mmel@FreeBSD.org, avos@FreeBSD.org, ngie@FreeBSD.org, arybchik@FreeBSD.org, rrs@FreeBSD.org, bdrewery@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1384663810.320.1448916598494.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <45216569.295.1448881020894.JavaMail.jenkins@jenkins-9.freebsd.org> References: <45216569.295.1448881020894.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #852 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 20:49:59 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #852 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/852/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/852/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/852/console Change summaries: 291495 by bdrewery: libllvmmirparser and libllvmlibdriver are only used in usr.bin/clang/llc and usr.bin/clang/llvm-ar, respectively, when MK_CLANG_EXTRAS is yes. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division 291494 by rrs: Add support for Intel Skylake and Intel Broadwell PMC's. The Broadwell PMC's have been tested on the Broadwell-Xeon with a hacked up version of pmcstudy -T. I still need to circle back and add in to pmcstudy all the new tests from the Broadwell Vtune guide (for the hacked up version I just made it so I could run the -T option). The Skylake CPU is not yet available (even though Intel is advertising it .. imagine that). The Skylake PMC's will need to be tested once we can get a sample skylake CPU :-) Sponsored by: Netflix Inc. 291493 by avos: wpi: ignore ic_update_promisc() call when device is not running This change will fix kernel panic with uninitialized (zeroed) RXON structure. Tested with Intel 3945BG, IBSS mode. Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D4304 291492 by mmel: ARM: create new memory attribute for writethrough cacheable memory. - add new TEX class for WT cacheable memory - export new TEX class to kernel as VM_MEMATTR_WT attribute - add new aliases VM_MEMATTR_WRITE_COMBINING and VM_MEMATTR_WRITE_BACK, it's used in DRM code Note: Only Cortex A8 supports WT caching in HW. On rest of Cortex CPUs, WT requests is treated as uncacheable. Approved by: kib (mentor) 291491 by ngie: Fix the build after ifconfig was converted over to lib80211 in r291470 Reported by: jenkins, O. Hartmann Pointyhat to: adrian 291488 by arybchik: sfxge: avoid TSO packets collapses bacause of not 2K aligned data Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D4310 From owner-freebsd-current@freebsd.org Mon Nov 30 21:12:37 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FD6EA3D94E for ; Mon, 30 Nov 2015 21:12:37 +0000 (UTC) (envelope-from henry.hu.sh@gmail.com) Received: from mail-vk0-x236.google.com (mail-vk0-x236.google.com [IPv6:2607:f8b0:400c:c05::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B44519FC for ; Mon, 30 Nov 2015 21:12:37 +0000 (UTC) (envelope-from henry.hu.sh@gmail.com) Received: by vkca188 with SMTP id a188so55241462vkc.0 for ; Mon, 30 Nov 2015 13:12:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=SpENJyKN1Xv45jiYFa1H0DPmG/IFIyO1zZ110SZTlz0=; b=wbrVJMNcZ0E2wLzaKqGtCHOWzF/JURuzxrwBVPvaBhyehmOL2H78FjsvSb9ouH1BYk pPOb2Hum0I0eLxH6Nd29cM9Qu1hlnlusbovf42zm4nGm2WRdKfk4EzQQbSMuChOhBgSR N5uNm4XsS3C1sDCFcnjhYRgGxzN3TyjXaYy/uKQseouLXxHTmCwPK89L/tlqrPLbBiBQ 6f2LLuiNoH7KoUSH5ssssWYzGTtKaJ6fi78d1gkAA2Rff/vKaEwqmq44dlUVEC+6JZKk LSgmpsyh1JqOSTOXrfe0YKZy7mO1A2TE1giH9Tw5aEBRveYCZXEQZ7d6laVMi5me1OoY NVAw== X-Received: by 10.31.151.200 with SMTP id z191mr18844864vkd.57.1448917956139; Mon, 30 Nov 2015 13:12:36 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.0.4 with HTTP; Mon, 30 Nov 2015 13:11:56 -0800 (PST) In-Reply-To: References: From: Henry Hu Date: Mon, 30 Nov 2015 16:11:56 -0500 Message-ID: Subject: Re: SSD on Acer Aspire One Cloudbook 11 To: =?UTF-8?B?Sm9zw6kgUMOpcmV6?= Cc: FreeBSD CURRENT Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:12:37 -0000 On Mon, Nov 30, 2015 at 12:00 PM, Jos=C3=A9 P=C3=A9rez wrote= : > Hi guys, > I cannot see the SSD disk on an Acer Aspire One Cloudbook 11. > > It's a MMC drive, but sdhci cannot find it. Boot logs are plenty of > "Controller timeout" (see attached dmesg) and an unfortunate "mmc0: No > compatible cards found on bus". > > Apparently SDHCI can recognize the hardware: > sdhci_pci0@pci0:0:16:0: class=3D0x080501 card=3D0x106c1025 chip=3D0x22948= 086 > rev=3D0x21 hdr=3D0x00 > vendor =3D 'Intel Corporation' > class =3D base peripheral > subclass =3D SD host controller > > Is this a problem with the specific chip? Any suggestion to have this > working? Thank you > You may try to boot the machine with Linux and check if the drive is connected through a sdhci-acpi controller. This is the case on a Surface 3. YMMV. > > Regards, > > -- > Jos=C3=A9 P=C3=A9rez > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org= " > --=20 Cheers, Henry From owner-freebsd-current@freebsd.org Mon Nov 30 21:44:56 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11C6AA3D7AC for ; Mon, 30 Nov 2015 21:44:56 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: from mail-qg0-x22b.google.com (mail-qg0-x22b.google.com [IPv6:2607:f8b0:400d:c04::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B87F312F2 for ; Mon, 30 Nov 2015 21:44:55 +0000 (UTC) (envelope-from wlosh@bsdimp.com) Received: by qgec40 with SMTP id c40so129756980qge.2 for ; Mon, 30 Nov 2015 13:44:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsdimp-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=L7rbcws1bih1ZSote5qFJfJLjXuGLVUYaWwrWD5b3yY=; b=wa8IV2Ts+B1ISvhj28Gvw5eA15oJ3Pv5RYo4r12kLAY+OD82Aou1ISRMZ3uY+fhMIS KsTaNlShdMBozhe/DxCQXQZiDwOgC/22HXkyCNh0FrA4SfyQprbVWMWloPB1PgfgdSFG XK/dfzT9E6ormXNEVTyHU+rk8/GuqSRvWRseQ5quqi9m8rOb6WhpL5kuZe4YefGxVGX1 QmBbgUFxWRMEtJCUuI7vTs8rmqcjaKQvrRSDAW8mNuSK854DnwR/UK/h6jACi8SdrpfG nOKL3Zra6goOLtZazZxzFoTIuGUJWdGxAD9gItyhWH6fSmPrk+DLsu7Tte7wchB6om1z k5cQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=L7rbcws1bih1ZSote5qFJfJLjXuGLVUYaWwrWD5b3yY=; b=Wk97ZlYolzPUQF4jExsD29K9W3rXzqK3aW3UFxXNxvP3XmTNIuxml4hEyh78Qeu2EG lNUwRdQPslnH+vFRuYpS9x2MkyS4dAE8E0hZJ7+gqNl+KguGMA2NUI8bqqL+u3aSUWiZ fs2TOs1AJHopGzBPcYUxMgMOOdlhHjnC9LoPogmAOSJs0sdgYhbce2QlL4EGUriN/Yvs kiQS9N4xzwKeUI11Q1uA9OH5OL1L/BR98AjBaVBBPfxnee+AZ1nJ+Qf6zxG7KAnL/UXy I+EBDX1e2tcB2WnfEclUTTSgBJtrpyv86TO9ZOsBgcGCUUnKmhsgPvB6hW0KgifjEvtk 3GWw== X-Gm-Message-State: ALoCoQlg7V1eaNgips7iymt955JAmrZA12vKNXiOlmADT7gPALUvPNtj0xJ1O1nQbLNFD3QwWGJk MIME-Version: 1.0 X-Received: by 10.140.40.38 with SMTP id w35mr76335448qgw.52.1448919894661; Mon, 30 Nov 2015 13:44:54 -0800 (PST) Sender: wlosh@bsdimp.com Received: by 10.140.27.181 with HTTP; Mon, 30 Nov 2015 13:44:54 -0800 (PST) X-Originating-IP: [69.53.245.31] In-Reply-To: <565CB176.4070906@freebsd.org> References: <564E0322.8050308@freebsd.org> <3514235.7QMnNNElsE@ralph.baldwin.cx> <565CB176.4070906@freebsd.org> Date: Mon, 30 Nov 2015 14:44:54 -0700 X-Google-Sender-Auth: kLhyZqNGREeAE7QS2q0aETaJ7qM Message-ID: Subject: Re: sys/modules "make clean" seems broken again From: Warner Losh To: Sean Bruno Cc: John Baldwin , FreeBSD Current Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:44:56 -0000 On Mon, Nov 30, 2015 at 1:28 PM, Sean Bruno wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA512 > > > > On 11/19/15 15:42, Warner Losh wrote: > > > > > > On Thu, Nov 19, 2015 at 11:12 AM, John Baldwin > > wrote: > > > > On Thursday, November 19, 2015 09:13:06 AM Sean Bruno wrote: > >> I thought I fixed this a year or two ago, but now a "make clean" > >> in sys/modules seems to leave bus_if.h device_if.h and pci_if.h > >> in the directory. > >> > >> Should I just add these to the clean targets? > > > > Blame Warner as his MFILES changes broke this. In particular, see > > r287263 which turned off cleaning these up. I'm not sure what that > > broke that caused it to be disabled. > > > > Your change is a gross hack though. > > > > > > Yes. The reason I had to break it was that there were a few files > > named _if.c and _if.h in the tree that would get deleted when make > > clean was run in the modules. > > > > I'll take another run at fixing this. Sean's "fix" is a horrible > > hack. > > > > Warner > > > Just bouncing a ping here. I haven't actually checked to see if the > last weeks' commits to head fixed this, but I suspect this hasn't been > addressed. What do we want to do different if not this hackery I propose? > Your hackery wouldn't actually fix it completely, just mostly for a common case. Warner From owner-freebsd-current@freebsd.org Mon Nov 30 22:46:16 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C288CA3D8E3 for ; Mon, 30 Nov 2015 22:46:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id AC9401DD5 for ; Mon, 30 Nov 2015 22:46:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 134A81CE6 for ; Mon, 30 Nov 2015 22:46:15 +0000 (UTC) Date: Mon, 30 Nov 2015 22:46:14 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1100429702.323.1448923574424.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1302625334.318.1448912754846.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1302625334.318.1448912754846.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2819 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:46:16 -0000 See ------------------------------------------ [...truncated 4302 lines...] -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> -> ===> lib/msun/tests (install) install -o root -g wheel -m 444 Kyuafile.auto (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.acos_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=acos_test install) install -s -o root -g wheel -m 555 acos_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.asin_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=asin_test install) install -s -o root -g wheel -m 555 asin_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.atan_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=atan_test install) install -s -o root -g wheel -m 555 atan_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cbrt_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cbrt_test install) install -s -o root -g wheel -m 555 cbrt_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.ceil_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=ceil_test install) install -s -o root -g wheel -m 555 ceil_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cos_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cos_test install) install -s -o root -g wheel -m 555 cos_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.cosh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=cosh_test install) install -s -o root -g wheel -m 555 cosh_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.erf_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=erf_test install) install -s -o root -g wheel -m 555 erf_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.exp_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=exp_test install) install -s -o root -g wheel -m 555 exp_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.fmod_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=fmod_test install) install -s -o root -g wheel -m 555 fmod_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.infinity_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=infinity_test install) install -s -o root -g wheel -m 555 infinity_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.ldexp_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=ldexp_test install) install -s -o root -g wheel -m 555 ldexp_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.log_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=log_test install) install -s -o root -g wheel -m 555 log_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.pow_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=pow_test install) install -s -o root -g wheel -m 555 pow_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.precision_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=precision_test install) install -s -o root -g wheel -m 555 precision_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.round_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=round_test install) install -s -o root -g wheel -m 555 round_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.scalbn_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=scalbn_test install) install -s -o root -g wheel -m 555 scalbn_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sin_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sin_test install) install -s -o root -g wheel -m 555 sin_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sinh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sinh_test install) install -s -o root -g wheel -m 555 sinh_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.sqrt_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=sqrt_test install) install -s -o root -g wheel -m 555 sqrt_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.tan_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=tan_test install) install -s -o root -g wheel -m 555 tan_test (cd /builds/FreeBSD_HEAD/lib/msun/tests && DEPENDFILE=.depend.tanh_test NO_SUBDIR=1 make -f /builds/FreeBSD_HEAD/lib/msun/tests/Makefile _RECURSING_PROGS= PROG=tanh_test install) install -s -o root -g wheel -m 555 tanh_test ===> lib/libalias (install) ===> lib/libalias/libalias (install) install -C -o root -g wheel -m 444 libalias.a install -C -o root -g wheel -m 444 libalias_p.a install -s -o root -g wheel -m 444 libalias.so.7 install -l rs install -C -o root -g wheel -m 444 /builds/FreeBSD_HEAD/lib/libalias/libalias/../../../sys/netinet/libalias/alias.h install -o root -g wheel -m 444 libalias.3.gz ===> lib/libalias/modules (install) ===> lib/libalias/modules/cuseeme (install) install -C -o root -g wheel -m 444 libalias_cuseeme.a install -C -o root -g wheel -m 444 libalias_cuseeme_p.a install -s -o root -g wheel -m 444 libalias_cuseeme.so ===> lib/libalias/modules/dummy (install) install -C -o root -g wheel -m 444 libalias_dummy.a install -C -o root -g wheel -m 444 libalias_dummy_p.a install -s -o root -g wheel -m 444 libalias_dummy.so ===> lib/libalias/modules/ftp (install) install -C -o root -g wheel -m 444 libalias_ftp.a install -C -o root -g wheel -m 444 libalias_ftp_p.a install -s -o root -g wheel -m 444 libalias_ftp.so ===> lib/libalias/modules/irc (install) install -C -o root -g wheel -m 444 libalias_irc.a install -C -o root -g wheel -m 444 libalias_irc_p.a install -s -o root -g wheel -m 444 libalias_irc.so ===> lib/libalias/modules/nbt (install) install -C -o root -g wheel -m 444 libalias_nbt.a install -C -o root -g wheel -m 444 libalias_nbt_p.a install -s -o root -g wheel -m 444 libalias_nbt.so ===> lib/libalias/modules/pptp (install) install -C -o root -g wheel -m 444 libalias_pptp.a install -C -o root -g wheel -m 444 libalias_pptp_p.a install -s -o root -g wheel -m 444 libalias_pptp.so ===> lib/libalias/modules/skinny (install) install -C -o root -g wheel -m 444 libalias_skinny.a install -C -o root -g wheel -m 444 libalias_skinny_p.a install -s -o root -g wheel -m 444 libalias_skinny.so ===> lib/libalias/modules/smedia (install) install -C -o root -g wheel -m 444 libalias_smedia.a install -C -o root -g wheel -m 444 libalias_smedia_p.a install -s -o root -g wheel -m 444 libalias_smedia.so ===> lib/libarchive (install) install -C -o root -g wheel -m 444 libarchive.a install -C -o root -g wheel -m 444 libarchive_p.a install: libarchive_p.a: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libarchive *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Tue Dec 1 02:35:16 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86AA8A3D0C2 for ; Tue, 1 Dec 2015 02:35:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 7539F15EE for ; Tue, 1 Dec 2015 02:35:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id CF3D81D78 for ; Tue, 1 Dec 2015 02:35:15 +0000 (UTC) Date: Tue, 1 Dec 2015 02:35:14 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <749477897.326.1448937314677.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1100429702.323.1448923574424.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1100429702.323.1448923574424.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : Build-UFS-image #2820 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 02:35:16 -0000 See From owner-freebsd-current@freebsd.org Tue Dec 1 03:20:51 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26492A3DC06 for ; Tue, 1 Dec 2015 03:20:51 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 0ECFD130F; Tue, 1 Dec 2015 03:20:51 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C04231D99; Tue, 1 Dec 2015 03:20:50 +0000 (UTC) Date: Tue, 1 Dec 2015 03:20:46 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1562983420.328.1448940049654.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1740 - Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 03:20:51 -0000 FreeBSD_HEAD-tests - Build #1740 - Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1740/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1740/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1740/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 04:34:17 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 894B3A3D90E for ; Tue, 1 Dec 2015 04:34:17 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E43F1152 for ; Tue, 1 Dec 2015 04:34:17 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (50-196-156-133-static.hfc.comcastbusiness.net [50.196.156.133]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id tB14Y4tH004047 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Mon, 30 Nov 2015 20:34:07 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: OpenSSH HPN To: Brooks Davis , Aaron Zauner References: <86y4e47uty.fsf@desk.des.no> <56436F4B.8050002@FreeBSD.org> <86r3jwfpiq.fsf@desk.des.no> <20151111181339.GE48728@zxy.spb.ru> <86io58flhk.fsf@desk.des.no> <20151111184448.GR31314@zxy.spb.ru> <86egfu9z0j.fsf@desk.des.no> <20151124212613.4ff9b25ea0@80601bfc61c7744> <20151130192348.GD81246@spindle.one-eyed-alien.net> Cc: Dag-Erling Sm??rgrav , freebsd-security@freebsd.org, freebsd-current@freebsd.org, Dewayne Geraghty , Benjamin Kaduk From: Julian Elischer Message-ID: <565D2336.60505@freebsd.org> Date: Tue, 1 Dec 2015 12:33:58 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <20151130192348.GD81246@spindle.one-eyed-alien.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 04:34:17 -0000 On 1/12/2015 3:23 AM, Brooks Davis wrote: > On Tue, Nov 24, 2015 at 09:29:44PM +0100, Aaron Zauner wrote: >> Hi, >> >> Please forgive my ignorance but what's the reason FreeBSD ships >> OpenSSH patched with HPN by default? Besides my passion for >> security, I've been working in the HPC sector for a while and >> benchmarked the patch for a customer about 1.5 years ago. The >> CTR-multi threading patch is actually *slower* than upstream OpenSSH >> with AES in CTR mode. GCM being, of course, the fastest mode on >> AESNI plattforms. > We never imported the AES bits as they were broken and AESNI was > available. > >> The NULL mode is a security concern as some have noted, I can only >> imagine that the window-scaling patch is of such importance? > Both NULL and window-scaling were merged because both are useful in some > environments. yeah but Null was just unmerged. window scaling is also on the block I think > > -- Brooks From owner-freebsd-current@freebsd.org Tue Dec 1 06:11:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 157C1A3E9B3 for ; Tue, 1 Dec 2015 06:11:47 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x229.google.com (mail-pa0-x229.google.com [IPv6:2607:f8b0:400e:c03::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA47711CB; Tue, 1 Dec 2015 06:11:46 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pacdm15 with SMTP id dm15so210841862pac.3; Mon, 30 Nov 2015 22:11:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=pB3ctbSboBtU7hkE0I+M9yLmYXxLAdYBr2pHcMhz9CY=; b=BXS4hBwynwQt1sF0wNDjr64EIBOpUZc49S8IlHjAcwREO9jaG4xusogtEDY99Vgb+0 TkRnERKpsSAFjdz6/VTwrQSVBp84i+eRrm5Vg6iZVtkvlzpYUx0a7ZvFdYYFF4VVRU7J pnQiik1rpDVqu7yWzfiZcY3uZ9lwMgqZoAy+xTKOyXzlfxFLZPvnRHdFxgjYKI22+0Ab fO7e5EG3h47Q4vfQqQ2tx4PA38TudBo4cbnwH/lmy7KkjJ65o7IgT8RTGMlgcfzeJwny 54gKUV3k89fJBuQfKI8lb24WWPLhtfe8+pyWvvk6IwFpsyoSNtga3mD4OyEi6iH+Q/yD /tbw== X-Received: by 10.66.233.73 with SMTP id tu9mr97391667pac.52.1448950306501; Mon, 30 Nov 2015 22:11:46 -0800 (PST) Received: from ?IPv6:2601:601:800:126d:2802:e2ed:33ec:fa6a? ([2601:601:800:126d:2802:e2ed:33ec:fa6a]) by smtp.gmail.com with ESMTPSA id p86sm43692690pfi.42.2015.11.30.22.11.45 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Nov 2015 22:11:45 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: Shared object "libelf.so.2" not found, required by "libkvm.so.6" From: NGie Cooper In-Reply-To: <20151130181410.GN3448@kib.kiev.ua> Date: Mon, 30 Nov 2015 22:11:44 -0800 Cc: John Baldwin , "O. Hartmann" , Henry Hu , FreeBSD CURRENT Content-Transfer-Encoding: quoted-printable Message-Id: <81B1EAD1-DE7C-42DD-B959-A696FB80612C@gmail.com> References: <20151129210725.7baf95ee.ohartman@zedat.fu-berlin.de> <20151130093949.GH3448@kib.kiev.ua> <835C8EDF-C059-46F5-9143-8133B69F5F92@gmail.com> <1639772.qjkNgKOJT0@ralph.baldwin.cx> <20151130181410.GN3448@kib.kiev.ua> To: Konstantin Belousov X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 06:11:47 -0000 > On Nov 30, 2015, at 10:14, Konstantin Belousov = wrote: >=20 > On Mon, Nov 30, 2015 at 09:49:00AM -0800, John Baldwin wrote: >> On Monday, November 30, 2015 09:33:49 AM NGie Cooper wrote: >>>=20 >>>> On Nov 30, 2015, at 01:39, Konstantin Belousov = wrote: >>>=20 >>> ??? >>>=20 >>>> Just to explicitely state the obvious, the problem is that libkvm = grown >>>> the dependency on libelf after r291406, and libelf lives in /usr. = libkvm >>>> is used before /usr is mounted. >>>>=20 >>>> I do not know what is the best way to handle it. Most simple is to = move >>>> libelf to /lib. How feasible is to move libkvm to /usr/lib (and all >>>> stuff in / which needs libkvm) is the open question. >>>=20 >>> This patch should fix the problem in theory: = https://people.freebsd.org/~ngie/fix-libkvm-use-when-usr-and-root-split.pa= tch >>> Thanks, >>=20 >> Looks fine to me if kib@ is ok with it. >=20 > I do not have objections. Fix committed in r291566 =E2=80=94 thanks :)! From owner-freebsd-current@freebsd.org Tue Dec 1 06:18:59 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43EA3A3E191 for ; Tue, 1 Dec 2015 06:18:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 358D7145E; Tue, 1 Dec 2015 06:18:59 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id A78BA1E12; Tue, 1 Dec 2015 06:18:58 +0000 (UTC) Date: Tue, 1 Dec 2015 06:18:55 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <751571124.333.1448950736871.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1562983420.328.1448940049654.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1562983420.328.1448940049654.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1741 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 06:18:59 -0000 FreeBSD_HEAD-tests - Build #1741 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1741/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1741/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1741/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 08:40:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A290FA3537A for ; Tue, 1 Dec 2015 08:40:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 890E918D3; Tue, 1 Dec 2015 08:40:41 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id EFA981E64; Tue, 1 Dec 2015 08:40:40 +0000 (UTC) Date: Tue, 1 Dec 2015 08:40:37 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1516710353.335.1448959238708.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <751571124.333.1448950736871.JavaMail.jenkins@jenkins-9.freebsd.org> References: <751571124.333.1448950736871.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1742 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 08:40:41 -0000 FreeBSD_HEAD-tests - Build #1742 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1742/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1742/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1742/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 11:56:12 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EFD2A3C75D for ; Tue, 1 Dec 2015 11:56:12 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 8DEDE1DD4; Tue, 1 Dec 2015 11:56:12 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id F3C261EDD; Tue, 1 Dec 2015 11:56:12 +0000 (UTC) Date: Tue, 1 Dec 2015 11:56:12 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <902090529.338.1448970972910.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1516710353.335.1448959238708.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1516710353.335.1448959238708.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1743 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 11:56:12 -0000 FreeBSD_HEAD-tests - Build #1743 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1743/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1743/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1743/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 14:37:29 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A598A3E9C0 for ; Tue, 1 Dec 2015 14:37:29 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 21FD41363; Tue, 1 Dec 2015 14:37:29 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 987D21F47; Tue, 1 Dec 2015 14:37:28 +0000 (UTC) Date: Tue, 1 Dec 2015 14:37:25 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1124246871.340.1448980645784.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <902090529.338.1448970972910.JavaMail.jenkins@jenkins-9.freebsd.org> References: <902090529.338.1448970972910.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1744 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 14:37:29 -0000 FreeBSD_HEAD-tests - Build #1744 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1744/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1744/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1744/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 15:58:39 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B009A3D693 for ; Tue, 1 Dec 2015 15:58:39 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D78919AC for ; Tue, 1 Dec 2015 15:58:38 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [93.104.15.100] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1a3nK0-0002dE-Qe for freebsd-current@freebsd.org; Tue, 01 Dec 2015 16:58:29 +0100 Received: from localhost.my.domain (c720-r276659 [127.0.0.1]) by localhost.unixarea.de (8.14.9/8.14.9) with ESMTP id tB1FwQgI004412 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 1 Dec 2015 16:58:27 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.9/8.14.9/Submit) id tB1FwQrf004411 for freebsd-current@freebsd.org; Tue, 1 Dec 2015 16:58:26 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Tue, 1 Dec 2015 16:58:25 +0100 From: Matthias Apitz To: freebsd-current@freebsd.org Subject: sendmail && sasl Message-ID: <20151201155825.GA4033@c720-r276659> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Operating-System: FreeBSD 11.0-CURRENT r269739 (i386) User-Agent: Mutt/1.5.23 (2014-03-12) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 93.104.15.100 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 15:58:39 -0000 Hello, I have always compiled sendmail for sasl the following way: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/smtp-auth.html - install port security/cyrus-sasl2 - config line in /usr/local/lib/sasl2/Sendmail.conf pwcheck_method: saslauthd - install port security/cyrus-sasl2-saslauthd, - edit /etc/rc.conf: saslauthd_enable="YES" - restart daemon with # /usr/local/etc/rc.d/saslauthd start - recompile sendmail with /etc/make.conf set to SENDMAIL_CFLAGS=-I/usr/local/include/sasl -DSASL SENDMAIL_LDFLAGS=-L/usr/local/lib SENDMAIL_LDADD=-lsasl2 # cd /usr/src/lib/libsmutil # make cleandir && make obj && make # cd /usr/src/lib/libsm # make cleandir && make obj && make # cd /usr/src/usr.sbin/sendmail # make cleandir && make obj && make && make install ... But now on r285885 it is unwilling to start with: # /etc/rc.d/sendmail restart sendmail not running? (check /var/run/sendmail.pid). Starting sendmail. 421 4.0.0 sasl_server_init failed! [generic failure] Any idea what I'm missing? Thanks matthias -- Matthias Apitz, ✉ guru@unixarea.de, 🌠http://www.unixarea.de/ ☎ +49-176-38902045 From owner-freebsd-current@freebsd.org Tue Dec 1 16:14:43 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCD34A3E087 for ; Tue, 1 Dec 2015 16:14:43 +0000 (UTC) (envelope-from null@pozo.com) Received: from pozo.com (pozo.com [50.197.129.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "pozo.com", Issuer "pozo.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C6D7218D8; Tue, 1 Dec 2015 16:14:43 +0000 (UTC) (envelope-from null@pozo.com) Received: from octo.pozo.com (octo.pozo.com [192.168.0.2]) (authenticated bits=128) by pozo.com (8.15.2/8.15.2) with ESMTPA id tB1G8R95042042; Tue, 1 Dec 2015 08:08:27 -0800 (PST) (envelope-from null@pozo.com) From: Manfred Antar Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: build world broken amd64 current at ifconfig if WITHOUT_DYNAMICROOT=yes is set in src.conf Date: Tue, 1 Dec 2015 08:08:26 -0800 Message-Id: <1B1A1A0C-56A9-40D6-B3DC-2B36F7409E3C@pozo.com> Cc: adrian@freebsd.org To: freebsd-current@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) X-Mailer: Apple Mail (2.3096.5) X-Spam-Status: No, score=-102.7 required=5.0 tests=ALL_TRUSTED, BAYES_00, TW_DX, TW_SD,USER_IN_WHITELIST autolearn=no autolearn_force=no version=3.4.1, No X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on pozo.com X-pozocom-MailScanner-Information: Please contact the ISP for more information X-pozocom-MailScanner-ID: tB1G8R95042042 X-pozocom-MailScanner: Found to be clean X-pozocom-MailScanner-From: null@pozo.com X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 16:14:44 -0000 make build world is broken at /usr/src/sbin/ifconfig if you have WITHOUT_DY= NAMICROOT=3Dyes in src.conf: cc -O2 -pipe -DINET6 -DINET -DJAIL -Wall -Wmissing-prototypes -Wcast-qual -= Wwrite-strings -Wnested-externs -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu= m -Wno-knr-promoted-parameter -Qunused-arguments -static -o ifconfig ifcon= fig.o af_link.o af_inet.o af_inet6.o af_nd6.o ifclone.o ifmac.o ifmedia.o i= ffib.o ifvlan.o ifvxlan.o ifgre.o ifgif.o sfp.o ifieee80211.o carp.o ifgrou= p.o ifpfsync.o ifbridge.o iflagg.o -lm -lbsdxml -lsbuf -l80211 -ljail /usr/lib/lib80211.a(lib80211_regdomain.o): In function `lib80211_regdomain_= readconfig': /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4d): undefined referenc= e to `XML_ParserCreate' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5b): undefined referenc= e to `XML_SetUserData' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x6d): undefined referenc= e to `XML_SetElementHandler' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7a): undefined referenc= e to `XML_SetCharacterDataHandler' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x8c): undefined referenc= e to `XML_Parse' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9d): undefined referenc= e to `XML_ParserFree' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x497): undefined referen= ce to `XML_GetErrorCode' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x49e): undefined referen= ce to `XML_ErrorString' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4a9): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/lib/lib80211.a(lib80211_regdomain.o): In function `start_element': /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5ac): undefined referen= ce to `sbuf_new' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x779): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7ec): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x99b): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9ae): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa4e): undefined referen= ce to `sbuf_finish' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa5c): undefined referen= ce to `sbuf_data' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa6d): undefined referen= ce to `sbuf_len' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xbfb): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xd1b): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xdee): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe31): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe9a): undefined referen= ce to `XML_GetCurrentLineNumber' /usr/lib/lib80211.a(lib80211_regdomain.o):/usr/src/lib/lib80211/lib80211_re= gdomain.c:(.text+0xebf): more undefined references to `XML_GetCurrentLineNu= mber' follow /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xfcc): undefined referen= ce to `sbuf_delete' /usr/lib/lib80211.a(lib80211_regdomain.o): In function `char_data': /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x1155): undefined refere= nce to `sbuf_bcat' cc: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 Stop. make: stopped in /usr/src/sbin/ifconfig The order of the library linking needs to be changed from: LIBADD+=3D bsdxml sbuf 80211 to LIBADD+=3D 80211 bsdxml sbuf Then it works: (ifconfig)5076}make cc -O2 -pipe -DINET6 -DINET -DJAIL -Wall -Wmissing-prototypes -Wcast-qual -= Wwrite-strings -Wnested-externs -std=3Dgnu99 -fstack-protector-strong -Wsys= tem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu= m -Wno-knr-promoted-parameter -Qunused-arguments -static -o ifconfig ifcon= fig.o af_link.o af_inet.o af_inet6.o af_nd6.o ifclone.o ifmac.o ifmedia.o i= ffib.o ifvlan.o ifvxlan.o ifgre.o ifgif.o sfp.o ifieee80211.o carp.o ifgrou= p.o ifpfsync.o ifbridge.o iflagg.o -lm -l80211 -lbsdxml -lsbuf -ljail gzip -cn /usr/src/sbin/ifconfig/ifconfig.8 > ifconfig.8.gz From owner-freebsd-current@freebsd.org Tue Dec 1 17:06:31 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18A33A3EE5D for ; Tue, 1 Dec 2015 17:06:31 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D64391561 for ; Tue, 1 Dec 2015 17:06:30 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [89.204.138.199] (helo=10.177.116.199) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1a3oNn-0007wa-CJ for freebsd-current@freebsd.org; Tue, 01 Dec 2015 18:06:27 +0100 From: Matthias Apitz To: Subject: Re: sendmail && sasl Date: Tue, 01 Dec 2015 18:06:22 +0100 User-Agent: Dekko/0.5.8; Qt/5.4.1; ubuntumirclient; Linux; MIME-Version: 1.0 Message-ID: <278e933e-4093-488c-b65a-b8264896758c@unixarea.de> In-Reply-To: <20151201155825.GA4033@c720-r276659> References: <20151201155825.GA4033@c720-r276659> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 89.204.138.199 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 17:06:31 -0000 On Tuesday, 1 December 2015 16:58:25 CET, Matthias Apitz wrote: > > ... > > - config line in /usr/local/lib/sasl2/Sendmail.conf > > pwcheck_method: saslauthd This was just a typo, the colon : was missing, sorry for the noise; matthias --=20 Sent from my Ubuntu phone http://www.unixarea.de/ From owner-freebsd-current@freebsd.org Tue Dec 1 17:27:43 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92CB2A3E375 for ; Tue, 1 Dec 2015 17:27:43 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0A1104B; Tue, 1 Dec 2015 17:27:43 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 6B5E61056; Tue, 1 Dec 2015 17:27:43 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 3311D14708; Tue, 1 Dec 2015 17:27:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id 4TvUnUKc0HBE; Tue, 1 Dec 2015 17:27:40 +0000 (UTC) Subject: Re: build world broken amd64 current at ifconfig if WITHOUT_DYNAMICROOT=yes is set in src.conf DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 0B47E14702 To: Manfred Antar , freebsd-current@freebsd.org References: <1B1A1A0C-56A9-40D6-B3DC-2B36F7409E3C@pozo.com> Cc: adrian@freebsd.org From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565DD897.1040106@FreeBSD.org> Date: Tue, 1 Dec 2015 09:27:51 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <1B1A1A0C-56A9-40D6-B3DC-2B36F7409E3C@pozo.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QJdCEfWuRaOOn7IPoAdlWWO3TCifD77kv" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 17:27:43 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --QJdCEfWuRaOOn7IPoAdlWWO3TCifD77kv Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 8:08 AM, Manfred Antar wrote: > make build world is broken at /usr/src/sbin/ifconfig if you have WITHOU= T_DYNAMICROOT=3Dyes in src.conf: >=20 > cc -O2 -pipe -DINET6 -DINET -DJAIL -Wall -Wmissing-prototypes -Wcast-qu= al -Wwrite-strings -Wnested-externs -std=3Dgnu99 -fstack-protector-strong= -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-s= ign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-= tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -= Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -static -= o ifconfig ifconfig.o af_link.o af_inet.o af_inet6.o af_nd6.o ifclone.o i= fmac.o ifmedia.o iffib.o ifvlan.o ifvxlan.o ifgre.o ifgif.o sfp.o ifieee8= 0211.o carp.o ifgroup.o ifpfsync.o ifbridge.o iflagg.o -lm -lbsdxml -= lsbuf -l80211 -ljail > /usr/lib/lib80211.a(lib80211_regdomain.o): In function `lib80211_regdom= ain_readconfig': > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4d): undefined refe= rence to `XML_ParserCreate' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5b): undefined refe= rence to `XML_SetUserData' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x6d): undefined refe= rence to `XML_SetElementHandler' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7a): undefined refe= rence to `XML_SetCharacterDataHandler' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x8c): undefined refe= rence to `XML_Parse' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9d): undefined refe= rence to `XML_ParserFree' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x497): undefined ref= erence to `XML_GetErrorCode' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x49e): undefined ref= erence to `XML_ErrorString' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4a9): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/lib/lib80211.a(lib80211_regdomain.o): In function `start_element':= > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5ac): undefined ref= erence to `sbuf_new' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x779): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7ec): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x99b): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9ae): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa4e): undefined ref= erence to `sbuf_finish' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa5c): undefined ref= erence to `sbuf_data' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa6d): undefined ref= erence to `sbuf_len' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xbfb): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xd1b): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xdee): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe31): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe9a): undefined ref= erence to `XML_GetCurrentLineNumber' > /usr/lib/lib80211.a(lib80211_regdomain.o):/usr/src/lib/lib80211/lib8021= 1_regdomain.c:(.text+0xebf): more undefined references to `XML_GetCurrent= LineNumber' follow > /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xfcc): undefined ref= erence to `sbuf_delete' > /usr/lib/lib80211.a(lib80211_regdomain.o): In function `char_data': > /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x1155): undefined re= ference to `sbuf_bcat' > cc: error: linker command failed with exit code 1 (use -v to see invoca= tion) > *** Error code 1 >=20 > Stop. > make: stopped in /usr/src/sbin/ifconfig >=20 > The order of the library linking needs to be changed from: > LIBADD+=3D bsdxml sbuf 80211 > to > LIBADD+=3D 80211 bsdxml sbuf >=20 The fix is worse than that, it is an obscure thing in src.libnames.mk. Dependencies are supposed to be duplicated there for this exact case. I'll fix it there. Curious, why do you use WITHOUT_DYNAMICROOT? --=20 Regards, Bryan Drewery --QJdCEfWuRaOOn7IPoAdlWWO3TCifD77kv Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXdiYAAoJEDXXcbtuRpfPwSoH/3aV1ZRNuwKxoDy7kI6HoF6q c4Uxi4ms1OE/GVz9oEzKFN43tiDmol9siDUydK1ZYId8kGC798k/F0LHxsipFcg4 bkBjX5JesKwgjtnBaU5sLoYF05rjYT++t4SOJ5I3YzLln9wgKO+hEF3v8eQoW9yN MyRZ+Fht6EKolRckcyekmzBvaMu3mnLhtRnGhMHzvrVdVxGrQ7I0era41rNueOzv V1nF66f+fZF7aHApENIVqpDKMTWcWcrDRlxHYQyQOp2SVfNhbObzUIJzzZe1Pvoo d9evYTiapfXa/ALwPd2A0odThuSP1Dyh486ELsIO34N2uKH72Ra2nIkw47CQl08= =PC/i -----END PGP SIGNATURE----- --QJdCEfWuRaOOn7IPoAdlWWO3TCifD77kv-- From owner-freebsd-current@freebsd.org Tue Dec 1 17:37:35 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B5D2A3E612 for ; Tue, 1 Dec 2015 17:37:35 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 0C40F182E; Tue, 1 Dec 2015 17:37:35 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 99F491FB7; Tue, 1 Dec 2015 17:37:34 +0000 (UTC) Date: Tue, 1 Dec 2015 17:37:33 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <697291918.342.1448991453790.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1124246871.340.1448980645784.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1124246871.340.1448980645784.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1745 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 17:37:35 -0000 FreeBSD_HEAD-tests - Build #1745 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1745/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1745/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1745/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 17:39:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E184A3E6CB for ; Tue, 1 Dec 2015 17:39:24 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E93EB1B32; Tue, 1 Dec 2015 17:39:23 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id DCBA915EB; Tue, 1 Dec 2015 17:39:23 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 9729C1477A; Tue, 1 Dec 2015 17:39:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id F9Lv8L7CRcDJ; Tue, 1 Dec 2015 17:39:20 +0000 (UTC) Subject: Re: build world broken amd64 current at ifconfig if WITHOUT_DYNAMICROOT=yes is set in src.conf DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 9A71E14775 To: Manfred Antar , freebsd-current@freebsd.org References: <1B1A1A0C-56A9-40D6-B3DC-2B36F7409E3C@pozo.com> <565DD897.1040106@FreeBSD.org> Cc: adrian@freebsd.org From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565DDB54.80705@FreeBSD.org> Date: Tue, 1 Dec 2015 09:39:32 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <565DD897.1040106@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SmQodgbm0rALkcVwxAKbM9em7UjuUCC4U" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 17:39:24 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --SmQodgbm0rALkcVwxAKbM9em7UjuUCC4U Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 9:27 AM, Bryan Drewery wrote: > On 12/1/2015 8:08 AM, Manfred Antar wrote: >> make build world is broken at /usr/src/sbin/ifconfig if you have WITHO= UT_DYNAMICROOT=3Dyes in src.conf: >> >> cc -O2 -pipe -DINET6 -DINET -DJAIL -Wall -Wmissing-prototypes -Wcast-q= ual -Wwrite-strings -Wnested-externs -std=3Dgnu99 -fstack-protector-stron= g -Wsystem-headers -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-= sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno= -tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-un= used-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch = -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused-arguments -static = -o ifconfig ifconfig.o af_link.o af_inet.o af_inet6.o af_nd6.o ifclone.o = ifmac.o ifmedia.o iffib.o ifvlan.o ifvxlan.o ifgre.o ifgif.o sfp.o ifieee= 80211.o carp.o ifgroup.o ifpfsync.o ifbridge.o iflagg.o -lm -lbsdxml = -lsbuf -l80211 -ljail >> /usr/lib/lib80211.a(lib80211_regdomain.o): In function `lib80211_regdo= main_readconfig': >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4d): undefined ref= erence to `XML_ParserCreate' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5b): undefined ref= erence to `XML_SetUserData' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x6d): undefined ref= erence to `XML_SetElementHandler' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7a): undefined ref= erence to `XML_SetCharacterDataHandler' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x8c): undefined ref= erence to `XML_Parse' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9d): undefined ref= erence to `XML_ParserFree' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x497): undefined re= ference to `XML_GetErrorCode' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x49e): undefined re= ference to `XML_ErrorString' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x4a9): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/lib/lib80211.a(lib80211_regdomain.o): In function `start_element'= : >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x5ac): undefined re= ference to `sbuf_new' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x779): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x7ec): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x99b): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x9ae): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa4e): undefined re= ference to `sbuf_finish' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa5c): undefined re= ference to `sbuf_data' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xa6d): undefined re= ference to `sbuf_len' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xbfb): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xd1b): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xdee): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe31): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xe9a): undefined re= ference to `XML_GetCurrentLineNumber' >> /usr/lib/lib80211.a(lib80211_regdomain.o):/usr/src/lib/lib80211/lib802= 11_regdomain.c:(.text+0xebf): more undefined references to `XML_GetCurren= tLineNumber' follow >> /usr/lib/lib80211.a(lib80211_regdomain.o): In function `end_element': >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0xfcc): undefined re= ference to `sbuf_delete' >> /usr/lib/lib80211.a(lib80211_regdomain.o): In function `char_data': >> /usr/src/lib/lib80211/lib80211_regdomain.c:(.text+0x1155): undefined r= eference to `sbuf_bcat' >> cc: error: linker command failed with exit code 1 (use -v to see invoc= ation) >> *** Error code 1 >> >> Stop. >> make: stopped in /usr/src/sbin/ifconfig >> >> The order of the library linking needs to be changed from: >> LIBADD+=3D bsdxml sbuf 80211 >> to >> LIBADD+=3D 80211 bsdxml sbuf >> >=20 > The fix is worse than that, it is an obscure thing in src.libnames.mk. > Dependencies are supposed to be duplicated there for this exact case. > I'll fix it there. >=20 lib80211 was also underlinked. Fixed in r291600. --=20 Regards, Bryan Drewery --SmQodgbm0rALkcVwxAKbM9em7UjuUCC4U Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXdtVAAoJEDXXcbtuRpfP3m8IAJimdi4cJXHqqIpEmdtVqKXC UPbUfec19o3lWY4sq99LZgL4w8M/IejSj3ldnVAD58ovSJ2XiOzAqQSyThiNVDja cKQMuj9UaSxGt4XfizG9owpCUxgSSiF2gM77gBSl5UgXnwa91z4Jmrek1OAzC/hx AoTogrQQvJA3NeMVzGXvXEJU1JubUsEDVczEASa2BGLjuv6lwddjjC2NU+JpLTmG 5qAJh0yRhAuH/pBCMlCbiTwCv9VW5kYVSikUbredJT4tZsUvq1t7OfPDzZdTX6J9 f7NF66CPWHAntt0q7nfgE/5jzV2n+UzLYCytX5gneOT7geum0yi5+6uN7pLhiV8= =SDee -----END PGP SIGNATURE----- --SmQodgbm0rALkcVwxAKbM9em7UjuUCC4U-- From owner-freebsd-current@freebsd.org Tue Dec 1 18:30:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D9F9A3E581 for ; Tue, 1 Dec 2015 18:30:24 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B9F514F1; Tue, 1 Dec 2015 18:30:24 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 820D0B94C; Tue, 1 Dec 2015 13:30:22 -0500 (EST) From: John Baldwin To: Warner Losh Cc: Sean Bruno , FreeBSD Current Subject: Re: sys/modules "make clean" seems broken again Date: Tue, 01 Dec 2015 10:30:13 -0800 Message-ID: <4121969.dQSZfNjpat@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: References: <564E0322.8050308@freebsd.org> <565CB176.4070906@freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 01 Dec 2015 13:30:22 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 18:30:24 -0000 On Monday, November 30, 2015 02:44:54 PM Warner Losh wrote: > On Mon, Nov 30, 2015 at 1:28 PM, Sean Bruno wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA512 > > > > > > > > On 11/19/15 15:42, Warner Losh wrote: > > > > > > > > > On Thu, Nov 19, 2015 at 11:12 AM, John Baldwin > > > wrote: > > > > > > On Thursday, November 19, 2015 09:13:06 AM Sean Bruno wrote: > > >> I thought I fixed this a year or two ago, but now a "make clean" > > >> in sys/modules seems to leave bus_if.h device_if.h and pci_if.h > > >> in the directory. > > >> > > >> Should I just add these to the clean targets? > > > > > > Blame Warner as his MFILES changes broke this. In particular, see > > > r287263 which turned off cleaning these up. I'm not sure what that > > > broke that caused it to be disabled. > > > > > > Your change is a gross hack though. > > > > > > > > > Yes. The reason I had to break it was that there were a few files > > > named _if.c and _if.h in the tree that would get deleted when make > > > clean was run in the modules. > > > > > > I'll take another run at fixing this. Sean's "fix" is a horrible > > > hack. > > > > > > Warner > > > > > > Just bouncing a ping here. I haven't actually checked to see if the > > last weeks' commits to head fixed this, but I suspect this hasn't been > > addressed. What do we want to do different if not this hackery I propose? > > > > Your hackery wouldn't actually fix it completely, just mostly for a common > case. So which files broke before? Hmm, I guess just these: ./netpfil/pf/pf_if.c ./dev/oce/oce_if.c ./contrib/vchiq/interface/vchiq_arm/vchiq_if.h ./dev/oce/oce_if.h ./dev/mlx5/mlx5_rdma_if.h Honestly, I still think just having a single global list of MFILES in sys/conf/foo.mk instead of doing the find trick isn't that bad. Actually, can't we use __MPATH to do this instead? This seems to work: Index: conf/kern.pre.mk =================================================================== --- conf/kern.pre.mk (revision 291495) +++ conf/kern.pre.mk (working copy) @@ -208,6 +208,7 @@ # Calculate path for .m files early, if needed. .if !defined(_MPATH) __MPATH!=find ${S:tA}/ -name \*_if.m +_MFILES=${__MPATH:T:O} _MPATH=${__MPATH:H:O:u} .endif @@ -227,7 +228,7 @@ .if defined(DEBUG) MKMODULESENV+= DEBUG_FLAGS="${DEBUG}" .endif -MKMODULESENV+= _MPATH="${_MPATH}" +MKMODULESENV+= _MPATH="${_MPATH}" _MFILES="${_MFILES}" # Architecture and output format arguments for objdump to convert image to # object file Index: conf/kmod.mk =================================================================== --- conf/kmod.mk (revision 291495) +++ conf/kmod.mk (working copy) @@ -372,13 +372,11 @@ # Build _if.[ch] from _if.m, and clean them when we're done. .if !defined(_MPATH) __MPATH!=find ${SYSDIR:tA}/ -name \*_if.m +_MFILES=${__MPATH:T:O} _MPATH=${__MPATH:H:O:u} .endif .PATH.m: ${_MPATH} -.for _i in ${SRCS:M*_if.[ch]} -#removes too much, comment out until it's more constrained. -#CLEANFILES+= ${_i} -.endfor # _i +CLEANFILES+= ${_MFILES:R:S/$/.c/} ${_MFILES:R:S/$/.h/} .m.c: ${SYSDIR}/tools/makeobjops.awk ${AWK} -f ${SYSDIR}/tools/makeobjops.awk ${.IMPSRC} -c It bloats CLEANFILES a bit because it always cleans all generated m files even if they aren't present. If you wanted to be picky about it you could have a for loop that trims to just the used ones. This seems to work: % pwd /usr/home/john/work/freebsd/clean/sys/modules/oce % make -V CLEANFILES export_syms machine x86 if_oce.ko if_oce.kld oce_if.o oce_hw.o oce_mbox.o oce_util.o oce_queue.o oce_sysctl.o opt_inet.h opt_inet6.h bus_if.h device_if.h pci_if.h Index: conf/kern.pre.mk =================================================================== --- conf/kern.pre.mk (revision 291495) +++ conf/kern.pre.mk (working copy) @@ -208,6 +208,7 @@ # Calculate path for .m files early, if needed. .if !defined(_MPATH) __MPATH!=find ${S:tA}/ -name \*_if.m +_MFILES=${__MPATH:T:O} _MPATH=${__MPATH:H:O:u} .endif @@ -227,7 +228,7 @@ .if defined(DEBUG) MKMODULESENV+= DEBUG_FLAGS="${DEBUG}" .endif -MKMODULESENV+= _MPATH="${_MPATH}" +MKMODULESENV+= _MPATH="${_MPATH}" _MFILES="${_MFILES}" # Architecture and output format arguments for objdump to convert image to # object file Index: conf/kmod.mk =================================================================== --- conf/kmod.mk (revision 291495) +++ conf/kmod.mk (working copy) @@ -372,12 +372,16 @@ # Build _if.[ch] from _if.m, and clean them when we're done. .if !defined(_MPATH) __MPATH!=find ${SYSDIR:tA}/ -name \*_if.m +_MFILES=${__MPATH:T:O} _MPATH=${__MPATH:H:O:u} .endif .PATH.m: ${_MPATH} .for _i in ${SRCS:M*_if.[ch]} -#removes too much, comment out until it's more constrained. -#CLEANFILES+= ${_i} +_MATCH=M${_i:R:S/$/.m/} +_MATCHES=${_MFILES:${_MATCH}} +.if !empty(_MATCHES) +CLEANFILES+= ${_i} +.endif .endfor # _i .m.c: ${SYSDIR}/tools/makeobjops.awk ${AWK} -f ${SYSDIR}/tools/makeobjops.awk ${.IMPSRC} -c I've put this last one up at D4336. -- John Baldwin From owner-freebsd-current@freebsd.org Tue Dec 1 20:29:17 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CE7AA3EEF3 for ; Tue, 1 Dec 2015 20:29:17 +0000 (UTC) (envelope-from sjg@juniper.net) Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1on0112.outbound.protection.outlook.com [157.56.110.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7BEB1AD2; Tue, 1 Dec 2015 20:29:16 +0000 (UTC) (envelope-from sjg@juniper.net) Received: from BY2PR05CA057.namprd05.prod.outlook.com (10.141.250.47) by BL2PR05MB051.namprd05.prod.outlook.com (10.255.228.151) with Microsoft SMTP Server (TLS) id 15.1.331.20; Tue, 1 Dec 2015 20:29:14 +0000 Received: from BL2FFO11FD048.protection.gbl (2a01:111:f400:7c09::195) by BY2PR05CA057.outlook.office365.com (2a01:111:e400:2c5f::47) with Microsoft SMTP Server (TLS) id 15.1.331.20 via Frontend Transport; Tue, 1 Dec 2015 20:29:14 +0000 Authentication-Results: spf=softfail (sender IP is 66.129.239.18) smtp.mailfrom=juniper.net; freebsd.org; dkim=none (message not signed) header.d=none;freebsd.org; dmarc=none action=none header.from=juniper.net; Received-SPF: SoftFail (protection.outlook.com: domain of transitioning juniper.net discourages use of 66.129.239.18 as permitted sender) Received: from p-emfe01b-sac.jnpr.net (66.129.239.18) by BL2FFO11FD048.mail.protection.outlook.com (10.173.161.210) with Microsoft SMTP Server (TLS) id 15.1.331.11 via Frontend Transport; Tue, 1 Dec 2015 20:29:12 +0000 Received: from magenta.juniper.net (172.17.27.123) by p-emfe01b-sac.jnpr.net (172.24.192.21) with Microsoft SMTP Server (TLS) id 14.3.123.3; Tue, 1 Dec 2015 12:29:11 -0800 Received: from chaos.jnpr.net (chaos.jnpr.net [172.21.16.28]) by magenta.juniper.net (8.11.3/8.11.3) with ESMTP id tB1KT7D79346; Tue, 1 Dec 2015 12:29:07 -0800 (PST) (envelope-from sjg@juniper.net) Received: from chaos (localhost [IPv6:::1]) by chaos.jnpr.net (Postfix) with ESMTP id 0BCF0580A9; Tue, 1 Dec 2015 12:29:07 -0800 (PST) To: John Baldwin CC: Warner Losh , Sean Bruno , "FreeBSD Current" , Subject: Re: sys/modules "make clean" seems broken again In-Reply-To: <4121969.dQSZfNjpat@ralph.baldwin.cx> References: <564E0322.8050308@freebsd.org> <565CB176.4070906@freebsd.org> <4121969.dQSZfNjpat@ralph.baldwin.cx> Comments: In-reply-to: John Baldwin message dated "Tue, 01 Dec 2015 10:30:13 -0800." From: "Simon J. Gerraty" X-Mailer: MH-E 8.6; nmh 1.6; GNU Emacs 24.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <26842.1449001746.1@chaos> Date: Tue, 1 Dec 2015 12:29:07 -0800 Message-ID: <14468.1449001747@chaos> X-EOPAttributedMessage: 0 X-Microsoft-Exchange-Diagnostics: 1; BL2FFO11FD048; 1:qLpV+QtlJpjSLta5siyy1AKN8qcoojYI4aOljRhb2aYnXQ07z8ABJ2TyK3TYFQ4w9PMPAAnLM6R8jFGhS4dwa7/i6s4AiAmt4nJoEXEIVLY+tLkQKvKB4De+lt3/RFJKOjC4RFo77KuG4RtbQFVtdwPeUPIrgvv8Bx35QVmVI8c45cFFODwgdMeT+j23yorjnoWtRoyALzLsgmhq4dYyKdtqdYZuqtCG0KVn6lRayl0RzD1KMl2c854Vq/QsWus4E66uhwZsKdXk+c9h/kl+Z4jKhVXSWit2//y11gG+x/4Nim+48QNh2Y6WsBQ+34hEjYqM8Gy3COh0moL8jFs/+JhXKVLIBH16CjkbsywEyQg= X-Forefront-Antispam-Report: CIP:66.129.239.18; CTRY:US; IPV:NLI; EFV:NLI; SFV:NSPM; SFS:(10019020)(6009001)(2980300002)(24454002)(199003)(189002)(47776003)(11100500001)(19580395003)(558084003)(86362001)(23726003)(2950100001)(76506005)(46406003)(106466001)(76176999)(6806005)(4001430100002)(50466002)(57986006)(5008740100001)(1220700001)(69596002)(97756001)(19580405001)(33716001)(93886004)(105596002)(87936001)(50226001)(189998001)(92566002)(110136002)(1096002)(107886002)(77096005)(586003)(97736004)(81156007)(117636001)(50986999)(5001960100002)(42262002)(62816006); DIR:OUT; SFP:1102; SCL:1; SRVR:BL2PR05MB051; H:p-emfe01b-sac.jnpr.net; FPR:; SPF:SoftFail; PTR:InfoDomainNonexistent; A:1; MX:1; LANG:en; X-Microsoft-Exchange-Diagnostics: 1; BL2PR05MB051; 2:5l2w0rraMvom24MDHF7yWiyJDyN45yPYDZzLgGVLckTvOxyrUHOsKuJSRzoCMl2Q66EmMgc7hj5nImWaGZ3YREwEQUL+qg3jWOmuMzcambJCncHeAz/QcM+rKYNFBKwog5iIz88fFK2TAtWSr2AX/A==; 3:WPkM1di+DWQux4OlH2/cZoCz1YWUb9XR3IDW+kgaqfIkRMX5ymsRhXpSzp3WOfL+isxY2Q7CqIAJTNFhTq6jvJ/A0FN59hlkXiLdGQ/4h11I1rfOI+yxTQQg1tQ8kFOUJ6pmxRdaS2h5FIFXexf8Owxm6i0+TGfq5DE08lMfR0Cvb9UvEgllLEZwW9SMIuBcQ/H0P1eU+h5JSrYz5LWlq8vIgX0dwkT6VFEqXJINDJE=; 25:14RLI5jp38kLQj25KnSJmAxMMHhZoTh02f9jgygvJnZ3WGkKFjye47AKdxNZTXlBBRtBGbT3wBPqVF+IkAzh9eJp+7mowb0uIDoYSS3gTwtmQsr8tHukopJ9CsO2QTM/yqnwJH9/+qD/QJ1jq1rBE8JJlvsiJ67twIctEhXfykVpPifDbJMeuSVxlxrBtEkgOz22x/FSwlA5GmFfdWMP6Td5Fq5uwnjDEnIpB8d6wejJ+retlQuJOzJ8hWHHeLzK X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BL2PR05MB051; X-Microsoft-Exchange-Diagnostics: 1; BL2PR05MB051; 20:uKPw5Wfn1jrAuXf2Su4vyH1wm6IS9gK8QZVbELUE6bkIF6gqti4U3MHyl9cMXOXj7NwxDviEPN9TLzNnxyfSx4yRcsxkqtqT0Z1MX33VX/O6+kVNkN/DHKMPokuzoeWq/0An5lK/RFz1XfLejowAFpEwTgrdLSn6iAtqIJfR3Nqppvfy2HXM9eRL5VmN6PBqLMJ5hufxFanP163Gk2d7iCkUYvsgc8QXY2ZyiAL6t86Y19G8r30YtC28cFb3uySOZtAX21AX07JeP6B1wLz7NfCG1fkO0/5ZLApm/YYEWwv4GFXZaUGkpNZTfeiw2TsqwQJWT2q842nSPZHrFVRSR7nHo7Lig9rNODzluI4WwROsnM5yOXPnWQlAp926cVEHZ5vuPVXZOUFRfxEycjUXKkpKDjpayhMTWJxoEdhtsYC3kM6lnA4cftIezKw7iBb8rU9+Kk8pw57UQWTH04vHormwAD9gHAX4AkKqvpejBxVK1EUxzmUwZmkODL9zWW/h; 4:YTBI/qvV7p+TwWn/vxaDtiMAh/4k0s6JOC+c/WKSjt9RP0NaCmml1fT/YWlmFw3JRScw6y/Jl9OeTfmCWMjFYvIJRyKLs8T1021KeZz2o4s/4uGxG9vfVFFCDeXvzqy0uKcUqilg7Mxdz/J0G0XcWkTg3W8U8ymrfldT0d0EsmZs3HzH7rVPwon0imzngmOeCeehC4avIA2eL8/K//m9WU6kXrFAvg5hKUioXeSv+2hnZGW4nyPexvtG/Rgc4bnEabxpl0yKcYKXc2sUTlZTc4j4bBGyks3hhf0iaEy9DazWm8J0Ak9pu+cO0ifUCg7cVHXXlMbzw+sl63i/wRJ+IoFBzi5E/Gw4QoLyC8GZMowaHm7TOaD3AKQ09wy+MMcJ X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0; PCL:0; RULEID:(601004)(2401047)(520078)(8121501046)(5005006)(3002001)(10201501046); SRVR:BL2PR05MB051; BCL:0; PCL:0; RULEID:; SRVR:BL2PR05MB051; X-Forefront-PRVS: 07778E4001 X-Microsoft-Exchange-Diagnostics: =?us-ascii?Q?1; BL2PR05MB051; 23:z2s21Q+2G51AOy0hHzNO5EHki6ipbJ+rgKnLJjBNS/?= =?us-ascii?Q?+nfFXb0x/akTMZ/G8a8Dm8hQW6WXPnWoknMYqP/oJxzbq/wjEmyGls63A6Os?= =?us-ascii?Q?QkVFkKnQmO93DJqvYhF25FzKxPTXynKti/h/sBVPMbAfDRVwG6j4fvh9172O?= =?us-ascii?Q?sTZ0DrhF2Fon746r5pNeL/Sj1beyDx8EpULSh4JUSlTfqvrudhyNO++SfDY1?= =?us-ascii?Q?Iu+0K74OC/pdy9mTc2nRSY7WCbI9lRiLpWLPW2TyajM17CubM/6UdK/4QXBH?= =?us-ascii?Q?2kDzwDoeXgLy7qv3yaZTDDOGrKaSWoP/27p5rI1ihEYlwMVdoBfAyiuEz4mp?= =?us-ascii?Q?cOb0KIgbrYkNKLoRB8xEj8Bvgk8XP6deu5sOjrEFO9XfwWXAGc/seDbB1hyb?= =?us-ascii?Q?hBbsq07wCCP4U1eMRRLyfjKMCMmatmsjlbpEgjKLREyoItiv7GvINnl8iOV3?= =?us-ascii?Q?h3ipFFOQqF6MO/nDTTnW1BYzuUY1PTyCRI6f2xtAt5NGmronfXv8/QuA8+mI?= =?us-ascii?Q?4bM2OrhqX0ehtvEiSQhbPl4pfuJUxIdc9035vlRcoUcF7tXDUXrwuJRajyT9?= =?us-ascii?Q?lc8ygvVRujlGdzCQFUzjuSLLYLquCxMzYHLP02BbxanAPINyjKvhjiULVEtN?= =?us-ascii?Q?6tWMM8fV+SL+Hfs69HINaoZuwFdWGBP3ucKZOlkhZxvmubd9m1Wok1Tv3X9r?= =?us-ascii?Q?eKYZABz52c1yQl06LZsnD2RnTKc8Mgc7WscSxIBwxeI93WXan60zs4igftR7?= =?us-ascii?Q?Xc5/R6lBDITgcfms8Du4+laYL1DGpG9xd4tn4jP63QsjOdiSwpxRSt0+IIc3?= =?us-ascii?Q?fvKQ8LRUq5G2H0X88UTaknjlAXK47fg3d7p653a5SUTG8v7LrmUt2scuVhv0?= =?us-ascii?Q?aAgS4dJhd4AuD/GpBpR4sgGrFW1mxcxkuIzES4G+H6PsTjkrLPHdh/pZ6nFO?= =?us-ascii?Q?3rSe8EJcGLlu0jVhp4XFM5aaUJAambTVxcdqW1KmZMh5PONqryqhdA6tM3ka?= =?us-ascii?Q?D+LVvylQPIQmAkBFScGa4iB0YQqas/4CBj+0IJryTzbmMYIwdQsURgNEdljy?= =?us-ascii?Q?aiybuB+u2klX4OIphCpQdrj9hpe1rVCt4gxUqUOhon/QrNpcfswGiCJ9blCk?= =?us-ascii?Q?7sebcpXVdLRQkwWtZ7xMUVUsjR+QGeVv+057dmfKkEhm/7UMTyng=3D=3D?= X-Microsoft-Exchange-Diagnostics: 1; BL2PR05MB051; 5:R5baClolgeseY7L7GZpcmolavvEmord2x5li8/7fm6o9A5bBVZwyxO2XxGoBJCvQ/5F3M8hWHg73E9MLUomfE1Sp1RGlqDXEDTG2GJd2coj+lULMySowd1kBnpywl3e6C1/WjKFAJMsesA3Zw/Q26g==; 24:v8ZwPGSOsK9b0wja5Td503W3qfvjDuJb0dKIYCwSQAwkBfJ5hm/pEr+VJvfXdOrrZo0wQ9O4wPe0UeKWH66or1WpoTuxiwXdZw/2s+ulv80= SpamDiagnosticOutput: 1:23 SpamDiagnosticMetadata: NSPM X-OriginatorOrg: juniper.net X-MS-Exchange-CrossTenant-OriginalArrivalTime: 01 Dec 2015 20:29:12.8659 (UTC) X-MS-Exchange-CrossTenant-Id: bea78b3c-4cdb-4130-854a-1d193232e5f4 X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=bea78b3c-4cdb-4130-854a-1d193232e5f4; Ip=[66.129.239.18]; Helo=[p-emfe01b-sac.jnpr.net] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BL2PR05MB051 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 20:29:17 -0000 John Baldwin wrote: > +CLEANFILES+= ${_MFILES:R:S/$/.c/} ${_MFILES:R:S/$/.h/} Since CLEANFILES is given to rm, you can use globs CLEANFILES+= ${_MFILES:R:S/$/.[ch]/} or .? From owner-freebsd-current@freebsd.org Tue Dec 1 20:36:38 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EB45A3E128 for ; Tue, 1 Dec 2015 20:36:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3FB731FB3; Tue, 1 Dec 2015 20:36:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 2F5D7A3; Tue, 1 Dec 2015 20:36:36 +0000 (UTC) Date: Tue, 1 Dec 2015 20:36:35 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1541831735.346.1449002196038.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <697291918.342.1448991453790.JavaMail.jenkins@jenkins-9.freebsd.org> References: <697291918.342.1448991453790.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1746 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 20:36:38 -0000 FreeBSD_HEAD-tests - Build #1746 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1746/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1746/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1746/console Change summaries: No changes The failed test cases: 2 tests failed. FAILED: sys.mqueue.mqueue_test.mqtest3 Error Message: atf-check failed; see the output of the test for details FAILED: sys.mqueue.mqueue_test.mqtest4 Error Message: atf-check failed; see the output of the test for details From owner-freebsd-current@freebsd.org Tue Dec 1 21:37:15 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92641A3EF07 for ; Tue, 1 Dec 2015 21:37:15 +0000 (UTC) (envelope-from listjm@club.fr) Received: from smtp21.services.sfr.fr (smtp21.services.sfr.fr [93.17.128.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5791D1517; Tue, 1 Dec 2015 21:37:14 +0000 (UTC) (envelope-from listjm@club.fr) Received: from filter.sfr.fr (localhost [78.118.197.112]) by msfrf2108.sfr.fr (SMTP Server) with ESMTP id B0DBF7000042; Tue, 1 Dec 2015 22:31:21 +0100 (CET) Authentication-Results: sfrmc.priv.atos.fr; dkim=none (no signature); dkim-adsp=none (no policy) header.from=listjm@club.fr Received: from [192.168.1.51] (112.197.118.78.rev.sfr.net [78.118.197.112]) by msfrf2108.sfr.fr (SMTP Server) with ESMTP id 72B127000056; Tue, 1 Dec 2015 22:31:21 +0100 (CET) X-SFR-UUID: 20151201213121469.72B127000056@msfrf2108.sfr.fr Subject: Re: freebsd-current compile with clang & ccache To: FreeBSD-Current , Bryan Drewery References: <5655F93F.2050706@juanmolina.eu> From: Juan =?iso-8859-1?b?UmFt824=?= Molina Menor Message-ID: <565E11A8.7020201@club.fr> Date: Tue, 1 Dec 2015 22:31:20 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <5655F93F.2050706@juanmolina.eu> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 21:37:15 -0000 Le 25/11/2015 19:09, Juan Molina a écrit : >> On 11/24/2015 1:31 AM, M&S - Krasznai András wrote: >> >/What can I do to eliminate the ccache error during installworld >> apart from not using ccache? / >> I would recommend not setting CC or CCACHE_PATH in make.conf and using >> the new WITH_CCACHE_BUILD=yes option instead. >> >> -- >> Regards, >> Bryan Drewery > > Hi. > > I’m seeing the same ccache errors and I do not have CC or CCACHE_PATH > defined anywhere. Only WITH_CCACHE_BUILD and WITH_FAST_DEPEND in > src.conf. > > Best regards, > Juan I have an update on this. In fact, I was wrong concerning the content of my src.conf: there was other lines, notably: WITHOUT_CROSS_COMPILER= As soon as I commented it out, make installworld stopped emitting the ccache errors and requiring COMPILER_TYPE="clang" to work. I made another build with the line enabled and again both errors returned. A third build without this line confirmed the solution. I will try again to ensure I’m not following a false track, after updating sources, as I see a lot of recent commits related to the build system. I hope it rings a bell somewhere… Best regards, Juan From owner-freebsd-current@freebsd.org Tue Dec 1 21:46:40 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2003DA3C15B for ; Tue, 1 Dec 2015 21:46:40 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F130D1CB0; Tue, 1 Dec 2015 21:46:39 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id F0F92B9AD; Tue, 1 Dec 2015 16:46:38 -0500 (EST) From: John Baldwin To: "Simon J. Gerraty" Cc: Warner Losh , Sean Bruno , FreeBSD Current Subject: Re: sys/modules "make clean" seems broken again Date: Tue, 01 Dec 2015 13:17:48 -0800 Message-ID: <1629652.gVjg2AI38y@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <14468.1449001747@chaos> References: <564E0322.8050308@freebsd.org> <4121969.dQSZfNjpat@ralph.baldwin.cx> <14468.1449001747@chaos> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 01 Dec 2015 16:46:39 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 21:46:40 -0000 On Tuesday, December 01, 2015 12:29:07 PM Simon J. Gerraty wrote: > John Baldwin wrote: > > > +CLEANFILES+= ${_MFILES:R:S/$/.c/} ${_MFILES:R:S/$/.h/} > > Since CLEANFILES is given to rm, you can use globs > > CLEANFILES+= ${_MFILES:R:S/$/.[ch]/} or .? I'm going to go with the more complicated version just so 'make -V CLEANFILES' doesn't blow up in case someone wants to look at it. -- John Baldwin From owner-freebsd-current@freebsd.org Tue Dec 1 22:31:59 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0201A3CE46 for ; Tue, 1 Dec 2015 22:31:59 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DE8F17F5 for ; Tue, 1 Dec 2015 22:31:59 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtp (envelope-from ) id <1a3tSg-002HjP-LU>; Tue, 01 Dec 2015 23:31:50 +0100 Received: from x55b3a78d.dyn.telefonica.de ([85.179.167.141] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (envelope-from ) id <1a3tSg-001bOo-Fe>; Tue, 01 Dec 2015 23:31:50 +0100 Date: Tue, 1 Dec 2015 23:31:45 +0100 From: "O. Hartmann" To: FreeBSD CURRENT Subject: HELP! libelf.so: no such file or directory Message-ID: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/J4hQMw41ib+fLeNai_ekvK."; protocol="application/pgp-signature" X-Originating-IP: 85.179.167.141 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:31:59 -0000 --Sig_/J4hQMw41ib+fLeNai_ekvK. Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Just a few moments ago, I installed via buildworld/buildkernel a new CURREN= T, then did "make delete-old-libs" and by that, libelf.so.2 got killed! After that, I'm unable to build any world to salvage the problem! Moments l= ater, I did the same procedure on other CURRENT - but in the meanwhile, the obscure del= eteing of libelf.so.2 didn't happen again when issue make delete-old-libs. What is th= at? More important than to know what shit happened is: how to repair the system= ? How's FreeBSD source system to bootstrap itself again to provide libelf.so.2? It = seems, that libelf.so.2 is necessary (nm, for instance) or linker scripts to install li= b. Somehow this is weird ... and leave those who got trapped by someone eleses mistake= s floating dead in the water ... oh=20 --Sig_/J4hQMw41ib+fLeNai_ekvK. Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXh/RAAoJEOgBcD7A/5N8W/8H/3rUwLNFiO5ai2kwdaxGLfdH 5o1k1AYQef+1Z85CqEXHucK0tlRQWhWMaFLMjdgi86q5CHUKRZI0JAn58ZSo0qAf ik+4xlj9W5R4OxQULBhiseIn485b8udhCL1sZT5cfxQO5kI+zSNNeoEHiT5Tm2iY 6af492+Q3Y5LUH/ABYnHZCHCuW8eWK7E0geyA7qZ4gEzRBxUgNinvhMqrSXFoxqA kTwE38DV5VkvDE9GltklShQC3KlsJ6Ru2AMUy1xqd6diozwhHsDsAxBXH0j9aJ6F j/+64K+Sok1aR4u0q2tWezqiMp0fFE2fD12kNxjo1BMN9pSFl6B//tLa0+DnjXQ= =hLzv -----END PGP SIGNATURE----- --Sig_/J4hQMw41ib+fLeNai_ekvK.-- From owner-freebsd-current@freebsd.org Tue Dec 1 22:38:31 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E440BA3CF85 for ; Tue, 1 Dec 2015 22:38:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A525F1A8A for ; Tue, 1 Dec 2015 22:38:30 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtp (envelope-from ) id <1a3tZ7-002JOX-Eu>; Tue, 01 Dec 2015 23:38:29 +0100 Received: from x55b3a78d.dyn.telefonica.de ([85.179.167.141] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (envelope-from ) id <1a3tZ7-001br0-8q>; Tue, 01 Dec 2015 23:38:29 +0100 Date: Tue, 1 Dec 2015 23:38:28 +0100 From: "O. Hartmann" To: FreeBSD CURRENT Subject: Re: HELP! libelf.so: no such file or directory Message-ID: <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> In-Reply-To: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/_h=T3L5mnwrlwTIe5ZKm/9t"; protocol="application/pgp-signature" X-Originating-IP: 85.179.167.141 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:38:32 -0000 --Sig_/_h=T3L5mnwrlwTIe5ZKm/9t Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Tue, 1 Dec 2015 23:31:45 +0100 "O. Hartmann" schrieb: >=20 > Just a few moments ago, I installed via buildworld/buildkernel a new CURR= ENT, then did > "make delete-old-libs" and by that, libelf.so.2 got killed! >=20 > After that, I'm unable to build any world to salvage the problem! Moments= later, I did > the same procedure on other CURRENT - but in the meanwhile, the obscure d= eleteing of > libelf.so.2 didn't happen again when issue make delete-old-libs. What is = that? >=20 > More important than to know what shit happened is: how to repair the syst= em? How's > FreeBSD source system to bootstrap itself again to provide libelf.so.2? I= t seems, that > libelf.so.2 is necessary (nm, for instance) or linker scripts to install = lib. Somehow > this is weird ... and leave those who got trapped by someone eleses mista= kes floating > dead in the water ... >=20 >=20 >=20 > oh=20 Great ... CURRENT, at revision 291620. [...] =3D=3D=3D> sys/boot/i386/boot0sio (all) --- all_subdir_libexec --- make[4]: make[4]: don't know how to make /Versions.def. Stop make[4]: stopped in /usr/src/libexec/rtld-elf --Sig_/_h=T3L5mnwrlwTIe5ZKm/9t Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWXiFkAAoJEOgBcD7A/5N8/WQIALW/6jJ4lrJnZHJ/535fKaYy IVWwhmjdUmEdDBQmDhyhg3OEePuxNmBa+Db3sT24NUKhDVfwpDgGQNTmgoQUWPXz 1HBop/xcierEU8BPmTjqF6+ZK95VHhShza4mIlG5tewe9AHql0URhPfGQfLzcolE jmEUgDxLbSWLN/eICBPedLsFldVRUKPYnKEiI2TyKxh7FsmkxEiO3GuaGTcuBWli 6MA1TOVdgxE5R4Mai35zNs/Pgi/+CTPRu20tUdKfuDx53r+77noQP6rRmTDtyeQk 3KAgCDjQse9xNgCSquFb2TRmLvYQWtsnOxyGeybynuuIwCEkQmu1G3/HpQK1YzI= =8RUF -----END PGP SIGNATURE----- --Sig_/_h=T3L5mnwrlwTIe5ZKm/9t-- From owner-freebsd-current@freebsd.org Tue Dec 1 22:45:58 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCAA6A3E1E6 for ; Tue, 1 Dec 2015 22:45:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C6088103B; Tue, 1 Dec 2015 22:45:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id BE68B19CA; Tue, 1 Dec 2015 22:45:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 83A4414E47; Tue, 1 Dec 2015 22:45:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id aV8onTXGynzl; Tue, 1 Dec 2015 22:45:56 +0000 (UTC) Subject: Re: HELP! libelf.so: no such file or directory DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 33CBE14E42 To: "O. Hartmann" , FreeBSD CURRENT References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565E232F.3010900@FreeBSD.org> Date: Tue, 1 Dec 2015 14:46:07 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E7x3U6esv1rhHohq7aW5mxMHAf99emwQm" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:45:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --E7x3U6esv1rhHohq7aW5mxMHAf99emwQm Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 2:31 PM, O. Hartmann wrote: >=20 > Just a few moments ago, I installed via buildworld/buildkernel a new CU= RRENT, then did > "make delete-old-libs" and by that, libelf.so.2 got killed! >=20 > After that, I'm unable to build any world to salvage the problem! Momen= ts later, I did > the same procedure on other CURRENT - but in the meanwhile, the obscure= deleteing of > libelf.so.2 didn't happen again when issue make delete-old-libs. What i= s that? >=20 > More important than to know what shit happened is: how to repair the sy= stem? How's > FreeBSD source system to bootstrap itself again to provide libelf.so.2?= It seems, that > libelf.so.2 is necessary (nm, for instance) or linker scripts to instal= l lib. Somehow > this is weird ... and leave those who got trapped by someone eleses mis= takes floating > dead in the water ... >=20 >=20 >=20 Just copy it from the obj directory or 'make -C lib/libelf install'. Several bugs contributed to this. --=20 Regards, Bryan Drewery --E7x3U6esv1rhHohq7aW5mxMHAf99emwQm Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXiMvAAoJEDXXcbtuRpfPuV8H+gORGOdFwQsblPaEtX2s2S4l aWo3yNYDsrjJmnVtB6Cd1Fq6zs5CpsmJdsOiyEYcaI2qev/AnZhTOJPGA+CrdK6T VVZlpoxe22gDLE9eUiab7HH8ToT0eMLYjd6Vjt2W+pZbDImDqccawGGajqyZ+JFn 1GuOnYc0eMBcShlVezhEox28Y4z64u+HPsbBMCSFJ2Y62cuiuy8aVMX0PNH8Chl3 7jyNh21pBRM0bpSWs6VcD0iDiXuRhc7y4K86g2+uaYLcx5qVevH+T+0qOUfFwVJJ EkJ0d8Spfp2GctLEe/mvklZOu0fPGIZIHhy7c8sRrFaWSBCNoH6V+7r/wofmwrs= =TU/L -----END PGP SIGNATURE----- --E7x3U6esv1rhHohq7aW5mxMHAf99emwQm-- From owner-freebsd-current@freebsd.org Tue Dec 1 22:46:14 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6E59A3E230 for ; Tue, 1 Dec 2015 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id CFE971120; Tue, 1 Dec 2015 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id C87E91A62; Tue, 1 Dec 2015 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 9639914E54; Tue, 1 Dec 2015 22:46:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id 4RnNmCz8rbOk; Tue, 1 Dec 2015 22:46:12 +0000 (UTC) Subject: Re: HELP! libelf.so: no such file or directory DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 1988414E4E To: "O. Hartmann" , FreeBSD CURRENT References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565E2341.5010301@FreeBSD.org> Date: Tue, 1 Dec 2015 14:46:25 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qufoxX6l9q8olVKJ3tHEmaALHtkaJKCGd" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:46:15 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --qufoxX6l9q8olVKJ3tHEmaALHtkaJKCGd Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 2:38 PM, O. Hartmann wrote: > Am Tue, 1 Dec 2015 23:31:45 +0100 > "O. Hartmann" schrieb: >=20 >> >> Just a few moments ago, I installed via buildworld/buildkernel a new C= URRENT, then did >> "make delete-old-libs" and by that, libelf.so.2 got killed! >> >> After that, I'm unable to build any world to salvage the problem! Mome= nts later, I did >> the same procedure on other CURRENT - but in the meanwhile, the obscur= e deleteing of >> libelf.so.2 didn't happen again when issue make delete-old-libs. What = is that? >> >> More important than to know what shit happened is: how to repair the s= ystem? How's >> FreeBSD source system to bootstrap itself again to provide libelf.so.2= ? It seems, that >> libelf.so.2 is necessary (nm, for instance) or linker scripts to insta= ll lib. Somehow >> this is weird ... and leave those who got trapped by someone eleses mi= stakes floating >> dead in the water ... >> >> >> >> oh=20 >=20 > Great ... CURRENT, at revision 291620. >=20 > [...] >=20 > =3D=3D=3D> sys/boot/i386/boot0sio (all) > --- all_subdir_libexec --- > make[4]: make[4]: don't know how to make /Versions.def. Stop >=20 > make[4]: stopped in /usr/src/libexec/rtld-elf >=20 This is a mistake I just made. Fixing it. --=20 Regards, Bryan Drewery --qufoxX6l9q8olVKJ3tHEmaALHtkaJKCGd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXiNBAAoJEDXXcbtuRpfPx8YIAKjbxmPAM0ohq0lCF4z61wf7 K1dhgKjMKf33y59A9qT/epgFHbspVNFb7fLiupDVWnP/iO0+pndEVLNmYOx0JG20 f8rvMoSuuJCDhYnKAXn5d3AR00unGtpngfXhg1BaMLKAiCIqIrGFZRrCFVTdpPcu WAlEpx3y1b0bnTfDUeJsWSd/Ebko+gzeqS4mS7I0zZ94ui1IdCv8T0/qoWjcTFGD 3QsWufLCTSlm/u/hKq93oYLApovseAr/c+d0/RyJ2mIKOEH8yxCMXAcBDFzPw0IP cgFMy+rlyP5KMJJIk5DwznIz8TU1vHS+F/SQJCdTUBUzAymoUqgeekalXQqzDFE= =Jord -----END PGP SIGNATURE----- --qufoxX6l9q8olVKJ3tHEmaALHtkaJKCGd-- From owner-freebsd-current@freebsd.org Tue Dec 1 22:50:54 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5094EA3E33A for ; Tue, 1 Dec 2015 22:50:54 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 3964114B7; Tue, 1 Dec 2015 22:50:54 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 31CBD1C7F; Tue, 1 Dec 2015 22:50:54 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id E801D14E7B; Tue, 1 Dec 2015 22:50:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id U9t6Y19laaCJ; Tue, 1 Dec 2015 22:50:51 +0000 (UTC) Subject: Re: HELP! libelf.so: no such file or directory DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 3C49614E72 To: "O. Hartmann" , FreeBSD CURRENT References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> <565E2341.5010301@FreeBSD.org> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565E2458.6000505@FreeBSD.org> Date: Tue, 1 Dec 2015 14:51:04 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <565E2341.5010301@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hokQF4xWsf033hTM9d7MG4TnD0BwgQ0Gl" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 22:50:54 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --hokQF4xWsf033hTM9d7MG4TnD0BwgQ0Gl Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 2:46 PM, Bryan Drewery wrote: > On 12/1/2015 2:38 PM, O. Hartmann wrote: >> Am Tue, 1 Dec 2015 23:31:45 +0100 >> "O. Hartmann" schrieb: >> >>> >>> Just a few moments ago, I installed via buildworld/buildkernel a new = CURRENT, then did >>> "make delete-old-libs" and by that, libelf.so.2 got killed! >>> >>> After that, I'm unable to build any world to salvage the problem! Mom= ents later, I did >>> the same procedure on other CURRENT - but in the meanwhile, the obscu= re deleteing of >>> libelf.so.2 didn't happen again when issue make delete-old-libs. What= is that? >>> >>> More important than to know what shit happened is: how to repair the = system? How's >>> FreeBSD source system to bootstrap itself again to provide libelf.so.= 2? It seems, that >>> libelf.so.2 is necessary (nm, for instance) or linker scripts to inst= all lib. Somehow >>> this is weird ... and leave those who got trapped by someone eleses m= istakes floating >>> dead in the water ... >>> >>> >>> >>> oh=20 >> >> Great ... CURRENT, at revision 291620. >> >> [...] >> >> =3D=3D=3D> sys/boot/i386/boot0sio (all) >> --- all_subdir_libexec --- >> make[4]: make[4]: don't know how to make /Versions.def. Stop >> >> make[4]: stopped in /usr/src/libexec/rtld-elf >> >=20 > This is a mistake I just made. Fixing it. >=20 Should be ok now after r291622. --=20 Regards, Bryan Drewery --hokQF4xWsf033hTM9d7MG4TnD0BwgQ0Gl Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXiRYAAoJEDXXcbtuRpfPpVcH/Akwt9kNf/GO6gSLUpQ4gQY7 ZRWXRdPLQHS6Zh1cJv1EaxtQenBJ0tZ8Kcw2ilCfcfxk26hF927kUlpS+ZpD2sEH dE/Zt0KCP72E5yTsdil3wVdZ8WfH36ZteXkx9Wf8mUjeMWHPET3OjSYl6NOcSB5U cAEpxsIsU95ma7GBp+9U9iI15cBU3Wt+1gkHNW6TAKNDve3O0TTqtVVDREp9JBmd ndNjy0iilBHl27VGac4/gBrdis9j37L8qCX3GRTjCqcXdlKT1VdQeCUUcL2ilWzu 9LS0F5dnEXECfZ2oadm8S8/cHVCylXf/kVkRUAYj9O+Hpp5IvGrvy2lhdEdb7+M= =D7h2 -----END PGP SIGNATURE----- --hokQF4xWsf033hTM9d7MG4TnD0BwgQ0Gl-- From owner-freebsd-current@freebsd.org Wed Dec 2 00:08:38 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 804D6A3E8C3 for ; Wed, 2 Dec 2015 00:08:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 73C281373; Wed, 2 Dec 2015 00:08:38 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C2243146; Wed, 2 Dec 2015 00:08:36 +0000 (UTC) Date: Wed, 2 Dec 2015 00:08:35 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <103842785.350.1449014915825.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1541831735.346.1449002196038.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1541831735.346.1449002196038.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1747 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 00:08:38 -0000 FreeBSD_HEAD-tests - Build #1747 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1747/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1747/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1747/console Change summaries: No changes From owner-freebsd-current@freebsd.org Wed Dec 2 01:53:37 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83D5EA3E0D4 for ; Wed, 2 Dec 2015 01:53:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6B2881195 for ; Wed, 2 Dec 2015 01:53:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 64A9C126F for ; Wed, 2 Dec 2015 01:53:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 26E06181E7 for ; Wed, 2 Dec 2015 01:53:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id GslXz4nioj-6 for ; Wed, 2 Dec 2015 01:53:35 +0000 (UTC) Subject: Re: [CFT] build: WITH_FAST_DEPEND and WITH_CCACHE_BUILD DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com E1116181E0 To: freebsd-current@freebsd.org References: <5644CF1C.9020709@FreeBSD.org> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565E4F29.4030702@FreeBSD.org> Date: Tue, 1 Dec 2015 17:53:45 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <5644CF1C.9020709@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1Rxu4w7ug0mB4E7ptQ6ONOeH8lTk33tUs" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 01:53:37 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --1Rxu4w7ug0mB4E7ptQ6ONOeH8lTk33tUs Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 11/12/2015 9:40 AM, Bryan Drewery wrote: > Hi, >=20 > Recently I have introduced two new features into the build. These apply= > to anything using /usr/share/mk including buildworld, buildkernel, > universe, etc. >=20 > - The first is WITH_FAST_DEPEND. Please see the commit for its full FYI there is a known issue with FAST_DEPEND with all of the csu directories and libgcov. Apparently I never thought to do a full build with having .depend files but no objects. Just today some thing changes to cause the .depend files for csu to rebuild hitting the issue. I'll be addressing it soon. The workaround is 'make cleandepend' before building anything that is failing with 'multiple targets' errors. --=20 Regards, Bryan Drewery --1Rxu4w7ug0mB4E7ptQ6ONOeH8lTk33tUs Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXk8qAAoJEDXXcbtuRpfP7k8H/iPbDEu3WECy2p0sVj/IKVEu jEAD/qm3RjKvRyMtM3J42HR4gHIvSDt1ncAgTNYUiXylyuJYzN3pKn0PCa7wl6uB 9bVjVKt7o9lKtHEYMT2GXuXPJVXe7byK7Jh2NowFfbyYVtXEB9ZIe2t+73PcFKey L8/Z9tGE+EsGZZt1q/zykdVKHVw4zryIxEqfzmbQ3tStmF5TvRuY12c/Ooewhmuv 66hSw9mPCclhBQroSeJDbEej6CYOv/r/72N6aegmuP5QYwlPolJh+WEMCMp2Z2ro MUFBy+5khHlwWdW1LNkE82peTcxMCxRT+Y5usRLS5T0S4XnKFTtT+OnT0Glm79s= =pJEG -----END PGP SIGNATURE----- --1Rxu4w7ug0mB4E7ptQ6ONOeH8lTk33tUs-- From owner-freebsd-current@freebsd.org Wed Dec 2 02:01:52 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C41ACA3E3A1; Wed, 2 Dec 2015 02:01:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B026615D4; Wed, 2 Dec 2015 02:01:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id CB8ED19D; Wed, 2 Dec 2015 02:01:52 +0000 (UTC) Date: Wed, 2 Dec 2015 02:01:52 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: bdrewery@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1926401135.352.1449021712788.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1820 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 02:01:53 -0000 FreeBSD_HEAD_i386 - Build #1820 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1820/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1820/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1820/cons= ole Change summaries: 291629 by bdrewery: Fix truncation of _DP_proc and add missing libelf. Sponsored by:=09EMC / Isilon Storage Division 291628 by bdrewery: Reduce overlinking of libdtrace consumers with libctf, libelf, libproc. The proper place for this list is _DP_dtrace. Due to removing the LDADD_dtrace, more LIBADD are needed in cddl/usr.sbin/dtrace to prevent underlinking. This fixes overlinking in cddl/usr.sbin/lockstat and cddl/usr.sbin/plockstat. Sponsored by:=09EMC / Isilon Storage Division 291627 by bdrewery: Fully connect cddl/usr.sbin/plockstat. There seems to be no reason to keep this so private. Also add missing optional MK_CDDL files. Sponsored by:=09EMC / Isilon Storage Division 291626 by bdrewery: Don't overlink libmt consumers with libsbuf. This change came in r281332 which was reducing overlinking in mt(1) but currently mt(1) is linked with sbuf when it does not need it due to the LDADD_mt+=3D${LDADD_sbuf}. Only libmt needs sbuf. Add sbuf to _DP_mt so static linkage of libmt picks it up. Sponsored by:=09EMC / Isilon Storage Division 291625 by bdrewery: libssh uses libz even without MK_LDNS Sponsored by:=09EMC / Isilon Storage Division 291624 by bdrewery: Revert incomplete r291623. 291623 by bdrewery: Add assertions that capture invalid configurations for new libraries. Fix current findings. Given libfoo: - Ensure that a LIBFOO is set. For INTERNALLIBS advise setting this in src.libnames.mk, otherwise bsd.libnames.mk. - Ensure that a LIBFOODIR is properly set. - Ensure that _DP_foo is set and matches the LIBADD in the build of foo's = own Makefile Sponsored by:=09EMC / Isilon Storage Division The end of the build log: [...truncated 86011 lines...] --- input.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/input.c -o inp= ut.o --- list.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/common/list.c -o l= ist.o --- all_subdir_ctfdump --- --- symbol.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opens= olaris -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/opensolar= is -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/head = -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/cmd/mdb/= tools/common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/compat/open= solaris -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/compat/opensolaris/i= nclude -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/t= ools/ctf/common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/= opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protecto= r-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-para= meter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-typ= e -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-a= lign -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-st= yle-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmissing-variable-de= clarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused= -const-variable -Qunused-arguments -c /usr/src/cddl/usr.bin/ctfdump/../../.= ./cddl/contrib/opensolaris/tools/ctf/common/symbol.c -o symbol.o --- all_subdir_ctfconvert --- --- memory.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/common/memory.c -o= memory.o --- all_subdir_ctfdump --- --- utils.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opens= olaris -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/opensolar= is -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/head = -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/cmd/mdb/= tools/common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/compat/open= solaris -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/compat/opensolaris/i= nclude -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/t= ools/ctf/common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/= opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protecto= r-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-para= meter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-typ= e -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-a= lign -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-st= yle-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmissing-variable-de= clarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused= -const-variable -Qunused-arguments -c /usr/src/cddl/usr.bin/ctfdump/../../.= ./cddl/contrib/opensolaris/tools/ctf/common/utils.c -o utils.o --- all_subdir_ctfconvert --- --- merge.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/merge.c -o mer= ge.o --- all_subdir_ctfdump --- --- ctfdump.1.gz --- gzip -cn /usr/src/cddl/usr.bin/ctfdump/ctfdump.1 > ctfdump.1.gz --- ctfdump --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensola= ris -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/opensolaris -= I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/head -I/us= r/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/cmd/mdb/tools/= common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/compat/opensolaris= -I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/compat/opensolaris/include -= I/usr/src/cddl/usr.bin/ctfdump/../../../cddl/contrib/opensolaris/tools/ctf/= common -I/usr/src/cddl/usr.bin/ctfdump/../../../sys/cddl/contrib/opensolari= s/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protector-strong -= Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wst= rict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-q= ual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wcha= r-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-defini= tion -Wno-pointer-sign -Wno-unknown-pragmas -Wmissing-variable-declarations= -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-var= iable -Qunused-arguments -o ctfdump dump.o symbol.o utils.o -lelf -lz --- all_subdir_ctfconvert --- --- output.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/output.c -o ou= tput.o --- all_subdir_lib --- --- getgrouplist.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getg= rouplist.c -o getgrouplist.po --- gethostname.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/geth= ostname.c -o gethostname.po --- getloadavg.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getl= oadavg.c -o getloadavg.po --- getlogin.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getl= ogin.c -o getlogin.po --- all_subdir_cddl --- --- all_subdir_usr.sbin --- =3D=3D=3D> cddl/usr.sbin (all) --- all_subdir_dtrace --- =3D=3D=3D> cddl/usr.sbin/dtrace (all) --- all_subdir_lib --- --- getmntinfo.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getm= ntinfo.c -o getmntinfo.po --- all_subdir_cddl --- --- dtrace.o --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/dtrace/../../../sys/cddl/compat/op= ensolaris -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/compat/opensolaris= /include -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolaris= /head -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolaris/li= b/libdtrace/common -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/o= pensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/dtrace/../../../sys= /cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr.sbin/dtrace/../..= /../sys/cddl/contrib/opensolaris/compat -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-u= nknown-pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-varia= ble -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -= Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-swi= tch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-= arguments -c /usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolari= s/cmd/dtrace/dtrace.c -o dtrace.o --- all_subdir_usr.bin --- --- st_parse.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/st_parse.c -o = st_parse.o --- all_subdir_lib --- --- getnetgrent.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getn= etgrent.c -o getnetgrent.po --- getosreldate.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/geto= sreldate.c -o getosreldate.po --- getpagesize.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getp= agesize.c -o getpagesize.po --- getpagesizes.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getp= agesizes.c -o getpagesizes.po --- all_subdir_cddl --- --- stabs.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/stabs.c -o sta= bs.o --- all_subdir_lib --- --- getpeereid.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getp= eereid.c -o getpeereid.po --- getprogname.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getp= rogname.c -o getprogname.po --- all_subdir_libc++ --- --- iostream.po --- c++ -pg -O2 -pipe -I/usr/src/lib/libc++/../../contrib/libc++/include -I/= usr/src/lib/libc++/../../contrib/libcxxrt -nostdlib -DLIBCXXRT -fstack-prot= ector-strong -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variabl= e -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wn= o-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switc= h -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-ar= guments -std=3Dc++11 -Wno-c++11-extensions -c /usr/src/lib/libc++/../../co= ntrib/libc++/src/iostream.cpp -o iostream.po --- all_subdir_cddl --- --- all_subdir_usr.sbin --- --- dtrace.1.gz --- gzip -cn /usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolaris/cm= d/dtrace/dtrace.1 > dtrace.1.gz --- all_subdir_lib --- --- all_subdir_libc --- --- getpwent.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getp= went.c -o getpwent.po --- all_subdir_cddl --- --- dtrace --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/dtrace/../../../sys/cddl/compat/opens= olaris -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/compat/opensolaris/inc= lude -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolaris/head= -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensolaris/lib/libd= trace/common -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contrib/opensola= ris/lib/libproc/common -I/usr/src/cddl/usr.sbin/dtrace/../../../sys/cddl/co= ntrib/opensolaris/uts/common -I/usr/src/cddl/usr.sbin/dtrace/../../../sys/c= ddl/contrib/opensolaris/compat -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-= protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pr= agmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-= tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unuse= d-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-= switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments= -o dtrace dtrace.o -ldtrace -lctf -lelf -lproc --- all_subdir_usr.bin --- --- stack.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/stack.c -o sta= ck.o --- all_subdir_usr.sbin --- --- all_subdir_dtruss --- =3D=3D=3D> cddl/usr.sbin/dtruss (all) --- dtruss.1.gz --- gzip -cn /usr/src/cddl/usr.sbin/dtruss/dtruss.1 > dtruss.1.gz --- all_subdir_lockstat --- =3D=3D=3D> cddl/usr.sbin/lockstat (all) --- all_subdir_usr.bin --- --- strtab.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/strtab.c -o st= rtab.o --- all_subdir_usr.sbin --- --- lockstat.o --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/lockstat/../../../sys/cddl/compat/= opensolaris -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/compat/opensol= aris/include -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/opens= olaris/head -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/openso= laris/lib/libdtrace/common -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl= /contrib/opensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/lockstat/= ../../../sys/cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr.sbin/= lockstat/../../../sys/cddl/contrib/opensolaris/compat -I/usr/src/cddl/usr.= sbin/lockstat/../../../sys -DNEED_ERRLOC -g -DNEED_SOLARIS_BOOLEAN -std=3Dg= nu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -W= no-unknown-pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equali= ty -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno= -switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunu= sed-arguments -c /usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/open= solaris/cmd/lockstat/lockstat.c -o lockstat.o --- all_subdir_usr.bin --- --- symbol.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/common/symbol.c -o= symbol.o --- tdata.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/tdata.c -o tda= ta.o --- traverse.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/traverse.c -o = traverse.o --- util.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/ope= nsolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/head -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensola= ris/tools/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/cont= rib/opensolaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../= sys/cddl/contrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W= -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a= rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p= arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda= nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmi= ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu= s-int -Wno-unused-const-variable -Qunused-arguments -c /usr/src/cddl/usr.bi= n/ctfconvert/../../../cddl/contrib/opensolaris/tools/ctf/cvt/util.c -o util= .o --- all_subdir_lib --- --- getttyent.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/gett= tyent.c -o getttyent.po --- all_subdir_cddl --- --- ctfconvert.1.gz --- gzip -cn /usr/src/cddl/usr.bin/ctfconvert/ctfconvert.1 > ctfconvert.1.gz --- ctfconvert --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/compat/op= ensolaris -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/compat/opensolar= is/include -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensol= aris -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/contrib/opensolar= is -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensolaris/hea= d -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opensolaris/tool= s/ctf/common -I/usr/src/cddl/usr.bin/ctfconvert/../../../cddl/contrib/opens= olaris/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfconvert/../../../sys/cddl/c= ontrib/opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-p= rotector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unus= ed-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wret= urn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -= Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -= Wold-style-definition -Wno-pointer-sign -Wno-unknown-pragmas -Wmissing-vari= able-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno= -unused-const-variable -Qunused-arguments -o ctfconvert alist.o ctf.o ctfc= onvert.o dwarf.o fixup_tdescs.o hash.o iidesc.o input.o list.o memory.o mer= ge.o output.o st_parse.o stabs.o stack.o strtab.o symbol.o tdata.o traverse= .o util.o -ldwarf -lelf -lz -lpthread --- all_subdir_ctfmerge --- =3D=3D=3D> cddl/usr.bin/ctfmerge (all) --- alist.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/compat/o= pensolaris -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/compat/opensolar= is/include -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensola= ris -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib/opensolaris= -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/head = -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ct= f/common -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolari= s/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib= /opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolo= gical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-funct= ion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-= enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /us= r/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ctf/cvt= /alist.c -o alist.o --- all_subdir_lib --- --- getusershell.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getu= sershell.c -o getusershell.po --- all_subdir_cddl --- --- all_subdir_usr.sbin --- --- sym.o --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/lockstat/../../../sys/cddl/compat/= opensolaris -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/compat/opensol= aris/include -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/opens= olaris/head -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/openso= laris/lib/libdtrace/common -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl= /contrib/opensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/lockstat/= ../../../sys/cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr.sbin/= lockstat/../../../sys/cddl/contrib/opensolaris/compat -I/usr/src/cddl/usr.= sbin/lockstat/../../../sys -DNEED_ERRLOC -g -DNEED_SOLARIS_BOOLEAN -std=3Dg= nu99 -fstack-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -W= no-unknown-pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-v= ariable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equali= ty -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno= -switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunu= sed-arguments -c /usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/open= solaris/cmd/lockstat/sym.c -o sym.o --- all_subdir_usr.bin --- --- barrier.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/compat/o= pensolaris -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/compat/opensolar= is/include -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensola= ris -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib/opensolaris= -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/head = -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ct= f/common -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolari= s/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib= /opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolo= gical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-funct= ion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-= enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /us= r/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ctf/cvt= /barrier.c -o barrier.o --- ctf.o --- cc -O2 -pipe -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/compat/o= pensolaris -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/compat/opensolar= is/include -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensola= ris -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib/opensolaris= -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/head = -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ct= f/common -I/usr/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolari= s/tools/ctf/cvt -I/usr/src/cddl/usr.bin/ctfmerge/../../../sys/cddl/contrib= /opensolaris/uts/common -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolo= gical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-funct= ion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-= enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /us= r/src/cddl/usr.bin/ctfmerge/../../../cddl/contrib/opensolaris/tools/ctf/cvt= /ctf.c -o ctf.o --- all_subdir_lib --- --- getutxent.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getu= txent.c -o getutxent.po --- all_subdir_libc++ --- --- locale.po --- c++ -pg -O2 -pipe -I/usr/src/lib/libc++/../../contrib/libc++/include -I/= usr/src/lib/libc++/../../contrib/libcxxrt -nostdlib -DLIBCXXRT -fstack-prot= ector-strong -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variabl= e -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wn= o-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switc= h -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-ar= guments -std=3Dc++11 -Wno-c++11-extensions -c /usr/src/lib/libc++/../../co= ntrib/libc++/src/locale.cpp -o locale.po --- all_subdir_cddl --- --- all_subdir_usr.sbin --- --- lockstat.1.gz --- gzip -cn /usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/opensolaris/= cmd/lockstat/lockstat.1 > lockstat.1.gz --- lockstat --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/lockstat/../../../sys/cddl/compat/ope= nsolaris -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/compat/opensolaris= /include -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/opensolari= s/head -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contrib/opensolaris/= lib/libdtrace/common -I/usr/src/cddl/usr.sbin/lockstat/../../../cddl/contri= b/opensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/lockstat/../../..= /sys/cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr.sbin/lockstat/= ../../../sys/cddl/contrib/opensolaris/compat -I/usr/src/cddl/usr.sbin/locks= tat/../../../sys -DNEED_ERRLOC -g -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fsta= ck-protector-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown= -pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -W= no-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-un= used-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -W= no-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-argume= nts -o lockstat lockstat.o sym.o -lelf -ldtrace -lrt --- all_subdir_lib --- --- all_subdir_libc --- --- getvfsbyname.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/getv= fsbyname.c -o getvfsbyname.po --- all_subdir_cddl --- --- all_subdir_plockstat --- =3D=3D=3D> cddl/usr.sbin/plockstat (all) --- plockstat.o --- cc -O2 -pipe -I/usr/src/cddl/usr.sbin/plockstat/../../../sys/cddl/compat= /opensolaris -I/usr/src/cddl/usr.sbin/plockstat/../../../cddl/compat/opens= olaris/include -I/usr/src/cddl/usr.sbin/plockstat/../../../cddl/contrib/op= ensolaris/head -I/usr/src/cddl/usr.sbin/plockstat/../../../cddl/contrib/op= ensolaris/lib/libdtrace/common -I/usr/src/cddl/usr.sbin/plockstat/../../..= /cddl/contrib/opensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/ploc= kstat/../../../sys/cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr= .sbin/plockstat/../../../sys/cddl/contrib/opensolaris/compat -I/usr/src/cd= dl/usr.sbin/plockstat/../../../cddl/lib/libdtrace -I/usr/src/cddl/usr.sbin= /plockstat/../../../sys -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-protect= or-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -= Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolo= gical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-funct= ion -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-= enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -c /us= r/src/cddl/usr.sbin/plockstat/../../../cddl/contrib/opensolaris/cmd/plockst= at/plockstat.c -o plockstat.o --- all_subdir_lib --- --- glob.po --- cc -pg -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../= include -I/usr/src/lib/libc/i386 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/= lib/libc/../../contrib/gdtoa -I/usr/src/lib/libc/../../contrib/libc-vis -DI= NET6 -I/usr/obj/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVATE = -DPOSIX_MISTAKE -I/usr/src/lib/libc/../libmd -I/usr/src/lib/libc/../../cont= rib/jemalloc/include -I/usr/src/lib/libc/../../contrib/tzcode/stdtime -I/us= r/src/lib/libc/stdtime -I/usr/src/lib/libc/locale -DBROKEN_DES -DPORTMAP -= DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/usr/src/lib/libutil -I/usr/src/lib/msun/i387 -I= /usr/src/lib/msun/x86 -I/usr/src/lib/msun/src -c /usr/src/lib/libc/gen/glob= .c -o glob.po --- all_subdir_cddl --- /usr/src/cddl/usr.sbin/plockstat/../../../cddl/contrib/opensolaris/cmd/ploc= kstat/plockstat.c:518:38: error: format specifies type 'unsigned long' but = the argument has type 'uintptr_t' (aka 'unsigned int') [-Werror,-Wformat] (void) snprintf(buf, size, "%#lx", addr); ~~~~ ^~~~ %#x /usr/src/cddl/usr.sbin/plockstat/../../../cddl/contrib/opensolaris/cmd/ploc= kstat/plockstat.c:540:38: error: format specifies type 'unsigned long' but = the argument has type 'unsigned long long' [-Werror,-Wformat] len =3D snprintf(buf, size, "+%#lx", addr - sym.st_value); ~~~~ ^~~~~~~~~~~~~~~~~~~ %#llx 2 errors generated. *** [plockstat.o] Error code 1 make[5]: stopped in /usr/src/cddl/usr.sbin/plockstat 1 error make[5]: stopped in /usr/src/cddl/usr.sbin/plockstat *** [all_subdir_plockstat] Error code 2 make[4]: stopped in /usr/src/cddl/usr.sbin 1 error make[4]: stopped in /usr/src/cddl/usr.sbin *** [all_subdir_usr.sbin] Error code 2 make[3]: stopped in /usr/src/cddl --- all_subdir_lib --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/src/lib/libc *** [all_subdir_libc] Error code 2 make[3]: stopped in /usr/src/lib --- all_subdir_cddl --- --- all_subdir_usr.bin --- A failure has been detected in another branch of the parallel make make[5]: stopped in /usr/src/cddl/usr.bin/ctfmerge *** [all_subdir_ctfmerge] Error code 2 make[4]: stopped in /usr/src/cddl/usr.bin 1 error make[4]: stopped in /usr/src/cddl/usr.bin *** [all_subdir_usr.bin] Error code 2 make[3]: stopped in /usr/src/cddl 2 errors make[3]: stopped in /usr/src/cddl *** [all_subdir_cddl] Error code 2 make[2]: stopped in /usr/src --- all_subdir_lib --- --- all_subdir_libc++ --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/src/lib/libc++ *** [all_subdir_libc++] Error code 2 make[3]: stopped in /usr/src/lib 2 errors make[3]: stopped in /usr/src/lib *** [all_subdir_lib] Error code 2 make[2]: stopped in /usr/src 2 errors make[2]: stopped in /usr/src *** [everything] Error code 2 make[1]: stopped in /usr/src 1 error make[1]: stopped in /usr/src *** [buildworld] Error code 2 make: stopped in /usr/src 1 error make: stopped in /usr/src Build step 'Execute shell' marked build as failure [PostBuildScript] - Execution post build scripts. [FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson3021838372654005246.sh + export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b= in' + export 'jname=3DFreeBSD_HEAD_i386' + echo 'clean up jail FreeBSD_HEAD_i386' clean up jail FreeBSD_HEAD_i386 + sudo jail -r FreeBSD_HEAD_i386 + sudo ifconfig igb0 inet6 2610:1c1:1:607c::106:1 -alias + sudo umount FreeBSD_HEAD_i386/usr/src + sudo umount FreeBSD_HEAD_i386/dev + sudo rm -fr FreeBSD_HEAD_i386 + true + sudo chflags -R noschg FreeBSD_HEAD_i386 + sudo rm -fr FreeBSD_HEAD_i386 Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Wed Dec 2 03:46:14 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29E11A3F5AA for ; Wed, 2 Dec 2015 03:46:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFE0E1263 for ; Wed, 2 Dec 2015 03:46:13 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 22909B946; Tue, 1 Dec 2015 22:46:12 -0500 (EST) From: John Baldwin To: freebsd-current@freebsd.org Cc: Joe Maloney , =?ISO-8859-1?Q?Jean=2DS=E9bastien_P=E9dron?= Subject: Re: EFI and i915kms questions Date: Tue, 01 Dec 2015 17:00:47 -0800 Message-ID: <1736392.rQjToYj3It@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> References: <54B18FFE-063F-4F62-9343-28FDE68EE358@pcbsd.org> <56505B3F.2070403@dumbbell.fr> <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 01 Dec 2015 22:46:12 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 03:46:14 -0000 On Saturday, November 28, 2015 04:50:41 PM Joe Maloney wrote: > Thank you. For what it=E2=80=99s worth I was able to grab a dump aft= er setting that sysctl. It looks like this maybe the culprit? >=20 > panic: _sx_xlock_hard: recursed on non-recursive sx gmbus @ /usr/src/= sys/modules/drm2/i915kms/../../../dev/drm2/i915/intel_iic.c:362 >=20 > Since it is to large for posting here. I will include a link to the = entire dump on pastebin if anyone is interesting in looking at it. >=20 > http://pastebin.com/mzS5svy8 >=20 > In addition I did a little further testing to narrow down the issue. >=20 > 10.1-RELEASE WORKS > 10.2-RELEASE WORKS Hmm, the relevant file (intel_iic.c) hasn't changed since 10.2. Howeve= r, the code looks rather dubious. It seems that the function is recursing onto itself he= re: 465 =09 =09 =09 /* 466 =09 =09 =09 * Hardware may not support GMBUS over these p= ins? 467 =09 =09 =09 * Try GPIO bitbanging instead. 468 =09 =09 =09 */ 469 =09 =09 =09 sc->force_bit_dev =3D true; 470 =09dumbbell =09282199 =09 error =3D -IICBUS_TRANSFER(idev, m= sgs, nmsgs); 471 =09kib =09280369 =09 goto out; Note that at the top of the function it invokes IICBUS_TRANSFER on a di= fferent device when force_bit_dev is true: 370 =09 =09 =09 sx_xlock(&dev_priv->gmbus_sx); 371 =09 =09 =09 if (sc->force_bit_dev) { 372 =09dumbbell =09282199 =09 error =3D -IICBUS_TRANSFER= (dev_priv->bbbus[unit], msgs, nmsgs); 373 =09kib =09235783 =09 goto out; 374 =09 =09 =09 } Hmm, I would try changing the line at 470 to match the line at 372. They used to match, and then this change: https://svnweb.freebsd.org/base?view=3Drevision&revision=3D277487 converted direct calls to an iic routine to IICBUS_TRANSFER. However, = it also changed the first parameter of the IICBUS_TRANSFER() to idev at li= ne 470 when it was the longer expression in the previous diff. --=20 John Baldwin From owner-freebsd-current@freebsd.org Wed Dec 2 04:20:28 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8C8CA3FA9E; Wed, 2 Dec 2015 04:20:27 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id CD5191EB8; Wed, 2 Dec 2015 04:20:27 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 8146921E; Wed, 2 Dec 2015 04:20:27 +0000 (UTC) Date: Wed, 2 Dec 2015 04:20:22 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: bdrewery@FreeBSD.org, rmacklem@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1282725460.354.1449030026962.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1926401135.352.1449021712788.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1926401135.352.1449021712788.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #1821 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 04:20:28 -0000 FreeBSD_HEAD_i386 - Build #1821 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1821/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1821/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/1821/console Change summaries: 291638 by rmacklem: Fix the memory leak that occurs when the nfscommon.ko module is unloaded. This leak was introduced by r291527. Since the nfscommon.ko module is rarely unloaded, this leak would not have been much of an issue. MFC after: 2 weeks 291637 by bdrewery: Fix the build for non-amd64. 291635 by bdrewery: bsd.subdir.mk: Only recurse on called targets, rather than dependencies. This is to fix 'make all' causing it to recurse on both 'all' and 'buildconfig' due to 'buildconfig' being in ALL_SUBDIR_TARGETS and being a dependency of 'all'. This now adds all of the '*includes', '*files' targets as subdir targets, allowing them to recurse. This also removes the need for some 'realinstall' hacks in bsd.subdir.mk since it no longer recurses; only 'install' will recurse and call the proper 'beforeinstall', 'realinstall', and 'afterinstall' in each sub-directory. This fixes 'make includes' and 'make files' to not be a rerolled ${MAKE} sub-shell but to rather just recurse on 'inclues' and 'files'. This avoids various issues such as the one fixed in r289462. As such revert Makefile.inc1 back to using 'includes' which avoids an extra tree walk and parallelizes the includes phases better. Makefile.inc1 includes a guard so that 'make all' will not use SUBDIR_PARALLEL, added in r289438. This is so users do not get a probably broken build if they run 'make all' from the top-level. Before the change in this commit, the workaround for 'make everything' was 'par-all' which would depend on 'all' and cause a proper parallel recursion. Now that will not work so a new _PARALLEL_SUBUDIR_OK is used to allow it. This is still part of an effort to combine bsd.(files|incs|confs).mk and move some of its logic out of bsd.subdir.mk, as attempted in r289282 and reverted in r289331. This commit fixes the problems found there which was mostly double recursing during 'includes' which would recurse on itself and 'buildincludes' and 'installincludes', all in parallel. The logic is still in bsd.subdir.mk for now. I've been cautious about this commit but have experienced no breakage on the tree except for the 'par-all' case which was already a hack. If something foo is depending on something bar that should recurse, it is very likely that the foo target is being recursed on already meaning that bar will still effectively recurse once sub-directories call foo. Discussed on: arch@ MFC after: never Sponsored by: EMC / Isilon Storage Division 291634 by bdrewery: Revert r291633. Some files were missed. 291633 by bdrewery: bsd.subdir.mk: Only recurse on called targets, rather than dependencies. This is to fix 'make all' causing it to recurse on both 'all' and 'buildconfig' due to 'buildconfig' being in ALL_SUBDIR_TARGETS and being a dependency of 'all'. This now adds all of the '*includes', '*files' targets as subdir targets, allowing them to recurse. This also removes the need for some 'realinstall' hacks in bsd.subdir.mk since it no longer recurses; only 'install' will recurse and call the proper 'beforeinstall', 'realinstall', and 'afterinstall' in each sub-directory. This fixes 'make includes' and 'make files' to not be a rerolled ${MAKE} sub-shell but to rather just recurse on 'inclues' and 'files'. This avoids various issues such as the one fixed in r289462. As such revert Makefile.inc1 back to using 'includes' which avoids an extra tree walk and parallelizes the includes phases better. Makefile.inc1 includes a guard so that 'make all' will not use SUBDIR_PARALLEL, added in r289438. This is so users do not get a probably broken build if they run 'make all' from the top-level. Before the change in this commit, the workaround for 'make everything' was 'par-all' which would depend on 'all' and cause a proper parallel recursion. Now that will not work so a new _PARALLEL_SUBUDIR_OK is used to allow it. This is still part of an effort to combine bsd.(files|incs|confs).mk and move some of its logic out of bsd.subdir.mk, as attempted in r289282 and reverted in r289331. This commit fixes the problems found there which was mostly double recursing during 'includes' which would recurse on itself and 'buildincludes' and 'installincludes', all in parallel. The logic is still in bsd.subdir.mk for now. I've been cautious about this commit but have experienced no breakage on the tree except for the 'par-all' case which was already a hack. If something foo is depending on something bar that should recurse, it is very likely that the foo target is being recursed on already meaning that bar will still effectively recurse once sub-directories call foo. Discussed on: arch@ MFC after: never Sponsored by: EMC / Isilon Storage Division 291632 by bdrewery: Add assertions that capture invalid configurations for new libraries. Fix current findings, which should fix cases of NO_SHARED not building properly. Given libfoo: - Ensure that a LIBFOO is set. For INTERNALLIBS advise setting this in src.libnames.mk, otherwise bsd.libnames.mk. - Ensure that a LIBFOODIR is properly set. - Ensure that _DP_foo is set and matches the LIBADD in the build of foo's own Makefile Sponsored by: EMC / Isilon Storage Division 291631 by bdrewery: Don't overlink pthread to kerberos library consumers. I'm not sure why this was here, none of these use pthread themselves and none of the consumers are broken with removing this. Sponsored by: EMC / Isilon Storage Division 291630 by bdrewery: Don't overlink pthread to libsqlite3 consumers. At least usr.bin/mandoc was overlink. Sponsored by: EMC / Isilon Storage Division From owner-freebsd-current@freebsd.org Wed Dec 2 05:03:15 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96A28A3416F for ; Wed, 2 Dec 2015 05:03:15 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 56DA51DF3; Wed, 2 Dec 2015 05:03:14 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a3zZQ-003KSp-RL>; Wed, 02 Dec 2015 06:03:12 +0100 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a3zZQ-0020KO-KZ>; Wed, 02 Dec 2015 06:03:12 +0100 Date: Wed, 2 Dec 2015 06:03:05 +0100 From: "O. Hartmann" To: Bryan Drewery Cc: FreeBSD CURRENT Subject: Re: HELP! libelf.so: no such file or directory Message-ID: <20151202060305.57c59453@freyja.zeit4.iv.bundesimmobilien.de> In-Reply-To: <565E2458.6000505@FreeBSD.org> References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> <565E2341.5010301@FreeBSD.org> <565E2458.6000505@FreeBSD.org> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 05:03:15 -0000 On Tue, 1 Dec 2015 14:51:04 -0800 Bryan Drewery wrote: > On 12/1/2015 2:46 PM, Bryan Drewery wrote: > > On 12/1/2015 2:38 PM, O. Hartmann wrote: > >> Am Tue, 1 Dec 2015 23:31:45 +0100 > >> "O. Hartmann" schrieb: > >> > >>> > >>> Just a few moments ago, I installed via buildworld/buildkernel a new > >>> CURRENT, then did "make delete-old-libs" and by that, libelf.so.2 got > >>> killed! > >>> > >>> After that, I'm unable to build any world to salvage the problem! Moments > >>> later, I did the same procedure on other CURRENT - but in the meanwhile, > >>> the obscure deleteing of libelf.so.2 didn't happen again when issue make > >>> delete-old-libs. What is that? > >>> > >>> More important than to know what shit happened is: how to repair the > >>> system? How's FreeBSD source system to bootstrap itself again to provide > >>> libelf.so.2? It seems, that libelf.so.2 is necessary (nm, for instance) > >>> or linker scripts to install lib. Somehow this is weird ... and leave > >>> those who got trapped by someone eleses mistakes floating dead in the > >>> water ... > >>> > >>> > >>> > >>> oh > >> > >> Great ... CURRENT, at revision 291620. > >> > >> [...] > >> > >> ===> sys/boot/i386/boot0sio (all) > >> --- all_subdir_libexec --- > >> make[4]: make[4]: don't know how to make /Versions.def. Stop > >> > >> make[4]: stopped in /usr/src/libexec/rtld-elf > >> > > > > This is a mistake I just made. Fixing it. > > > > Should be ok now after r291622. > Buildworld fails again: [...] rm -f .depend.wctomb_2_test GPATH GRTAGS GSYMS GTAGS --- io_test.cleandir --- --- cleandepend --- --- cleandir_subdir_usr.sbin --- --- cleanobj --- --- cleandir_subdir_rescue --- --- cleandepend_crunchdir_cp --- --- cleandepend --- --- cleandir_subdir_lib --- --- cleandir_subdir_libnandfs --- make[4]: "/usr/src/share/mk/bsd.libnames.mk" line 164: /usr/src/lib/libnandfs: Missing value for LIBNANDFS in bsd.libnames.mk. Likely should be: LIBNANDFS?= ${DESTDIR}${LIBDIR}/libnandfs.a *** [cleandir_subdir_libnandfs] Error code 1 [...] And when doing a mergemaster, just for the prevention I had something wrong: [...] *** Creating the temporary root environment in /var/tmp/temproot *** /var/tmp/temproot ready for use *** Creating and populating directory structure in /var/tmp/temproot make[4]: "/usr/src/share/mk/bsd.libnames.mk" line 164: /usr/src/lib/libnandfs: Missing value for LIBNANDFS in bsd.libnames.mk. Likely should be: LIBNANDFS?= ${DESTDIR}${LIBDIR}/libnandfs.a *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to the temproot environment aaaaarrrrgggghhhhh .... oh From owner-freebsd-current@freebsd.org Wed Dec 2 05:23:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92AC7A346C6 for ; Wed, 2 Dec 2015 05:23:47 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 75788197A; Wed, 2 Dec 2015 05:23:47 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 6A0BA1441; Wed, 2 Dec 2015 05:23:47 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 2DC881862A; Wed, 2 Dec 2015 05:23:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id QSw6u9KifQAc; Wed, 2 Dec 2015 05:23:44 +0000 (UTC) Subject: Re: HELP! libelf.so: no such file or directory DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 7F46B18625 To: "O. Hartmann" References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> <565E2341.5010301@FreeBSD.org> <565E2458.6000505@FreeBSD.org> <20151202060305.57c59453@freyja.zeit4.iv.bundesimmobilien.de> Cc: FreeBSD CURRENT From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <565E806C.9030109@FreeBSD.org> Date: Tue, 1 Dec 2015 21:23:56 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151202060305.57c59453@freyja.zeit4.iv.bundesimmobilien.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1BpEla55a7IxbladT54dEPeEIu6NFC6Id" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 05:23:47 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --1BpEla55a7IxbladT54dEPeEIu6NFC6Id Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/1/2015 9:03 PM, O. Hartmann wrote: > On Tue, 1 Dec 2015 14:51:04 -0800 > Bryan Drewery wrote: >=20 >> On 12/1/2015 2:46 PM, Bryan Drewery wrote: >>> On 12/1/2015 2:38 PM, O. Hartmann wrote: =20 >>>> Am Tue, 1 Dec 2015 23:31:45 +0100 >>>> "O. Hartmann" schrieb: >>>> =20 >>>>> >>>>> Just a few moments ago, I installed via buildworld/buildkernel a ne= w >>>>> CURRENT, then did "make delete-old-libs" and by that, libelf.so.2 g= ot >>>>> killed! >>>>> >>>>> After that, I'm unable to build any world to salvage the problem! M= oments >>>>> later, I did the same procedure on other CURRENT - but in the meanw= hile, >>>>> the obscure deleteing of libelf.so.2 didn't happen again when issue= make >>>>> delete-old-libs. What is that? >>>>> >>>>> More important than to know what shit happened is: how to repair th= e >>>>> system? How's FreeBSD source system to bootstrap itself again to pr= ovide >>>>> libelf.so.2? It seems, that libelf.so.2 is necessary (nm, for insta= nce) >>>>> or linker scripts to install lib. Somehow this is weird ... and lea= ve >>>>> those who got trapped by someone eleses mistakes floating dead in t= he >>>>> water ... >>>>> >>>>> >>>>> >>>>> oh =20 >>>> >>>> Great ... CURRENT, at revision 291620. >>>> >>>> [...] >>>> =20 >>>> =3D=3D=3D> sys/boot/i386/boot0sio (all) =20 >>>> --- all_subdir_libexec --- >>>> make[4]: make[4]: don't know how to make /Versions.def. Stop >>>> >>>> make[4]: stopped in /usr/src/libexec/rtld-elf >>>> =20 >>> >>> This is a mistake I just made. Fixing it. >>> =20 >> >> Should be ok now after r291622. >> >=20 > Buildworld fails again: >=20 > [...] > rm -f .depend.wctomb_2_test GPATH GRTAGS GSYMS GTAGS > --- io_test.cleandir --- > --- cleandepend --- > --- cleandir_subdir_usr.sbin --- > --- cleanobj --- > --- cleandir_subdir_rescue --- > --- cleandepend_crunchdir_cp --- > --- cleandepend --- > --- cleandir_subdir_lib --- > --- cleandir_subdir_libnandfs --- > make[4]: "/usr/src/share/mk/bsd.libnames.mk" line 164: /usr/src/lib/lib= nandfs: > Missing value for LIBNANDFS in bsd.libnames.mk. Likely should be: LIBN= ANDFS?=3D > ${DESTDIR}${LIBDIR}/libnandfs.a *** [cleandir_subdir_libnandfs] Error c= ode 1 > [...] >=20 r291639 will fix that. It's non-default so did not come up in my testing.= --=20 Regards, Bryan Drewery --1BpEla55a7IxbladT54dEPeEIu6NFC6Id Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWXoBsAAoJEDXXcbtuRpfPz9kIALYsdRB4jTb1zkdGxoDwHzAa OTXpgeJ66wLqwFbLLcLsYpKxBffv+2zs1kiSraM35qPdAsJlhUcRH5L299mFHak9 T0M1JlbTZaVvHHgsolCAiEys+E6HlHdTfr5GtLhHBZCbhQKdOQ0w5IIPvNqwubNM Gn5swGBDTby82G/mM02W2JABVTB2l55uKyxfQVeDnbbQutifGZrJwTC3a7OxFE0Z 59P7AiAK13jg2bXEVmOAM3DDgbyAegYTIPqEcfs63DFNkHfzldbu3dwcFXLZ/tLd eJjMmgNTTjhRQYYLeCX+dlQNabJ7ivn1pmlIbizbcump48/F+snE/kY23OkWgc4= =Prcz -----END PGP SIGNATURE----- --1BpEla55a7IxbladT54dEPeEIu6NFC6Id-- From owner-freebsd-current@freebsd.org Wed Dec 2 05:30:52 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EB2FA34802 for ; Wed, 2 Dec 2015 05:30:52 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25E751C69; Wed, 2 Dec 2015 05:30:51 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1a400A-003PG7-72>; Wed, 02 Dec 2015 06:30:50 +0100 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1a4009-0022DX-Vi>; Wed, 02 Dec 2015 06:30:50 +0100 Date: Wed, 2 Dec 2015 06:30:49 +0100 From: "O. Hartmann" To: Bryan Drewery Cc: FreeBSD CURRENT Subject: Re: HELP! libelf.so: no such file or directory Message-ID: <20151202063049.0fdb555a@freyja.zeit4.iv.bundesimmobilien.de> In-Reply-To: <565E806C.9030109@FreeBSD.org> References: <20151201233145.2b9d7ee5.ohartman@zedat.fu-berlin.de> <20151201233828.1e03c5c6.ohartman@zedat.fu-berlin.de> <565E2341.5010301@FreeBSD.org> <565E2458.6000505@FreeBSD.org> <20151202060305.57c59453@freyja.zeit4.iv.bundesimmobilien.de> <565E806C.9030109@FreeBSD.org> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 05:30:52 -0000 On Tue, 1 Dec 2015 21:23:56 -0800 Bryan Drewery wrote: > On 12/1/2015 9:03 PM, O. Hartmann wrote: > > On Tue, 1 Dec 2015 14:51:04 -0800 > > Bryan Drewery wrote: > > > >> On 12/1/2015 2:46 PM, Bryan Drewery wrote: > >>> On 12/1/2015 2:38 PM, O. Hartmann wrote: > >>>> Am Tue, 1 Dec 2015 23:31:45 +0100 > >>>> "O. Hartmann" schrieb: > >>>> > >>>>> > >>>>> Just a few moments ago, I installed via buildworld/buildkernel a new > >>>>> CURRENT, then did "make delete-old-libs" and by that, libelf.so.2 got > >>>>> killed! > >>>>> > >>>>> After that, I'm unable to build any world to salvage the problem! > >>>>> Moments later, I did the same procedure on other CURRENT - but in the > >>>>> meanwhile, the obscure deleteing of libelf.so.2 didn't happen again > >>>>> when issue make delete-old-libs. What is that? > >>>>> > >>>>> More important than to know what shit happened is: how to repair the > >>>>> system? How's FreeBSD source system to bootstrap itself again to provide > >>>>> libelf.so.2? It seems, that libelf.so.2 is necessary (nm, for instance) > >>>>> or linker scripts to install lib. Somehow this is weird ... and leave > >>>>> those who got trapped by someone eleses mistakes floating dead in the > >>>>> water ... > >>>>> > >>>>> > >>>>> > >>>>> oh > >>>> > >>>> Great ... CURRENT, at revision 291620. > >>>> > >>>> [...] > >>>> > >>>> ===> sys/boot/i386/boot0sio (all) > >>>> --- all_subdir_libexec --- > >>>> make[4]: make[4]: don't know how to make /Versions.def. Stop > >>>> > >>>> make[4]: stopped in /usr/src/libexec/rtld-elf > >>>> > >>> > >>> This is a mistake I just made. Fixing it. > >>> > >> > >> Should be ok now after r291622. > >> > > > > Buildworld fails again: > > > > [...] > > rm -f .depend.wctomb_2_test GPATH GRTAGS GSYMS GTAGS > > --- io_test.cleandir --- > > --- cleandepend --- > > --- cleandir_subdir_usr.sbin --- > > --- cleanobj --- > > --- cleandir_subdir_rescue --- > > --- cleandepend_crunchdir_cp --- > > --- cleandepend --- > > --- cleandir_subdir_lib --- > > --- cleandir_subdir_libnandfs --- > > make[4]: "/usr/src/share/mk/bsd.libnames.mk" line > > 164: /usr/src/lib/libnandfs: Missing value for LIBNANDFS in > > bsd.libnames.mk. Likely should be: LIBNANDFS?= > > ${DESTDIR}${LIBDIR}/libnandfs.a *** [cleandir_subdir_libnandfs] Error code > > 1 [...] > > r291639 will fix that. It's non-default so did not come up in my testing. > > I "accidentally" did testing ;-) Thank you very much for that fast fixing. Kind regards, Oliver From owner-freebsd-current@freebsd.org Wed Dec 2 07:39:18 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C44FA3EF57 for ; Wed, 2 Dec 2015 07:39:18 +0000 (UTC) (envelope-from jean-sebastien.pedron@dumbbell.fr) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AA7114A7 for ; Wed, 2 Dec 2015 07:39:18 +0000 (UTC) (envelope-from jean-sebastien.pedron@dumbbell.fr) Received: from 141.7.19.93.rev.sfr.net ([93.19.7.141] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.86 (FreeBSD)) (envelope-from ) id 1a420R-0006nk-M2 for freebsd-current@freebsd.org; Wed, 02 Dec 2015 08:39:15 +0100 Subject: Re: EFI and i915kms questions To: freebsd-current@freebsd.org References: <54B18FFE-063F-4F62-9343-28FDE68EE358@pcbsd.org> <56505B3F.2070403@dumbbell.fr> <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> <1736392.rQjToYj3It@ralph.baldwin.cx> From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= X-Enigmail-Draft-Status: N1110 Message-ID: <565EA01E.7000300@dumbbell.fr> Date: Wed, 2 Dec 2015 08:39:10 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <1736392.rQjToYj3It@ralph.baldwin.cx> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="uaeuxgrhrIB2nxxjinPocCordRdhJBBak" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 07:39:18 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --uaeuxgrhrIB2nxxjinPocCordRdhJBBak Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 02/12/2015 02:00, John Baldwin wrote: > Note that at the top of the function it invokes IICBUS_TRANSFER on a di= fferent > device when force_bit_dev is true: >=20 > 370 sx_xlock(&dev_priv->gmbus_sx); > 371 if (sc->force_bit_dev) { > 372 dumbbell 282199 error =3D -IICBUS_TRANSFER(dev_p= riv->bbbus[unit], msgs, nmsgs); > 373 kib 235783 goto out; > 374 } >=20 > Hmm, I would try changing the line at 470 to match the line at 372. >=20 > They used to match, and then this change: You're right. This is something I fixed in my i915 update branch but forgot to commit to HEAD... Joe, could you please try what John suggests to confirm? --=20 Jean-S=C3=A9bastien P=C3=A9dron --uaeuxgrhrIB2nxxjinPocCordRdhJBBak Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJWXqAjXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTMQsUP/244KhOWGYDi5SthDehxkx3r Kuvmj+BUflnDYXI2cDR/mJGaDHFik6DmzAvTsdbVgxgUaAQ/2lEWBvwTWGJTmx++ jDvNOhUzDsLzTVqM0wiJS7jEtrsi4s+FuTVF3AUKyTbebgnT/JCG6KCJO6JDYEyL +hJg5ZsfA/d4FQ6n2eZzo+QT7AjHXtWfTXb5kbC3oRRUKAjV0ymZjiumecLLZyGf tNS+9s4JlHzPRNlyE/Jvz1eEve88uQPaqWQWuIMqrpXZKS7owMfcecfoKlylqYCY jg0bvkV1xK8CT5LCIuXHqTpWHd+IU8qzYcMW+zdjzvxnkwOASxGZKX3WQ//uYJQ8 dTdvsHmGXlCQ1OxkxCjHEZh6oR2yIciJpa69ogK9xd5uh4ZJGULgUn21qzNd/xH3 VdlGuJ8tqGXcKSwIEGNRrKDxbNXvzbv63pp0G+va75GM0Wuj0CjgIeZ0Hrlxq9Ao KA4hFYkypKczobe29nkSzFwh/Wd7rHaUmNvpu8WiEc9ZPIX7f2E6AJHitkQ6C2lL rZ9HDSCuIHL0dC+YMj/RE00meTl+fWsooHh8O5oFF/OF1GkIPDQW0qp4ctK/YUPP iC7KT7JNVeebwgX5CT8f3SnGmA90wNtpqUNaMULeZrxdD6SZU/en42GL/JT7l2Az +VIsbX1z92QC573cpU2D =zRmt -----END PGP SIGNATURE----- --uaeuxgrhrIB2nxxjinPocCordRdhJBBak-- From owner-freebsd-current@freebsd.org Wed Dec 2 11:28:32 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5637A3E62C for ; Wed, 2 Dec 2015 11:28:32 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 935D2131C; Wed, 2 Dec 2015 11:28:32 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 91230B93C; Wed, 2 Dec 2015 06:28:31 -0500 (EST) From: John Baldwin To: freebsd-current@freebsd.org Cc: Don Lewis Subject: Re: panic: sbuf_vprintf called with a NULL sbuf pointer Date: Wed, 02 Dec 2015 03:28:07 -0800 Message-ID: <2392832.V4SzgugFk4@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201511300016.tAU0GB2c093099@gw.catspoiler.org> References: <201511300016.tAU0GB2c093099@gw.catspoiler.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 02 Dec 2015 06:28:31 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 11:28:32 -0000 On Sunday, November 29, 2015 04:16:11 PM Don Lewis wrote: > I got this strange panic the other day: > > panic: sbuf_vprintf called with a NULL sbuf pointer > > The machine was running this: > > FreeBSD zipper.catspoiler.org 11.0-CURRENT FreeBSD 11.0-CURRENT #31 r290224: Sat Oct 31 02:56:36 PDT 2015 dl@zipper.catspoiler.org:/usr/obj/usr/src/sys/GENERIC amd64 > > > The trigger was: > > swap_pager: indefinite wait buffer: bufobj: 0 blkno: 1737153, > size 4096 > > That triggered an attempt to kill a process and create a core file for > it. > > Where things get strange is at #16 and #17 in the backtrace: > > #13 0xffffffff80a20676 in kassert_panic ( > fmt=0xffffffff8137bf84 "%s called with a NULL sbuf pointer") > at /usr/src/sys/kern/kern_shutdown.c:647 > #14 0xffffffff80a66c51 in _assert_sbuf_integrity ( > fun=0xffffffff8137bdf8 "sbuf_vprintf", s=0x0) > at /usr/src/sys/kern/subr_sbuf.c:103 > #15 0xffffffff80a6742e in sbuf_vprintf (s=0x0, fmt=, > ap=) at /usr/src/sys/kern/subr_sbuf.c:583 > #16 sbuf_printf (s=0x0, fmt=0xffffffff80fd8ad3 "%s") > at /usr/src/sys/kern/subr_sbuf.c:677 > #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, > uid=, pid=, td=, > vpp=, namep=) > at /usr/src/sys/kern/kern_sig.c:3188 > #18 coredump (td=0x0) at /usr/src/sys/kern/kern_sig.c:3337 > #19 sigexit (td=0x0, sig=40) at /usr/src/sys/kern/kern_sig.c:2976 > #20 0xffffffff80a6fcb8 in userret (td=0xfffff8057b0a59a0, > frame=) at /usr/src/sys/kern/subr_trap.c:147 > #21 0xffffffff80e68619 in syscallret (td=0xfffff8057b0a59a0, > error=, sa=) > at /usr/src/sys/amd64/amd64/../../kern/subr_syscall.c:187 > #22 amd64_syscall (td=0xfffff8057b0a59a0, traced=0) > at /usr/src/sys/amd64/amd64/trap.c:956 > #23 0xffffffff80e47a3b in Xfast_syscall () > at /usr/src/sys/amd64/amd64/exception.S:394 > #24 0x000000080cc9f12a in ?? () > > In #16, s is 0x0, which is strange because kern_sig.c:3188 is: > > #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, > uid=, pid=, td=, > vpp=, namep=) > at /usr/src/sys/kern/kern_sig.c:3188 > 3188 sbuf_printf(&sb, "%s", comm); > > I don't see how &sb can be NULL ... Agreed on that. > Also interesting is: > > (kgdb) print sb > $1 = > > I don't see how sb can be optimized out since its address is passed to > sbuf_printf(). This is just what gdb says when it doesn't think it can find the value becuase the regsiter holding it (according to the debug info) has been overwritten. Sometimes if you look in the disassembly you can find another copy of the value in another register and figure out the value thay way. If you use kgdb710 from the devel/gdb port it sometimes does a better job here, but even with it I often run into this. > While format is optimized out, the corefilename isn't and > format=corefilename > > (kgdb) print format > $2 = > (kgdb) print corefilename > $3 = "%N.core", '\000' > > Since this is the first iteration of the loop, and the crash happens on > the entry into sbuf_printf()->sbuf_vprintf(), it doesn't look like it > could be caused by stack smash. > > Under other circumstances I've seen other processes dump core, and I can > trigger core dumps by sending SIGQUIT to processes ... > > %sleep 10 & > [1] 2456 > %kill -QUIT %1 > % > [1] Quit sleep 10 (core dumped) > > Another other oddity is td=0x0 in frames 18 and 19. I'm guessing that > kgdb is wrong about this because that should cause a NULL pointer > dereference panic in sigexit(). Probably the saved register on the stack that gdb thinks td is saved in has been overwritten (so this could be a buffer overrun onto the stack after all). > Also sig=40 in sigexit() is strange since the highest numbered signal is > 33. > > Lastly, I don't see how we get from userret() to sigexit(). Line 147 in > subr_trap.c (userret()) is: > WITNESS_WARN(WARN_PANIC, NULL, "userret: returning"); I suspect there is some tail-call optimization or some such so that the function userret() called branched go sigexit() instead of calling it (since it is marked __dead2, meaning it never returns). kgdb710 might cope with this better (it constructs "fake" frames for inlined functions for example). If you want to look at this further, try going to frame 16 and dissassembling the instructions before the call to see if you can spot which register the first parameter (saved in %rdi IIRC) comes from. -- John Baldwin From owner-freebsd-current@freebsd.org Wed Dec 2 17:35:52 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 353CAA3FFFC for ; Wed, 2 Dec 2015 17:35:52 +0000 (UTC) (envelope-from mikej@mikej.com) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E99CD1008 for ; Wed, 2 Dec 2015 17:35:51 +0000 (UTC) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (162-230-214-65.lightspeed.lsvlky.sbcglobal.net [162.230.214.65]) by mx2.paymentallianceintl.com (8.15.1/8.15.1) with ESMTPS id tB2HZh08073452 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 2 Dec 2015 12:35:44 -0500 (EST) (envelope-from mikej@mikej.com) X-Authentication-Warning: mx2.paymentallianceintl.com: Host 162-230-214-65.lightspeed.lsvlky.sbcglobal.net [162.230.214.65] claimed to be firewall.mikej.com Received: from mail.mikej.com (firewall.mikej.com [192.168.6.63]) by firewall.mikej.com (8.15.2/8.15.2) with ESMTP id tB2HZNER018971 for ; Wed, 2 Dec 2015 12:35:24 -0500 (EST) (envelope-from mikej@mikej.com) DKIM-Filter: OpenDKIM Filter v2.10.3 firewall.mikej.com tB2HZNER018971 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mikej.com; s=mail; t=1449077724; bh=hKGCXEiMdhv79pUeD7tDldliYLR7UF8m7va53mWCxZk=; h=Date:From:To:Subject; b=nFD6P2WsYm7QTdhWl88MGdc+K/RksEb3UvtMa6S5IriqUCclYo6g3LvpDe3VzNuyA /Dk4ETGH+vn4XNx7qff4VgkswFtkipv339mWNOaIZWLTw0v/sTlm5bbkDlw918PKc/ cBilYtPRX9pQLj0F8dw+UA/6yXehrJ0FdmhDIt4op6hd4wz10Qm5AEAKLyva1CQRLy tJ/6KSqHR163F7A7qgG7xOaICHo5S8oTQ7ShOlYpH6eFNlNwIrQGtL2dxUU94Gxt6e lhQCgU1/xh7DmETUWKOPDaaZSH+8yrQcJyBkQNDwybfeUMhBnInF9jqtkPQoKN7jVv GGF2LFUjDqGIA== X-Authentication-Warning: firewall.mikej.com: Host firewall.mikej.com [192.168.6.63] claimed to be mail.mikej.com MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 02 Dec 2015 12:35:23 -0500 From: Michael Jung To: freebsd-current@freebsd.org Subject: r291494 PANIC mtx_lock() of spin mutex @ /usr/src/sys/kern/vfs_subr.c:512 Message-ID: X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/1.1.3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 17:35:52 -0000 Since upgrading to r291494 from r290716 my system reliably panics when running poudriere. Dump header from device: /dev/da2p1 Architecture: amd64 Architecture Version: 2 Dump Length: 4301131776 Blocksize: 512 Dumptime: Wed Dec 2 12:10:06 2015 Hostname: bsd11 Magic: FreeBSD Kernel Dump Version String: FreeBSD 11.0-CURRENT #9 r291494: Mon Nov 30 13:21:08 EST 2015 mikej@bsd11:/usr/obj/usr/src/sys/GENERIC Panic String: mtx_lock() of spin mutex @ /usr/src/sys/kern/vfs_subr.c:512 Dump Parity: 2232113789 Bounds: 1 Dump Status: good https://charon.gopai.com/crash/info.1 https://charon.gppai.com/crash/core.txt.1 https://charon.gopai.com/crash/vmcore.1 I could not find a reference to this panic. Regards, --mikej From owner-freebsd-current@freebsd.org Wed Dec 2 20:32:34 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBEB4A3F78F for ; Wed, 2 Dec 2015 20:32:34 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: from mail-wm0-x235.google.com (mail-wm0-x235.google.com [IPv6:2a00:1450:400c:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 533591ACA for ; Wed, 2 Dec 2015 20:32:34 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: by wmvv187 with SMTP id v187so273448053wmv.1 for ; Wed, 02 Dec 2015 12:32:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=4H9Kh5gHSer7O9YCcuJLDiYrmwFYOM/83CGtzLfVXd8=; b=FmQAAtppUjltAlNjBAIICo/ahpHFKNl2oGLLTyZAmmRT+/yxuuF+mMRsOdaLNzp+b+ T8wHE0LTNsdCj2KyxG7csm0o9GU1CwUAVyZGrMoWb1ahlZgjKWLf9SmCymCZYfJNSFEj AZABUeE3y6rial4cF5apQmlb0gyXLtuYVftFKUj4oIcsK6fijHDHhwvBctFH/WHpnwLH dZOdHNFqaWVx3k7UoDU25rCV+Xlbd/BCfwUzYmcxNcu0kCAltNQ1YZCdKU2HBP798fZQ nyq3SkZ9Ia++/qC7Ia2q5aMfuoNhNbJkACAt54XHP6F12KUbGS7hwsa1RhBClC2ezXAz /GZw== X-Received: by 10.194.179.162 with SMTP id dh2mr7053444wjc.17.1449088352918; Wed, 02 Dec 2015 12:32:32 -0800 (PST) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by smtp.gmail.com with ESMTPSA id w4sm4331208wje.49.2015.12.02.12.32.32 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 02 Dec 2015 12:32:32 -0800 (PST) Date: Wed, 2 Dec 2015 21:32:30 +0100 From: Mateusz Guzik To: Michael Jung Cc: freebsd-current@freebsd.org Subject: Re: r291494 PANIC mtx_lock() of spin mutex @ /usr/src/sys/kern/vfs_subr.c:512 Message-ID: <20151202203230.GB30250@dft-labs.eu> Mail-Followup-To: Mateusz Guzik , Michael Jung , freebsd-current@freebsd.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 20:32:34 -0000 On Wed, Dec 02, 2015 at 12:35:23PM -0500, Michael Jung wrote: > Since upgrading to r291494 from r290716 my system reliably panics > when running poudriere. > > Dump header from device: /dev/da2p1 > Architecture: amd64 > Architecture Version: 2 > Dump Length: 4301131776 > Blocksize: 512 > Dumptime: Wed Dec 2 12:10:06 2015 > Hostname: bsd11 > Magic: FreeBSD Kernel Dump > Version String: FreeBSD 11.0-CURRENT #9 r291494: Mon Nov 30 > 13:21:08 EST 2015 > mikej@bsd11:/usr/obj/usr/src/sys/GENERIC > Panic String: mtx_lock() of spin mutex @ > /usr/src/sys/kern/vfs_subr.c:512 > Dump Parity: 2232113789 > Bounds: 1 > Dump Status: good > > > > https://charon.gopai.com/crash/info.1 > > https://charon.gppai.com/crash/core.txt.1 > > https://charon.gopai.com/crash/vmcore.1 > > I could not find a reference to this panic. > please see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204949 -- Mateusz Guzik From owner-freebsd-current@freebsd.org Wed Dec 2 21:26:05 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9833A3F149 for ; Wed, 2 Dec 2015 21:26:04 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (unknown [IPv6:2602:304:b010:ef20::f2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.catspoiler.org", Issuer "gw.catspoiler.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BDD6C14A6; Wed, 2 Dec 2015 21:26:04 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.15.2/8.15.2) with ESMTP id tB2LPuHA021478; Wed, 2 Dec 2015 13:26:00 -0800 (PST) (envelope-from truckman@FreeBSD.org) Message-Id: <201512022126.tB2LPuHA021478@gw.catspoiler.org> Date: Wed, 2 Dec 2015 13:25:56 -0800 (PST) From: Don Lewis Subject: Re: panic: sbuf_vprintf called with a NULL sbuf pointer To: jhb@freebsd.org cc: freebsd-current@freebsd.org In-Reply-To: <2392832.V4SzgugFk4@ralph.baldwin.cx> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 21:26:05 -0000 On 2 Dec, John Baldwin wrote: > On Sunday, November 29, 2015 04:16:11 PM Don Lewis wrote: >> I got this strange panic the other day: >> >> panic: sbuf_vprintf called with a NULL sbuf pointer >> >> The machine was running this: >> >> FreeBSD zipper.catspoiler.org 11.0-CURRENT FreeBSD 11.0-CURRENT #31 r290224: Sat Oct 31 02:56:36 PDT 2015 dl@zipper.catspoiler.org:/usr/obj/usr/src/sys/GENERIC amd64 >> >> >> The trigger was: >> >> swap_pager: indefinite wait buffer: bufobj: 0 blkno: 1737153, >> size 4096 >> >> That triggered an attempt to kill a process and create a core file for >> it. >> >> Where things get strange is at #16 and #17 in the backtrace: >> >> #13 0xffffffff80a20676 in kassert_panic ( >> fmt=0xffffffff8137bf84 "%s called with a NULL sbuf pointer") >> at /usr/src/sys/kern/kern_shutdown.c:647 >> #14 0xffffffff80a66c51 in _assert_sbuf_integrity ( >> fun=0xffffffff8137bdf8 "sbuf_vprintf", s=0x0) >> at /usr/src/sys/kern/subr_sbuf.c:103 >> #15 0xffffffff80a6742e in sbuf_vprintf (s=0x0, fmt=, >> ap=) at /usr/src/sys/kern/subr_sbuf.c:583 >> #16 sbuf_printf (s=0x0, fmt=0xffffffff80fd8ad3 "%s") >> at /usr/src/sys/kern/subr_sbuf.c:677 >> #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, >> uid=, pid=, td=, >> vpp=, namep=) >> at /usr/src/sys/kern/kern_sig.c:3188 >> #18 coredump (td=0x0) at /usr/src/sys/kern/kern_sig.c:3337 >> #19 sigexit (td=0x0, sig=40) at /usr/src/sys/kern/kern_sig.c:2976 >> #20 0xffffffff80a6fcb8 in userret (td=0xfffff8057b0a59a0, >> frame=) at /usr/src/sys/kern/subr_trap.c:147 >> #21 0xffffffff80e68619 in syscallret (td=0xfffff8057b0a59a0, >> error=, sa=) >> at /usr/src/sys/amd64/amd64/../../kern/subr_syscall.c:187 >> #22 amd64_syscall (td=0xfffff8057b0a59a0, traced=0) >> at /usr/src/sys/amd64/amd64/trap.c:956 >> #23 0xffffffff80e47a3b in Xfast_syscall () >> at /usr/src/sys/amd64/amd64/exception.S:394 >> #24 0x000000080cc9f12a in ?? () >> >> In #16, s is 0x0, which is strange because kern_sig.c:3188 is: >> >> #17 0xffffffff80a237d6 in corefile_open (compress=0, comm=, >> uid=, pid=, td=, >> vpp=, namep=) >> at /usr/src/sys/kern/kern_sig.c:3188 >> 3188 sbuf_printf(&sb, "%s", comm); >> >> I don't see how &sb can be NULL ... > > Agreed on that. > >> Also interesting is: >> >> (kgdb) print sb >> $1 = >> >> I don't see how sb can be optimized out since its address is passed to >> sbuf_printf(). > > This is just what gdb says when it doesn't think it can find the value > becuase the regsiter holding it (according to the debug info) has been > overwritten. Sometimes if you look in the disassembly you can find another > copy of the value in another register and figure out the value thay way. > If you use kgdb710 from the devel/gdb port it sometimes does a better job > here, but even with it I often run into this. I am using kgdb710. >> While format is optimized out, the corefilename isn't and >> format=corefilename >> >> (kgdb) print format >> $2 = >> (kgdb) print corefilename >> $3 = "%N.core", '\000' >> >> Since this is the first iteration of the loop, and the crash happens on >> the entry into sbuf_printf()->sbuf_vprintf(), it doesn't look like it >> could be caused by stack smash. >> >> Under other circumstances I've seen other processes dump core, and I can >> trigger core dumps by sending SIGQUIT to processes ... >> >> %sleep 10 & >> [1] 2456 >> %kill -QUIT %1 >> % >> [1] Quit sleep 10 (core dumped) >> >> Another other oddity is td=0x0 in frames 18 and 19. I'm guessing that >> kgdb is wrong about this because that should cause a NULL pointer >> dereference panic in sigexit(). > > Probably the saved register on the stack that gdb thinks td is saved in has > been overwritten (so this could be a buffer overrun onto the stack after > all). > >> Also sig=40 in sigexit() is strange since the highest numbered signal is >> 33. >> >> Lastly, I don't see how we get from userret() to sigexit(). Line 147 in >> subr_trap.c (userret()) is: >> WITNESS_WARN(WARN_PANIC, NULL, "userret: returning"); > > I suspect there is some tail-call optimization or some such so that the function > userret() called branched go sigexit() instead of calling it (since it is marked > __dead2, meaning it never returns). kgdb710 might cope with this better (it > constructs "fake" frames for inlined functions for example). > > If you want to look at this further, try going to frame 16 and dissassembling the > instructions before the call to see if you can spot which register the first > parameter (saved in %rdi IIRC) comes from. Dump of assembler code for function sbuf_printf: 0xffffffff80a673e0 <+0>: push %rbp 0xffffffff80a673e1 <+1>: mov %rsp,%rbp 0xffffffff80a673e4 <+4>: push %r14 0xffffffff80a673e6 <+6>: push %rbx 0xffffffff80a673e7 <+7>: sub $0x50,%rsp 0xffffffff80a673eb <+11>: mov %rsi,%r14 0xffffffff80a673ee <+14>: mov %rdi,%rbx 0xffffffff80a673f1 <+17>: mov %r9,-0x38(%rbp) 0xffffffff80a673f5 <+21>: mov %r8,-0x40(%rbp) 0xffffffff80a673f9 <+25>: mov %rcx,-0x48(%rbp) 0xffffffff80a673fd <+29>: mov %rdx,-0x50(%rbp) 0xffffffff80a67401 <+33>: lea -0x60(%rbp),%rax 0xffffffff80a67405 <+37>: mov %rax,-0x20(%rbp) 0xffffffff80a67409 <+41>: lea 0x10(%rbp),%rax 0xffffffff80a6740d <+45>: mov %rax,-0x28(%rbp) 0xffffffff80a67411 <+49>: movl $0x30,-0x2c(%rbp) 0xffffffff80a67418 <+56>: movl $0x10,-0x30(%rbp) 0xffffffff80a6741f <+63>: mov $0xffffffff8137bdf8,%rdi 0xffffffff80a67426 <+70>: mov %rbx,%rsi 0xffffffff80a67429 <+73>: callq 0xffffffff80a66c00 <_assert_sbuf_integrity> 0xffffffff80a237b9 <+825>: jmpq 0xffffffff80a236fd 0xffffffff80a237be <+830>: mov $0xffffffff80fd8ad3,%rsi 0xffffffff80a237c5 <+837>: xor %eax,%eax 0xffffffff80a237c7 <+839>: mov %r12,%rdi 0xffffffff80a237ca <+842>: mov -0x228(%rbp),%rdx 0xffffffff80a237d1 <+849>: callq 0xffffffff80a673e0 => 0xffffffff80a237d6 <+854>: inc %r14d 0xffffffff80a237d9 <+857>: jmpq 0xffffffff80a236fd From owner-freebsd-current@freebsd.org Wed Dec 2 21:39:28 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BA6CA3F3D7 for ; Wed, 2 Dec 2015 21:39:28 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: from mail-oi0-x241.google.com (mail-oi0-x241.google.com [IPv6:2607:f8b0:4003:c06::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8D281AAC for ; Wed, 2 Dec 2015 21:39:27 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: by oige206 with SMTP id e206so3166400oig.2 for ; Wed, 02 Dec 2015 13:39:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ara-ler-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=LzTu5HrXPr4NMxumCJZPkqEjEQjECpBB3CHsm4/CWTM=; b=sbZNVVUkeO01Gjz18ybQlCldM12DpnQr/ZZmc5HtoyUJDaSD93Z2/lWmBXcMajGXuV aK4FaEGuH4MpnZp/lWg9YQdldfiDqUYZjmF7SWQxwmHDMpiBIlVf+5Rl8kz08j4ZHa0L nZzpFQy+oaKKrBtu4/V3KzBSUWUQroYaevVKiAVAFZJRQo5ZnYQskFqMMj2gHismZm2B fcunfF0t6VDr2pZXCDhQQTxCc4qRAr5sf1O7yEVLDdkjbpk35HJTaMp0RJ61lbHgUBEm IrvvykqRA4R3sLBEdnIkrt5ylUpYtBC8ihqzfaAe9BerEk11/QhZahKexk7s0X8PspvK tqbg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=LzTu5HrXPr4NMxumCJZPkqEjEQjECpBB3CHsm4/CWTM=; b=lV/SAyPNgUgnW0gcvARwE4hvf71Ax3hvFt3QTYYORc9ev5KCDLgd4zIYS2uWyz4oIu GXYY6vBilYqXaLC4+TzbMSPplddJoKe3VpdqCV106wfaZUpXyZPKCt+Aqat0S8NNrfg2 MYir1GmXd0+2tNcbA+DK+y4xXZP8nxQLaRzzJZdrcaxs10GAZqqrLHT7eebzwyiwrFZs dftqXTO/0/pFbOY9qo5kdcvrxHHg7J+mE5dC/dOVBIWWkx57slhg/OP6xONEiZ87z5Ak GEFjnDNab0kp4y94LR/QrQ1rqNvoq+EfrOsBba9C8L7KOyNRMPloueGyTZTrR9Ay/jDu F3Cw== X-Gm-Message-State: ALoCoQlytH7Rgn4DqmymVgG5FBajZhHOl47BOVd+A9ABZ1KcrLtqDwIkwBktpiBx4QDcT7EeLyRg X-Received: by 10.202.44.207 with SMTP id s198mr4670796ois.18.1449092366937; Wed, 02 Dec 2015 13:39:26 -0800 (PST) Received: from dendrobates.araler.com (97-124-177-136.hlrn.qwest.net. [97.124.177.136]) by smtp.gmail.com with ESMTPSA id a123sm2127182oig.2.2015.12.02.13.39.26 for (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 Dec 2015 13:39:26 -0800 (PST) Date: Wed, 2 Dec 2015 14:39:24 -0700 From: Sergey Manucharian To: freebsd-current@freebsd.org Subject: Best way to update FreeBSD 11 ? Message-ID: <20151202213924.GA29322@dendrobates.araler.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 21:39:28 -0000 Hello, What is the best way to update FreeBSD 11-CURRENT? Initially I've installed it from an image from [0] a couple of months ago. Thanks, Sergey [0] ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/amd64/ISO-IMAGES/11.0/ From owner-freebsd-current@freebsd.org Wed Dec 2 21:43:38 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED364A3F65C for ; Wed, 2 Dec 2015 21:43:38 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FD801F25 for ; Wed, 2 Dec 2015 21:43:37 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.15.2/8.15.2) with ESMTP id tB2LhU4c046964; Wed, 2 Dec 2015 13:43:30 -0800 (PST) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.15.2/8.15.2/Submit) id tB2LhTVF046963; Wed, 2 Dec 2015 13:43:29 -0800 (PST) (envelope-from david) Date: Wed, 2 Dec 2015 13:43:29 -0800 From: David Wolfskill To: Sergey Manucharian Cc: freebsd-current@freebsd.org Subject: Re: Best way to update FreeBSD 11 ? Message-ID: <20151202214329.GL1669@albert.catwhisker.org> Reply-To: current@freebsd.org Mail-Followup-To: current@freebsd.org, Sergey Manucharian , freebsd-current@freebsd.org References: <20151202213924.GA29322@dendrobates.araler.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="xyVbWWff76yUiXzJ" Content-Disposition: inline In-Reply-To: <20151202213924.GA29322@dendrobates.araler.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 21:43:39 -0000 --xyVbWWff76yUiXzJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 02, 2015 at 02:39:24PM -0700, Sergey Manucharian wrote: > Hello, >=20 > What is the best way to update FreeBSD 11-CURRENT? > Initially I've installed it from an image from [0] a couple of months ago. > ... That depends on why you are considering the update. For me, I do in-place source updates "fairly" often (ref. src/UPDATING). Peace, david --=20 David H. Wolfskill david@catwhisker.org Those who would murder in the name of God or prophet are blasphemous coward= s. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --xyVbWWff76yUiXzJ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAEBCgBmBQJWX2YBXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDQ0I3Q0VGOTE3QTgwMUY0MzA2NEQ3N0Ix NTM5Q0M0MEEwNDlFRTE3AAoJEBU5zECgSe4XUDcH/R3LnAF2CDO30vaQJtmpqgdN z0GO8TAuow8sfbcgNnjrqgvS457eD39acwKpKOuIUVXziJeYnSO9S9/juyTySp/B GuxR5uEsUvzJLrdKtp76BWl8tU237ACwekKJzI2AxY90ogQm1EzVfD+mxfQS67K+ 5NYJZaOHbXbGdOxgNHEICwNNI8fZUrxW2FXwBiXIBR5qogSYRt++lH45Kyp9XOGI BJ4YkUi6b6+J7aJztGSw8CF4yMynOs+LSkEgWmLze9U4IDs3vKequph0lpeGRbEn 0hgwedvDX2ZfXdCZPq/GFlaZPbaCmjrWfNTrWd0Iw3GeXwzyLKS5FPf+OQH16Vc= =ICbF -----END PGP SIGNATURE----- --xyVbWWff76yUiXzJ-- From owner-freebsd-current@freebsd.org Wed Dec 2 21:58:00 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BAA9A3FA20 for ; Wed, 2 Dec 2015 21:58:00 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 496741C30; Wed, 2 Dec 2015 21:58:00 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 6E8C9B93C; Wed, 2 Dec 2015 16:57:58 -0500 (EST) From: John Baldwin To: Don Lewis Cc: freebsd-current@freebsd.org Subject: Re: panic: sbuf_vprintf called with a NULL sbuf pointer Date: Wed, 02 Dec 2015 13:53:44 -0800 Message-ID: <483094235.OWQWKtkdYD@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <201512022126.tB2LPuHA021478@gw.catspoiler.org> References: <201512022126.tB2LPuHA021478@gw.catspoiler.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 02 Dec 2015 16:57:58 -0500 (EST) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 21:58:00 -0000 On Wednesday, December 02, 2015 01:25:56 PM Don Lewis wrote: > > If you want to look at this further, try going to frame 16 and dissassembling the > > instructions before the call to see if you can spot which register the first > > parameter (saved in %rdi IIRC) comes from. > > Dump of assembler code for function sbuf_printf: > 0xffffffff80a673e0 <+0>: push %rbp > 0xffffffff80a673e1 <+1>: mov %rsp,%rbp > 0xffffffff80a673e4 <+4>: push %r14 > 0xffffffff80a673e6 <+6>: push %rbx > 0xffffffff80a673e7 <+7>: sub $0x50,%rsp > 0xffffffff80a673eb <+11>: mov %rsi,%r14 > 0xffffffff80a673ee <+14>: mov %rdi,%rbx > 0xffffffff80a673f1 <+17>: mov %r9,-0x38(%rbp) > 0xffffffff80a673f5 <+21>: mov %r8,-0x40(%rbp) > 0xffffffff80a673f9 <+25>: mov %rcx,-0x48(%rbp) > 0xffffffff80a673fd <+29>: mov %rdx,-0x50(%rbp) > 0xffffffff80a67401 <+33>: lea -0x60(%rbp),%rax > 0xffffffff80a67405 <+37>: mov %rax,-0x20(%rbp) > 0xffffffff80a67409 <+41>: lea 0x10(%rbp),%rax > 0xffffffff80a6740d <+45>: mov %rax,-0x28(%rbp) > 0xffffffff80a67411 <+49>: movl $0x30,-0x2c(%rbp) > 0xffffffff80a67418 <+56>: movl $0x10,-0x30(%rbp) > 0xffffffff80a6741f <+63>: mov $0xffffffff8137bdf8,%rdi > 0xffffffff80a67426 <+70>: mov %rbx,%rsi > 0xffffffff80a67429 <+73>: callq 0xffffffff80a66c00 <_assert_sbuf_integrity> > > > 0xffffffff80a237b9 <+825>: jmpq 0xffffffff80a236fd > 0xffffffff80a237be <+830>: mov $0xffffffff80fd8ad3,%rsi > 0xffffffff80a237c5 <+837>: xor %eax,%eax > 0xffffffff80a237c7 <+839>: mov %r12,%rdi > 0xffffffff80a237ca <+842>: mov -0x228(%rbp),%rdx > 0xffffffff80a237d1 <+849>: callq 0xffffffff80a673e0 > => 0xffffffff80a237d6 <+854>: inc %r14d > 0xffffffff80a237d9 <+857>: jmpq 0xffffffff80a236fd So maybe try 'p $r12' in the corefile_open() frame. -- John Baldwin From owner-freebsd-current@freebsd.org Thu Dec 3 00:22:11 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AA49A3E1A2 for ; Thu, 3 Dec 2015 00:22:11 +0000 (UTC) (envelope-from dnebdal@gmail.com) Received: from mail-lf0-x236.google.com (mail-lf0-x236.google.com [IPv6:2a00:1450:4010:c07::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2C6D1309 for ; Thu, 3 Dec 2015 00:22:10 +0000 (UTC) (envelope-from dnebdal@gmail.com) Received: by lfdl133 with SMTP id l133so71972981lfd.2 for ; Wed, 02 Dec 2015 16:22:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=5Yeft2yNgTM+eKr6DeK6z+AMykCSH5PKod/Zp3O7rgI=; b=sUlUcX157Pl/rErFz63bXogQ2/Xuq2gR6tblrIMELreHf5quKxHXzTd1ehBN3uqrsE uQ2Lprzu9+w5nYcj2EvdnF5rwp3hWx6WxEGGVO6hVhdiqG82mPN22K4n6SnSPi6D6oK2 5zS8DpQtByycjE4JAKWVsGLnkgNAFvCWgRNGkcUsS43rw4+52zLZlHe6eR95Bl/ArZ5V pFqq0LqgOShJrYUbss3x89Rx/vZAZu1ViNANqUOIFv6v4G+0VsjABhYd/lDUJ5bcPpHP Mss/BB4aF4wyf/M2PBfwQYikX6aJMiPlzKO0a+32AXJQcgH77RNC7dF6HyIn6Z3LeQKM mNZw== MIME-Version: 1.0 X-Received: by 10.25.210.135 with SMTP id j129mr4338703lfg.101.1449102128882; Wed, 02 Dec 2015 16:22:08 -0800 (PST) Received: by 10.25.26.2 with HTTP; Wed, 2 Dec 2015 16:22:08 -0800 (PST) In-Reply-To: <20151202214329.GL1669@albert.catwhisker.org> References: <20151202213924.GA29322@dendrobates.araler.com> <20151202214329.GL1669@albert.catwhisker.org> Date: Thu, 3 Dec 2015 01:22:08 +0100 Message-ID: Subject: Re: Best way to update FreeBSD 11 ? From: Daniel Nebdal To: Sergey Manucharian , Current Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 00:22:11 -0000 On Wed, Dec 2, 2015 at 10:43 PM, David Wolfskill wrote: > On Wed, Dec 02, 2015 at 02:39:24PM -0700, Sergey Manucharian wrote: >> Hello, >> >> What is the best way to update FreeBSD 11-CURRENT? >> Initially I've installed it from an image from [0] a couple of months ago. >> ... > > That depends on why you are considering the update. > > For me, I do in-place source updates "fairly" often (ref. src/UPDATING). > > Peace, > david > -- > David H. Wolfskill david@catwhisker.org > Those who would murder in the name of God or prophet are blasphemous cowards. > > See http://www.catwhisker.org/~david/publickey.gpg for my public key. If you have root on ZFS, you can shuffle your directories around to get something compatible with beadm [1] . With that in place, you could clone your existing install, chroot into it, do the upgrade there, and then if it looks like it should work you can activate it and reboot to test. If it fails, you should be able to re-activate the previously working environment (by setting vfs.root.mountfrom to the appropriate path in the loader, I think) and be back where you were without too much fuss. With the caveat that I've barely touched this myself. [1] https://forums.freebsd.org/threads/updating-existing-zfs-layout-to-beadm.44813/ -- Daniel Nebdal From owner-freebsd-current@freebsd.org Thu Dec 3 04:16:08 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EFDAA40BAB for ; Thu, 3 Dec 2015 04:16:08 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 0CCCB1029; Thu, 3 Dec 2015 04:16:08 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 883E766E; Thu, 3 Dec 2015 04:16:07 +0000 (UTC) Date: Thu, 3 Dec 2015 04:16:05 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mckusick@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1784731464.373.1449116167181.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3613 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 04:16:08 -0000 FreeBSD_HEAD - Build #3613 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3613/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3613/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3613/console Change summaries: 291671 by mckusick: We need to zero out the union of pointers in a freed vnode structure. PR: 204949 Fix from: Mateusz Guzik Tested by: Jason Unovitch The end of the build log: [...truncated 67370 lines...] cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.twalk.So -MTtwalk.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/stdlib/twalk.c -o twalk.So --- jemalloc_jemalloc.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_jemalloc.So -MTj= emalloc_jemalloc.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers = -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-emp= ty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-c= ompare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wn= o-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -W= no-knr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/lib= util -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/= x86 -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_jemalloc.c -o jemalloc_= jemalloc.So --- jemalloc_arena.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_arena.So -MTjema= lloc_arena.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_arena.c -o jemalloc_arena.So --- jemalloc_atomic.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_atomic.So -MTjem= alloc_atomic.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wer= ror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-b= ody -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compa= re -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-en= um-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-k= nr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil= -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 = -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_atomic.c -o jemalloc_atomic= .So --- jemalloc_base.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_base.So -MTjemal= loc_base.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror = -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body = -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -= Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-c= onversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-p= romoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/= builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/b= uilds/FreeBSD_HEAD/lib/msun/src -c jemalloc_base.c -o jemalloc_base.So --- jemalloc_bitmap.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_bitmap.So -MTjem= alloc_bitmap.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wer= ror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-b= ody -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compa= re -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-en= um-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-k= nr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil= -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 = -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_bitmap.c -o jemalloc_bitmap= .So --- jemalloc_chunk.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_chunk.So -MTjema= lloc_chunk.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_chunk.c -o jemalloc_chunk.So --- jemalloc_chunk_dss.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_chunk_dss.So -MT= jemalloc_chunk_dss.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-header= s -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-e= mpty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological= -compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -= Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum = -Wno-knr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/l= ibutil -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msu= n/x86 -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_chunk_dss.c -o jemall= oc_chunk_dss.So --- jemalloc_chunk_mmap.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_chunk_mmap.So -M= Tjemalloc_chunk_mmap.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-head= ers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu= m -Wno-knr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib= /libutil -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/m= sun/x86 -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_chunk_mmap.c -o jem= alloc_chunk_mmap.So --- jemalloc_ckh.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_ckh.So -MTjemall= oc_ckh.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -W= all -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -W= no-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wn= o-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-con= version -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-pro= moted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/bu= ilds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/bui= lds/FreeBSD_HEAD/lib/msun/src -c jemalloc_ckh.c -o jemalloc_ckh.So --- jemalloc_ctl.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_ctl.So -MTjemall= oc_ctl.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -W= all -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -W= no-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wn= o-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-con= version -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-pro= moted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/bu= ilds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/bui= lds/FreeBSD_HEAD/lib/msun/src -c jemalloc_ctl.c -o jemalloc_ctl.So --- jemalloc_extent.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_extent.So -MTjem= alloc_extent.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wer= ror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-b= ody -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compa= re -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-en= um-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-k= nr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil= -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 = -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_extent.c -o jemalloc_extent= .So --- jemalloc_hash.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_hash.So -MTjemal= loc_hash.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror = -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body = -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -= Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-c= onversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-p= romoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/= builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/b= uilds/FreeBSD_HEAD/lib/msun/src -c jemalloc_hash.c -o jemalloc_hash.So --- jemalloc_huge.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_huge.So -MTjemal= loc_huge.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror = -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body = -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -= Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-c= onversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-p= romoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/= builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/b= uilds/FreeBSD_HEAD/lib/msun/src -c jemalloc_huge.c -o jemalloc_huge.So --- jemalloc_mb.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_mb.So -MTjemallo= c_mb.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wal= l -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno= -string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-= unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conve= rsion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promo= ted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/buil= ds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/build= s/FreeBSD_HEAD/lib/msun/src -c jemalloc_mb.c -o jemalloc_mb.So --- jemalloc_mutex.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_mutex.So -MTjema= lloc_mutex.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_mutex.c -o jemalloc_mutex.So --- jemalloc_pages.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_pages.So -MTjema= lloc_pages.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_pages.c -o jemalloc_pages.So --- jemalloc_prof.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_prof.So -MTjemal= loc_prof.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror = -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body = -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -= Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-c= onversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-p= romoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/= builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/b= uilds/FreeBSD_HEAD/lib/msun/src -c jemalloc_prof.c -o jemalloc_prof.So --- jemalloc_quarantine.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_quarantine.So -M= Tjemalloc_quarantine.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-head= ers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno= -empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic= al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu= m -Wno-knr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib= /libutil -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/m= sun/x86 -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_quarantine.c -o jem= alloc_quarantine.So --- jemalloc_rtree.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_rtree.So -MTjema= lloc_rtree.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_rtree.c -o jemalloc_rtree.So --- jemalloc_stats.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_stats.So -MTjema= lloc_stats.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_stats.c -o jemalloc_stats.So --- jemalloc_tcache.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_tcache.So -MTjem= alloc_tcache.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wer= ror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-b= ody -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compa= re -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-en= um-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-k= nr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil= -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 = -I/builds/FreeBSD_HEAD/lib/msun/src -c jemalloc_tcache.c -o jemalloc_tcache= .So --- jemalloc_tsd.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_tsd.So -MTjemall= oc_tsd.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -W= all -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -W= no-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wn= o-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-con= version -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-pro= moted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/bu= ilds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/bui= lds/FreeBSD_HEAD/lib/msun/src -c jemalloc_tsd.c -o jemalloc_tsd.So --- jemalloc_util.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.jemalloc_util.So -MTjemal= loc_util.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror = -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body = -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -= Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-c= onversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-p= romoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/= builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/b= uilds/FreeBSD_HEAD/lib/msun/src -c jemalloc_util.c -o jemalloc_util.So --- explicit_bzero.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.explicit_bzero.So -MTexpl= icit_bzero.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werro= r -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-bod= y -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare= -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum= -conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr= -promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -= I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I= /builds/FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/../../sy= s/libkern/explicit_bzero.c -o explicit_bzero.So --- ffs.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.ffs.So -MTffs.So -std=3Dg= nu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2= k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Q= unused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_HEAD/= lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HEAD/l= ib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/ffs.c -o ffs.So --- ffsl.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.ffsl.So -MTffsl.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/ffsl.c -o ffsl.So --- ffsll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.ffsll.So -MTffsll.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/ffsll.c -o ffsll.So --- fls.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.fls.So -MTfls.So -std=3Dg= nu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2= k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int= -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wn= o-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unuse= d-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Q= unused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_HEAD/= lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HEAD/l= ib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/fls.c -o fls.So --- flsl.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.flsl.So -MTflsl.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/flsl.c -o flsl.So --- flsll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.flsll.So -MTflsll.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/flsll.c -o flsll.So --- memccpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.memccpy.So -MTmemccpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/memccpy.c -o me= mccpy.So --- memchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.memchr.So -MTmemchr.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/memchr.c -o memch= r.So --- memrchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.memrchr.So -MTmemrchr.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/memrchr.c -o me= mrchr.So --- memmem.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.memmem.So -MTmemmem.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/memmem.c -o memme= m.So --- stpncpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.stpncpy.So -MTstpncpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/stpncpy.c -o st= pncpy.So --- strcasecmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strcasecmp.So -MTstrcasec= mp.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall = -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-s= tring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-un= used-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-convers= ion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promote= d-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds= /FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/= FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strcasecm= p.c -o strcasecmp.So --- strcasestr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strcasestr.So -MTstrcases= tr.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall = -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-s= tring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-un= used-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-convers= ion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promote= d-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds= /FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/= FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strcasest= r.c -o strcasestr.So --- strchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strchr.So -MTstrchr.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strchr.c -o strch= r.So --- strchrnul.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strchrnul.So -MTstrchrnul= .So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -W= no-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-str= ing-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unus= ed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversio= n -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-= parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/F= reeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/Fr= eeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strchrnul.c= -o strchrnul.So --- strcoll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strcoll.So -MTstrcoll.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strcoll.c -o st= rcoll.So --- strcspn.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strcspn.So -MTstrcspn.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strcspn.c -o st= rcspn.So --- strdup.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strdup.So -MTstrdup.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strdup.c -o strdu= p.So --- strerror.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strerror.So -MTstrerror.S= o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno= -format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-strin= g-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused= -value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion = -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-pa= rameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/Fre= eBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/Free= BSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strerror.c -o= strerror.So --- strlcat.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strlcat.So -MTstrlcat.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strlcat.c -o st= rlcat.So --- strlcpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strlcpy.So -MTstrlcpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strlcpy.c -o st= rlcpy.So --- strlen.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strlen.So -MTstrlen.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strlen.c -o strle= n.So --- strmode.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strmode.So -MTstrmode.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strmode.c -o st= rmode.So --- strncat.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strncat.So -MTstrncat.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strncat.c -o st= rncat.So --- strncmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strncmp.So -MTstrncmp.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strncmp.c -o st= rncmp.So --- strncpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strncpy.So -MTstrncpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strncpy.c -o st= rncpy.So --- strndup.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strndup.So -MTstrndup.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strndup.c -o st= rndup.So --- strnlen.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strnlen.So -MTstrnlen.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strnlen.c -o st= rnlen.So --- strnstr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strnstr.So -MTstrnstr.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strnstr.c -o st= rnstr.So --- strpbrk.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strpbrk.So -MTstrpbrk.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strpbrk.c -o st= rpbrk.So --- strrchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strrchr.So -MTstrrchr.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strrchr.c -o st= rrchr.So --- strsep.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strsep.So -MTstrsep.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strsep.c -o strse= p.So --- strsignal.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strsignal.So -MTstrsignal= .So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -W= no-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-str= ing-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unus= ed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversio= n -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-= parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/F= reeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/Fr= eeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strsignal.c= -o strsignal.So --- strspn.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strspn.So -MTstrspn.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strspn.c -o strsp= n.So --- strstr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strstr.So -MTstrstr.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strstr.c -o strst= r.So --- strtok.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strtok.So -MTstrtok.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strtok.c -o strto= k.So --- strxfrm.So --- --- swab.So --- --- strxfrm.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.strxfrm.So -MTstrxfrm.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/strxfrm.c -o st= rxfrm.So --- swab.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.swab.So -MTswab.So -std= =3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus= -int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value= -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u= nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete= r -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_H= EAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HE= AD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/swab.c -o swab.So --- wcpcpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcpcpy.So -MTwcpcpy.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcpcpy.c -o wcpcp= y.So --- wcpncpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcpncpy.So -MTwcpncpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcpncpy.c -o wc= pncpy.So --- wcscasecmp.So --- --- wcscat.So --- --- wcscasecmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscasecmp.So -MTwcscasec= mp.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall = -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-s= tring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-un= used-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-convers= ion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promote= d-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds= /FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/= FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscasecm= p.c -o wcscasecmp.So --- wcscat.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscat.So -MTwcscat.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscat.c -o wcsca= t.So --- wcschr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcschr.So -MTwcschr.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcschr.c -o wcsch= r.So --- wcscmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscmp.So -MTwcscmp.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscmp.c -o wcscm= p.So --- wcscoll.So --- --- wcscpy.So --- --- wcscoll.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscoll.So -MTwcscoll.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscoll.c -o wc= scoll.So --- wcscpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscpy.So -MTwcscpy.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscpy.c -o wcscp= y.So --- wcscspn.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcscspn.So -MTwcscspn.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcscspn.c -o wc= scspn.So --- wcsdup.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsdup.So -MTwcsdup.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsdup.c -o wcsdu= p.So --- wcslcat.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcslcat.So -MTwcslcat.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautologic--- wcslcpy.So --- --- wcslcat.So --- al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function= -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu= m -Wno-knr-promoted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib= /libutil -I/builds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/m= sun/x86 -I/builds/FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/lib= c/string/wcslcat.c -o wcslcat.So --- wcslcpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcslcpy.So -MTwcslcpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcslcpy.c -o wc= slcpy.So --- wcslen.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcslen.So -MTwcslen.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcslen.c -o wcsle= n.So --- wcsncasecmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsncasecmp.So -MTwcsncas= ecmp.So -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wal= l -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno= -string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-= unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conve= rsion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promo= ted-parameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/buil= ds/FreeBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/build= s/FreeBSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsncas= ecmp.c -o wcsncasecmp.So --- wcsncat.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsncat.So -MTwcsncat.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsncat.c -o wc= sncat.So --- wcsncmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsncmp.So -MTwcsncmp.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsncmp.c -o wc= sncmp.So --- wcsncpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsncpy.So -MTwcsncpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsncpy.c -o wc= sncpy.So --- wcsnlen.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsnlen.So -MTwcsnlen.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsnlen.c -o wc= snlen.So --- wcspbrk.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcspbrk.So -MTwcspbrk.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcspbrk.c -o wc= spbrk.So --- wcsrchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsrchr.So -MTwcsrchr.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsrchr.c -o wc= srchr.So --- wcsspn.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsspn.So -MTwcsspn.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsspn.c -o wcssp= n.So --- wcsstr.So --- --- wcstok.So --- --- wcsstr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsstr.So -MTwcsstr.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsstr.c -o wcsst= r.So --- wcstok.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcstok.So -MTwcstok.So -s= td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-pl= us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val= ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno= -unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame= ter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD= _HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_= HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcstok.c -o wcsto= k.So --- wcswidth.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcswidth.So -MTwcswidth.S= o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno= -format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-strin= g-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused= -value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion = -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-pa= rameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/Fre= eBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/Free= BSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcswidth.c -o= wcswidth.So --- wcsxfrm.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wcsxfrm.So -MTwcsxfrm.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wcsxfrm.c -o wc= sxfrm.So --- wmemchr.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wmemchr.So -MTwmemchr.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wmemchr.c -o wm= emchr.So --- wmemcmp.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wmemcmp.So -MTwmemcmp.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wmemcmp.c -o wm= emcmp.So --- wmemcpy.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wmemcpy.So -MTwmemcpy.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wmemcpy.c -o wm= emcpy.So --- wmemmove.So --- --- wmemset.So --- --- wmemmove.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wmemmove.So -MTwmemmove.S= o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno= -format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-strin= g-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused= -value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion = -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-pa= rameter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/Fre= eBSD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/Free= BSD_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wmemmove.c -o= wmemmove.So --- wmemset.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.wmemset.So -MTwmemset.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c /builds/FreeBSD_HEAD/lib/libc/string/wmemset.c -o wm= emset.So --- nslexer.o --- cc -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/builds/FreeBSD_= HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd64 -DNLS -D= __DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/gdtoa -= I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -I/builds/Fre= eBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HEAD/lib/libc/= resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/lib/libc/../li= bmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/include -I/build= s/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/FreeBSD_HEAD= /lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBROKEN_DES -DPO= RTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -DNS_CACHING -= DSYMBOL_VERSIONING -MD -MP -MF.depend.nslexer.o -MTnslexer.o -std=3Dgnu99 -= fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno= -uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-= unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-pare= ntheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-loca= l-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Qunused= -arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeBSD_HEAD/lib/ms= un/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBSD_HEAD/lib/msu= n/src -c nslexer.c -o nslexer.o --- nslexer.So --- cc -fpic -DPIC -O2 -pipe -I/builds/FreeBSD_HEAD/lib/libc/include -I/bui= lds/FreeBSD_HEAD/lib/libc/../../include -I/builds/FreeBSD_HEAD/lib/libc/amd= 64 -DNLS -D__DBINTERFACE_PRIVATE -I/builds/FreeBSD_HEAD/lib/libc/../../con= trib/gdtoa -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/libc-vis -DINET6 -= I/builds/FreeBSD_HEAD/obj/builds/FreeBSD_HEAD/lib/libc -I/builds/FreeBSD_HE= AD/lib/libc/resolv -D_ACL_PRIVATE -DPOSIX_MISTAKE -I/builds/FreeBSD_HEAD/li= b/libc/../libmd -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/incl= ude -I/builds/FreeBSD_HEAD/lib/libc/../../contrib/tzcode/stdtime -I/builds/= FreeBSD_HEAD/lib/libc/stdtime -I/builds/FreeBSD_HEAD/lib/libc/locale -DBRO= KEN_DES -DPORTMAP -DDES_BUILTIN -I/builds/FreeBSD_HEAD/lib/libc/rpc -DYP -D= NS_CACHING -DSYMBOL_VERSIONING -MD -MP -MF.depend.nslexer.So -MTnslexer.So = -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-f= ormat-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-= plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v= alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W= no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para= meter -Qunused-arguments -I/builds/FreeBSD_HEAD/lib/libutil -I/builds/FreeB= SD_HEAD/lib/msun/amd64 -I/builds/FreeBSD_HEAD/lib/msun/x86 -I/builds/FreeBS= D_HEAD/lib/msun/src -c nslexer.c -o nslexer.So --- nslexer.o --- /builds/FreeBSD_HEAD/lib/libc/net/nslexer.l:47:10: fatal error: 'nsparser.h= ' file not found #include "nsparser.h" ^ 1 error generated. *** [nslexer.o] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/lib/libc --- nslexer.So --- /builds/FreeBSD_HEAD/lib/libc/net/nslexer.l:47:10: fatal error: 'nsparser.h= ' file not found #include "nsparser.h" ^ 1 error generated. *** [nslexer.So] Error code 1 make[4]: stopped in /builds/FreeBSD_HEAD/lib/libc 2 errors make[4]: stopped in /builds/FreeBSD_HEAD/lib/libc *** [lib/libc__L] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD 1 error make[3]: stopped in /builds/FreeBSD_HEAD *** [libraries] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD 1 error make[2]: stopped in /builds/FreeBSD_HEAD *** [_libraries] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD 1 error make[1]: stopped in /builds/FreeBSD_HEAD *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD 1 error make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Thu Dec 3 07:44:53 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D701A3EE5D for ; Thu, 3 Dec 2015 07:44:53 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 2F67612FD; Thu, 3 Dec 2015 07:44:53 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 33A786FA; Thu, 3 Dec 2015 07:44:51 +0000 (UTC) Date: Thu, 3 Dec 2015 07:44:46 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: yongari@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <405209365.375.1449128690911.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1784731464.373.1449116167181.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1784731464.373.1449116167181.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD - Build #3614 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 07:44:53 -0000 FreeBSD_HEAD - Build #3614 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3614/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3614/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD/3614/console Change summaries: 291676 by yongari: Disable EEE(Energy Efficient Ethernet) for RTL8211F PHY. It seems the EEE made RX MAC enter LPI(Low Power Idle) mode such that dwc(4) was not able to receive packets. Ideally dwc(4) should be able to use EEE to save power during periods of low link utilization(i.e. gating off clock). Due to lack of dwc(4) datasheet it's not easy to take required steps for EEE on LPI enter/exit events. Disabling EEE in PHY seems to be easy workaround until dwc(4) supports EEE. Updating EEE advertisement register on RTL8211F seems to have no effect until reprogramming MII_ANAR, MII_100T2CR and MII_BMCR with auto-negotiation. It's not clear whether it's related with mii_phy_reset()'s BMCR_ISO handling for RTL8211F though. It seems rgephy_reset() needs careful investigation for newer RealTek PHYs. Ganbold submitted working version based on NetBSD change and tested lots of changes I made. Thanks a lot! Submitted by: ganbold (initial version) In collaboration with: ganbold From owner-freebsd-current@freebsd.org Thu Dec 3 07:45:34 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E960A3EF7A for ; Thu, 3 Dec 2015 07:45:34 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 53CA31547 for ; Thu, 3 Dec 2015 07:45:34 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 60C726FB for ; Thu, 3 Dec 2015 07:45:34 +0000 (UTC) Date: Thu, 3 Dec 2015 07:45:34 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1427072110.376.1449128734390.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2839 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 07:45:34 -0000 See ------------------------------------------ [...truncated 1577 lines...] ./lib/libc/sys missing (created) ./lib/libc/time missing (created) ./lib/libc/tls missing (created) ./lib/libc/tls/dso missing (created) ./lib/libc/termios missing (created) ./lib/libc/ttyio missing (created) ./lib/libcrypt missing (created) ./lib/libmp missing (created) ./lib/libnv missing (created) ./lib/libpam missing (created) ./lib/libproc missing (created) ./lib/librt missing (created) ./lib/libthr missing (created) ./lib/libthr/dlopen missing (created) ./lib/libutil missing (created) ./lib/libxo missing (created) ./lib/msun missing (created) ./libexec missing (created) ./libexec/atf missing (created) ./libexec/atf/atf-check missing (created) ./libexec/atf/atf-sh missing (created) ./libexec/rtld-elf missing (created) ./sbin missing (created) ./sbin/dhclient missing (created) ./sbin/devd missing (created) ./sbin/growfs missing (created) ./sbin/ifconfig missing (created) ./sbin/mdconfig missing (created) ./secure missing (created) ./secure/lib missing (created) ./secure/libexec missing (created) ./secure/usr.bin missing (created) ./secure/usr.sbin missing (created) ./share missing (created) ./share/examples missing (created) ./share/examples/tests missing (created) ./share/examples/tests/atf missing (created) ./share/examples/tests/plain missing (created) ./sys missing (created) ./sys/acl missing (created) ./sys/aio missing (created) ./sys/fifo missing (created) ./sys/file missing (created) ./sys/kern missing (created) ./sys/kern/acct missing (created) ./sys/kern/execve missing (created) ./sys/kern/pipe missing (created) ./sys/kqueue missing (created) ./sys/mqueue missing (created) ./sys/netinet missing (created) ./sys/opencrypto missing (created) ./sys/pjdfstest missing (created) ./sys/pjdfstest/chflags missing (created) ./sys/pjdfstest/chmod missing (created) ./sys/pjdfstest/chown missing (created) ./sys/pjdfstest/ftruncate missing (created) ./sys/pjdfstest/granular missing (created) ./sys/pjdfstest/link missing (created) ./sys/pjdfstest/mkdir missing (created) ./sys/pjdfstest/mkfifo missing (created) ./sys/pjdfstest/mknod missing (created) ./sys/pjdfstest/open missing (created) ./sys/pjdfstest/rename missing (created) ./sys/pjdfstest/rmdir missing (created) ./sys/pjdfstest/symlink missing (created) ./sys/pjdfstest/truncate missing (created) ./sys/pjdfstest/unlink missing (created) ./sys/posixshm missing (created) ./sys/vfs missing (created) ./sys/vm missing (created) ./usr.bin missing (created) ./usr.bin/apply missing (created) ./usr.bin/basename missing (created) ./usr.bin/bmake missing (created) ./usr.bin/bmake/archives missing (created) ./usr.bin/bmake/archives/fmt_44bsd missing (created) ./usr.bin/bmake/archives/fmt_44bsd_mod missing (created) ./usr.bin/bmake/archives/fmt_oldbsd missing (created) ./usr.bin/bmake/basic missing (created) ./usr.bin/bmake/basic/t0 missing (created) ./usr.bin/bmake/basic/t1 missing (created) ./usr.bin/bmake/basic/t2 missing (created) ./usr.bin/bmake/basic/t3 missing (created) ./usr.bin/bmake/execution missing (created) ./usr.bin/bmake/execution/ellipsis missing (created) ./usr.bin/bmake/execution/empty missing (created) ./usr.bin/bmake/execution/joberr missing (created) ./usr.bin/bmake/execution/plus missing (created) ./usr.bin/bmake/shell missing (created) ./usr.bin/bmake/shell/builtin missing (created) ./usr.bin/bmake/shell/meta missing (created) ./usr.bin/bmake/shell/path missing (created) ./usr.bin/bmake/shell/path_select missing (created) ./usr.bin/bmake/shell/replace missing (created) ./usr.bin/bmake/shell/select missing (created) ./usr.bin/bmake/suffixes missing (created) ./usr.bin/bmake/suffixes/basic missing (created) ./usr.bin/bmake/suffixes/src_wild1 missing (created) ./usr.bin/bmake/suffixes/src_wild2 missing (created) ./usr.bin/bmake/syntax missing (created) ./usr.bin/bmake/syntax/directive-t0 missing (created) ./usr.bin/bmake/syntax/enl missing (created) ./usr.bin/bmake/syntax/funny-targets missing (created) ./usr.bin/bmake/syntax/semi missing (created) ./usr.bin/bmake/sysmk missing (created) ./usr.bin/bmake/sysmk/t0 missing (created) ./usr.bin/bmake/sysmk/t0/2 missing (created) ./usr.bin/bmake/sysmk/t0/2/1 missing (created) ./usr.bin/bmake/sysmk/t0/mk missing (created) ./usr.bin/bmake/sysmk/t1 missing (created) ./usr.bin/bmake/sysmk/t1/2 missing (created) ./usr.bin/bmake/sysmk/t1/2/1 missing (created) ./usr.bin/bmake/sysmk/t1/mk missing (created) ./usr.bin/bmake/sysmk/t2 missing (created) ./usr.bin/bmake/sysmk/t2/2 missing (created) ./usr.bin/bmake/sysmk/t2/2/1 missing (created) ./usr.bin/bmake/sysmk/t2/mk missing (created) ./usr.bin/bmake/variables missing (created) ./usr.bin/bmake/variables/modifier_M missing (created) ./usr.bin/bmake/variables/modifier_t missing (created) ./usr.bin/bmake/variables/opt_V missing (created) ./usr.bin/bmake/variables/t0 missing (created) ./usr.bin/calendar missing (created) ./usr.bin/cmp missing (created) ./usr.bin/cpio missing (created) ./usr.bin/col missing (created) ./usr.bin/comm missing (created) ./usr.bin/cut missing (created) ./usr.bin/dirname missing (created) ./usr.bin/file2c missing (created) ./usr.bin/grep missing (created) ./usr.bin/gzip missing (created) ./usr.bin/ident missing (created) ./usr.bin/join missing (created) ./usr.bin/jot missing (created) ./usr.bin/lastcomm missing (created) ./usr.bin/limits missing (created) ./usr.bin/m4 missing (created) ./usr.bin/mkimg missing (created) ./usr.bin/ncal missing (created) ./usr.bin/opensm missing (created) ./usr.bin/printf missing (created) ./usr.bin/sed missing (created) ./usr.bin/sed/regress.multitest.out missing (created) ./usr.bin/soelim missing (created) ./usr.bin/tar missing (created) ./usr.bin/timeout missing (created) ./usr.bin/tr missing (created) ./usr.bin/truncate missing (created) ./usr.bin/units missing (created) ./usr.bin/uudecode missing (created) ./usr.bin/uuencode missing (created) ./usr.bin/xargs missing (created) ./usr.bin/xo missing (created) ./usr.bin/yacc missing (created) ./usr.bin/yacc/yacc missing (created) ./usr.sbin missing (created) ./usr.sbin/etcupdate missing (created) ./usr.sbin/fstyp missing (created) ./usr.sbin/makefs missing (created) ./usr.sbin/newsyslog missing (created) ./usr.sbin/nmtree missing (created) ./usr.sbin/pw missing (created) ./usr.sbin/sa missing (created) mtree -deU -f /builds/FreeBSD_HEAD/etc/mtree/BSD.sendmail.dist -p ./var/spool/clientmqueue missing (created) install -l s usr/src/sys cd for mandir in man*; do install -l s ../$mandir install -l s ../$mandir done cd for mandir in man*; do install -l s ../$mandir done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/man.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " if [ "yes" != "no" ]; then install -l s "$2" " fi; shift; shift; done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/nls.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " shift; shift; done -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /builds/FreeBSD_HEAD; make -f Makefile.inc1 install ===> lib (install) install -l s ../include ===> lib/csu (install) ===> lib/csu/amd64 (install) install -o root -g wheel -m 444 crt1.o crti.o crtn.o Scrt1.o gcrt1.o ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a install -C -o root -g wheel -m 444 libc_p.a install -s -o root -g wheel -m 444 -S libc.so.7 install -S -C -o root -g wheel -m 444 libc.ld install -o root -g wheel -m 444 libc_pic.a install -o root -g wheel -m 444 be_BY.UTF-8.cat install -o root -g wheel -m 444 ca_ES.ISO8859-1.cat install -o root -g wheel -m 444 de_DE.ISO8859-1.cat install -o root -g wheel -m 444 el_GR.ISO8859-7.cat install -o root -g wheel -m 444 es_ES.ISO8859-1.cat install -o root -g wheel -m 444 fi_FI.ISO8859-1.cat install -o root -g wheel -m 444 fr_FR.ISO8859-1.cat install -o root -g wheel -m 444 gl_ES.ISO8859-1.cat install -o root -g wheel -m 444 hu_HU.ISO8859-2.cat install -o root -g wheel -m 444 it_IT.ISO8859-15.cat install -o root -g wheel -m 444 ja_JP.UTF-8.cat install -o root -g wheel -m 444 ja_JP.eucJP.cat install -o root -g wheel -m 444 ko_KR.UTF-8.cat install -o root -g wheel -m 444 ko_KR.eucKR.cat install -o root -g wheel -m 444 mn_MN.UTF-8.cat install -o root -g wheel -m 444 nl_NL.ISO8859-1.cat install -o root -g wheel -m 444 no_NO.ISO8859-1.cat install -o root -g wheel -m 444 pl_PL.ISO8859-2.cat install -o root -g wheel -m 444 pt_BR.ISO8859-1.cat install -o root -g wheel -m 444 ru_RU.KOI8-R.cat install -o root -g wheel -m 444 sk_SK.ISO8859-2.cat install -o root -g wheel -m 444 sv_SE.ISO8859-1.cat install -o root -g wheel -m 444 uk_UA.UTF-8.cat install -o root -g wheel -m 444 zh_CN.GB18030.cat install -o root -g wheel -m 444 zh_CN.GB2312.cat install -o root -g wheel -m 444 zh_CN.UTF-8.cat ln -sf /builds/FreeBSD_HEAD/lib/libc/../../contrib/jemalloc/doc/jemalloc.3 jemalloc.3 install -o root -g wheel -m 444 btree.3.gz install -o root -g wheel -m 444 dbm.3.gz install -o root -g wheel -m 444 dbopen.3.gz install -o root -g wheel -m 444 hash.3.gz install -o root -g wheel -m 444 mpool.3.gz install -o root -g wheel -m 444 recno.3.gz install -o root -g wheel -m 444 creat.2.gz install -o root -g wheel -m 444 killpg.2.gz install -o root -g wheel -m 444 sigpause.2.gz install: sigpause.2.gz: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libc *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Thu Dec 3 10:44:42 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DD27A3EF56 for ; Thu, 3 Dec 2015 10:44:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 111621D68 for ; Thu, 3 Dec 2015 10:44:42 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id F13507B3 for ; Thu, 3 Dec 2015 10:44:40 +0000 (UTC) Date: Thu, 3 Dec 2015 10:44:39 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1722283855.379.1449139479248.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1427072110.376.1449128734390.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1427072110.376.1449128734390.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: Build-UFS-image #2840 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: FAILURE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 10:44:42 -0000 See ------------------------------------------ [...truncated 1576 lines...] ./lib/libc/string missing (created) ./lib/libc/sys missing (created) ./lib/libc/time missing (created) ./lib/libc/tls missing (created) ./lib/libc/tls/dso missing (created) ./lib/libc/termios missing (created) ./lib/libc/ttyio missing (created) ./lib/libcrypt missing (created) ./lib/libmp missing (created) ./lib/libnv missing (created) ./lib/libpam missing (created) ./lib/libproc missing (created) ./lib/librt missing (created) ./lib/libthr missing (created) ./lib/libthr/dlopen missing (created) ./lib/libutil missing (created) ./lib/libxo missing (created) ./lib/msun missing (created) ./libexec missing (created) ./libexec/atf missing (created) ./libexec/atf/atf-check missing (created) ./libexec/atf/atf-sh missing (created) ./libexec/rtld-elf missing (created) ./sbin missing (created) ./sbin/dhclient missing (created) ./sbin/devd missing (created) ./sbin/growfs missing (created) ./sbin/ifconfig missing (created) ./sbin/mdconfig missing (created) ./secure missing (created) ./secure/lib missing (created) ./secure/libexec missing (created) ./secure/usr.bin missing (created) ./secure/usr.sbin missing (created) ./share missing (created) ./share/examples missing (created) ./share/examples/tests missing (created) ./share/examples/tests/atf missing (created) ./share/examples/tests/plain missing (created) ./sys missing (created) ./sys/acl missing (created) ./sys/aio missing (created) ./sys/fifo missing (created) ./sys/file missing (created) ./sys/kern missing (created) ./sys/kern/acct missing (created) ./sys/kern/execve missing (created) ./sys/kern/pipe missing (created) ./sys/kqueue missing (created) ./sys/mqueue missing (created) ./sys/netinet missing (created) ./sys/opencrypto missing (created) ./sys/pjdfstest missing (created) ./sys/pjdfstest/chflags missing (created) ./sys/pjdfstest/chmod missing (created) ./sys/pjdfstest/chown missing (created) ./sys/pjdfstest/ftruncate missing (created) ./sys/pjdfstest/granular missing (created) ./sys/pjdfstest/link missing (created) ./sys/pjdfstest/mkdir missing (created) ./sys/pjdfstest/mkfifo missing (created) ./sys/pjdfstest/mknod missing (created) ./sys/pjdfstest/open missing (created) ./sys/pjdfstest/rename missing (created) ./sys/pjdfstest/rmdir missing (created) ./sys/pjdfstest/symlink missing (created) ./sys/pjdfstest/truncate missing (created) ./sys/pjdfstest/unlink missing (created) ./sys/posixshm missing (created) ./sys/vfs missing (created) ./sys/vm missing (created) ./usr.bin missing (created) ./usr.bin/apply missing (created) ./usr.bin/basename missing (created) ./usr.bin/bmake missing (created) ./usr.bin/bmake/archives missing (created) ./usr.bin/bmake/archives/fmt_44bsd missing (created) ./usr.bin/bmake/archives/fmt_44bsd_mod missing (created) ./usr.bin/bmake/archives/fmt_oldbsd missing (created) ./usr.bin/bmake/basic missing (created) ./usr.bin/bmake/basic/t0 missing (created) ./usr.bin/bmake/basic/t1 missing (created) ./usr.bin/bmake/basic/t2 missing (created) ./usr.bin/bmake/basic/t3 missing (created) ./usr.bin/bmake/execution missing (created) ./usr.bin/bmake/execution/ellipsis missing (created) ./usr.bin/bmake/execution/empty missing (created) ./usr.bin/bmake/execution/joberr missing (created) ./usr.bin/bmake/execution/plus missing (created) ./usr.bin/bmake/shell missing (created) ./usr.bin/bmake/shell/builtin missing (created) ./usr.bin/bmake/shell/meta missing (created) ./usr.bin/bmake/shell/path missing (created) ./usr.bin/bmake/shell/path_select missing (created) ./usr.bin/bmake/shell/replace missing (created) ./usr.bin/bmake/shell/select missing (created) ./usr.bin/bmake/suffixes missing (created) ./usr.bin/bmake/suffixes/basic missing (created) ./usr.bin/bmake/suffixes/src_wild1 missing (created) ./usr.bin/bmake/suffixes/src_wild2 missing (created) ./usr.bin/bmake/syntax missing (created) ./usr.bin/bmake/syntax/directive-t0 missing (created) ./usr.bin/bmake/syntax/enl missing (created) ./usr.bin/bmake/syntax/funny-targets missing (created) ./usr.bin/bmake/syntax/semi missing (created) ./usr.bin/bmake/sysmk missing (created) ./usr.bin/bmake/sysmk/t0 missing (created) ./usr.bin/bmake/sysmk/t0/2 missing (created) ./usr.bin/bmake/sysmk/t0/2/1 missing (created) ./usr.bin/bmake/sysmk/t0/mk missing (created) ./usr.bin/bmake/sysmk/t1 missing (created) ./usr.bin/bmake/sysmk/t1/2 missing (created) ./usr.bin/bmake/sysmk/t1/2/1 missing (created) ./usr.bin/bmake/sysmk/t1/mk missing (created) ./usr.bin/bmake/sysmk/t2 missing (created) ./usr.bin/bmake/sysmk/t2/2 missing (created) ./usr.bin/bmake/sysmk/t2/2/1 missing (created) ./usr.bin/bmake/sysmk/t2/mk missing (created) ./usr.bin/bmake/variables missing (created) ./usr.bin/bmake/variables/modifier_M missing (created) ./usr.bin/bmake/variables/modifier_t missing (created) ./usr.bin/bmake/variables/opt_V missing (created) ./usr.bin/bmake/variables/t0 missing (created) ./usr.bin/calendar missing (created) ./usr.bin/cmp missing (created) ./usr.bin/cpio missing (created) ./usr.bin/col missing (created) ./usr.bin/comm missing (created) ./usr.bin/cut missing (created) ./usr.bin/dirname missing (created) ./usr.bin/file2c missing (created) ./usr.bin/grep missing (created) ./usr.bin/gzip missing (created) ./usr.bin/ident missing (created) ./usr.bin/join missing (created) ./usr.bin/jot missing (created) ./usr.bin/lastcomm missing (created) ./usr.bin/limits missing (created) ./usr.bin/m4 missing (created) ./usr.bin/mkimg missing (created) ./usr.bin/ncal missing (created) ./usr.bin/opensm missing (created) ./usr.bin/printf missing (created) ./usr.bin/sed missing (created) ./usr.bin/sed/regress.multitest.out missing (created) ./usr.bin/soelim missing (created) ./usr.bin/tar missing (created) ./usr.bin/timeout missing (created) ./usr.bin/tr missing (created) ./usr.bin/truncate missing (created) ./usr.bin/units missing (created) ./usr.bin/uudecode missing (created) ./usr.bin/uuencode missing (created) ./usr.bin/xargs missing (created) ./usr.bin/xo missing (created) ./usr.bin/yacc missing (created) ./usr.bin/yacc/yacc missing (created) ./usr.sbin missing (created) ./usr.sbin/etcupdate missing (created) ./usr.sbin/fstyp missing (created) ./usr.sbin/makefs missing (created) ./usr.sbin/newsyslog missing (created) ./usr.sbin/nmtree missing (created) ./usr.sbin/pw missing (created) ./usr.sbin/sa missing (created) mtree -deU -f /builds/FreeBSD_HEAD/etc/mtree/BSD.sendmail.dist -p ./var/spool/clientmqueue missing (created) install -l s usr/src/sys cd for mandir in man*; do install -l s ../$mandir install -l s ../$mandir done cd for mandir in man*; do install -l s ../$mandir done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/man.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " if [ "yes" != "no" ]; then install -l s "$2" " fi; shift; shift; done set - `grep "^[a-zA-Z]" /builds/FreeBSD_HEAD/etc/nls.alias`; while [ $# -gt 0 ] ; do install -l s "$2" " shift; shift; done -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /builds/FreeBSD_HEAD; make -f Makefile.inc1 install ===> lib (install) install -l s ../include ===> lib/csu (install) ===> lib/csu/amd64 (install) install -o root -g wheel -m 444 crt1.o crti.o crtn.o Scrt1.o gcrt1.o ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a install -C -o root -g wheel -m 444 libc_p.a install -s -o root -g wheel -m 444 -S libc.so.7 install -S -C -o root -g wheel -m 444 libc.ld install -o root -g wheel -m 444 libc_pic.a install -o root -g wheel -m 444 be_BY.UTF-8.cat install -o root -g wheel -m 444 ca_ES.ISO8859-1.cat install -o root -g wheel -m 444 de_DE.ISO8859-1.cat install -o root -g wheel -m 444 el_GR.ISO8859-7.cat install -o root -g wheel -m 444 es_ES.ISO8859-1.cat install -o root -g wheel -m 444 fi_FI.ISO8859-1.cat install -o root -g wheel -m 444 fr_FR.ISO8859-1.cat install -o root -g wheel -m 444 gl_ES.ISO8859-1.cat install -o root -g wheel -m 444 hu_HU.ISO8859-2.cat install -o root -g wheel -m 444 it_IT.ISO8859-15.cat install -o root -g wheel -m 444 ja_JP.UTF-8.cat install -o root -g wheel -m 444 ja_JP.eucJP.cat install -o root -g wheel -m 444 ko_KR.UTF-8.cat install -o root -g wheel -m 444 ko_KR.eucKR.cat install -o root -g wheel -m 444 mn_MN.UTF-8.cat install -o root -g wheel -m 444 nl_NL.ISO8859-1.cat install -o root -g wheel -m 444 no_NO.ISO8859-1.cat install -o root -g wheel -m 444 pl_PL.ISO8859-2.cat install -o root -g wheel -m 444 pt_BR.ISO8859-1.cat install -o root -g wheel -m 444 ru_RU.KOI8-R.cat install -o root -g wheel -m 444 sk_SK.ISO8859-2.cat install -o root -g wheel -m 444 sv_SE.ISO8859-1.cat install -o root -g wheel -m 444 uk_UA.UTF-8.cat install -o root -g wheel -m 444 zh_CN.GB18030.cat install -o root -g wheel -m 444 zh_CN.GB2312.cat install -o root -g wheel -m 444 zh_CN.UTF-8.cat install -o root -g wheel -m 444 btree.3.gz install -o root -g wheel -m 444 dbm.3.gz install -o root -g wheel -m 444 dbopen.3.gz install -o root -g wheel -m 444 hash.3.gz install -o root -g wheel -m 444 mpool.3.gz install -o root -g wheel -m 444 recno.3.gz install -o root -g wheel -m 444 creat.2.gz install -o root -g wheel -m 444 killpg.2.gz install -o root -g wheel -m 444 sigpause.2.gz install: sigpause.2.gz: No such file or directory *** Error code 71 Stop. make[5]: stopped in /builds/FreeBSD_HEAD/lib/libc *** Error code 1 Stop. make[4]: stopped in /builds/FreeBSD_HEAD/lib *** Error code 1 Stop. make[3]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[2]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make[1]: stopped in /builds/FreeBSD_HEAD *** Error code 1 Stop. make: stopped in /builds/FreeBSD_HEAD Build step 'Execute shell' marked build as failure From owner-freebsd-current@freebsd.org Thu Dec 3 14:31:23 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 827A8A3FE1D for ; Thu, 3 Dec 2015 14:31:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 703D814E8 for ; Thu, 3 Dec 2015 14:31:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 5B991851 for ; Thu, 3 Dec 2015 14:31:22 +0000 (UTC) Date: Thu, 3 Dec 2015 14:31:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: freebsd-current@freebsd.org Message-ID: <1673555471.384.1449153081015.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1722283855.379.1449139479248.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1722283855.379.1449139479248.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : Build-UFS-image #2841 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: Build-UFS-image X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 14:31:23 -0000 See From owner-freebsd-current@freebsd.org Thu Dec 3 15:20:29 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 338CDA3FEB1 for ; Thu, 3 Dec 2015 15:20:29 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 08A5E1D59 for ; Thu, 3 Dec 2015 15:20:29 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: by mailman.ysv.freebsd.org (Postfix) id 06394A3FEB0; Thu, 3 Dec 2015 15:20:29 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05D09A3FEAF for ; Thu, 3 Dec 2015 15:20:29 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: from mail-oi0-x233.google.com (mail-oi0-x233.google.com [IPv6:2607:f8b0:4003:c06::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC7FC1D58 for ; Thu, 3 Dec 2015 15:20:28 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: by oixx65 with SMTP id x65so50640061oix.0 for ; Thu, 03 Dec 2015 07:20:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ara-ler-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=jDcqXm4Yf4VGpRvXd4pCuxrpBqaFlKOFx4Ef6VM/dxo=; b=horKSHtoiazeOd7RfOfKCUeUNT/b1Ytts6gZqvFpi1XBdRrRaxnNcWn7xaXVpgyXch bHJbIM0g0DQw3tc6aSGQb0RdmH8+WQ7Pr1CXh/xCFW9mWZqaMbLzWtR1/O89knFdt7oN VdTPcZ+z5eobnP6du/1XWzlV8pbJUUI/YhfNumCsI+DkTmjnilqmCPkvQGWcjxDA5pJ0 ihsJhCcweDKbnO1YM8ARHUmI6T7asxcz9OGbPGhYpdBmGvudnEoZPeAn3qSo0hWXYNwx knHxn+y5l8Z49RwPuTFGo/N2zQuTlcf/BH4fwQOc6U8xhm8GbQBpu20Ux7hzxz31V0Ni TYvg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=jDcqXm4Yf4VGpRvXd4pCuxrpBqaFlKOFx4Ef6VM/dxo=; b=PmXEzvMMbimhNUR/uTTE08hPWydR7BxpH1D/cFK7Icggir7tv/2HCoLSOCc5u5V2mh QSw830VZUBKFcufIctP+AV4ByuZYcswABkaLXDqtUGP2Pn4oRdf3J3BYdSSwB7tPAeZh FfKEdb0e3GABiZNiqILXxRfFtI2PXF6HEomvTRDgW7RaLB0IKByfXUTnJbd5+Lw/3FtI kIrFlHUd4qsrVSr9chRyiiwHyPHq/UnKkrb70Mxh03H37cBvqiITjSJncvibO4G/u47n t+tsgYZ5V9y6N2FXyIbXzGSfCdifr76JpEkJrQflr6jj7plI4XDWOKgm5Fu0uBCtPzMP QH7Q== X-Gm-Message-State: ALoCoQkg138RFxjQCrPB4dSpdf2d7T+j1+evO7VMbr9u8ZPB3WLXx6HWsUFjIYly/t5ParodfCVu X-Received: by 10.202.193.137 with SMTP id r131mr7842563oif.34.1449156028015; Thu, 03 Dec 2015 07:20:28 -0800 (PST) Received: from dendrobates.araler.com (97-124-177-136.hlrn.qwest.net. [97.124.177.136]) by smtp.gmail.com with ESMTPSA id wk4sm2261622oeb.3.2015.12.03.07.20.27 for (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Dec 2015 07:20:27 -0800 (PST) Date: Thu, 3 Dec 2015 08:20:25 -0700 From: Sergey Manucharian To: current@freebsd.org Subject: Re: Best way to update FreeBSD 11 ? Message-ID: <20151203152025.GA37038@dendrobates.araler.com> References: <20151202213924.GA29322@dendrobates.araler.com> <20151202214329.GL1669@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151202214329.GL1669@albert.catwhisker.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:20:29 -0000 Excerpts from David Wolfskill's message from Wed 02-Dec-15 13:43: > On Wed, Dec 02, 2015 at 02:39:24PM -0700, Sergey Manucharian wrote: > > That depends on why you are considering the update. Well, it's under development, and I'd like to have the latest version of the system for different purposes like being able to test some stuff. Ther is a huge improvement with support of Intel graphics, it works much better in my ThinPad compared to 9.x and 10.x. Meanwhile there are some bugs in iwn driver etc. Thanks, Sergey From owner-freebsd-current@freebsd.org Thu Dec 3 15:22:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE166A40009 for ; Thu, 3 Dec 2015 15:22:47 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: from mail-ob0-x234.google.com (mail-ob0-x234.google.com [IPv6:2607:f8b0:4003:c01::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69F2E107B for ; Thu, 3 Dec 2015 15:22:47 +0000 (UTC) (envelope-from sm@ara-ler.com) Received: by oba1 with SMTP id 1so11968310oba.1 for ; Thu, 03 Dec 2015 07:22:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ara-ler-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=R72aINnljoUr7/l9fgoECVxqSdvp0t/4rXageECG8oc=; b=te81V+EXhvLZuWA1DTVHBlQtWsU1FrjxP/Ffga1oMHpIHEJMa82sBcQzl2ylhVntpv tTKEhMpbmzmnv3ASrCqN7afeRk+jfNTmuJh4YqEelHUjc7mX3Zo7wvqKKf8CGdSCUIpM 5pGsCw9Oh5SKogoeY3XTOvvGknWjNuQiwOrw5nwunoXd8iuO6SWrLZjAJslp6j9iJWFZ WgRlwjET8BuqmgkrA+94qhPZZyNbEmwq8xgvNrBAsDQVvRUPgxdUzhQMBsFv68mzcEvE O/IF05+QKRr1OscUf7R2E8azsYXOJBVPDCLQoanDfvg8p2LKVfMAA7os0dZfqXVA/LhA dwQw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=R72aINnljoUr7/l9fgoECVxqSdvp0t/4rXageECG8oc=; b=Umtw13vHSSZebP8DDe+1+VL4e5B3PAO8NDKdAT8cv4QdmLvcA3Hutv0Dbiq5kEKvT7 OCGpVGAddqed1GzMvuPJA/dmpMKeG4XyX0xrkHaeRJpBXbCijRHcNIpeIoL1NRpAfGOL Enwy98t0DsYJkXg3DrfqdOz/I8HjUm9hEo252+SjXW3VxL6fZb+IdmXijpXhWKvWRKvj 0mIiRnENaKqkTfXKYABCRTQS59TfKmOzBFM6HKGqloQ1BvNdQfC4Y0zu8pjNuFn63aP6 7lxVsCAcV7S2x1AsHvbSn1XfGdyrfMf+4nolATZCcmsYEFP5C8oQ61fJ1r0V7p6TwgAv 7d4g== X-Gm-Message-State: ALoCoQn3JvX6rlnaYl0zyRAdw8S/4Yq55rz+SZvozc2YwrCXHi+eCw75KtjGxWX74fPtmuvP4bze X-Received: by 10.60.138.166 with SMTP id qr6mr8222568oeb.50.1449156166522; Thu, 03 Dec 2015 07:22:46 -0800 (PST) Received: from dendrobates.araler.com (97-124-177-136.hlrn.qwest.net. [97.124.177.136]) by smtp.gmail.com with ESMTPSA id m11sm3646619oif.19.2015.12.03.07.22.45 for (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Dec 2015 07:22:46 -0800 (PST) Date: Thu, 3 Dec 2015 08:22:44 -0700 From: Sergey Manucharian To: Current Subject: Re: Best way to update FreeBSD 11 ? Message-ID: <20151203152244.GB37038@dendrobates.araler.com> References: <20151202213924.GA29322@dendrobates.araler.com> <20151202214329.GL1669@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:22:47 -0000 Excerpts from Daniel Nebdal's message from Thu 03-Dec-15 01:22: > > On Wed, Dec 02, 2015 at 02:39:24PM -0700, Sergey Manucharian wrote: > >> Hello, > >> > >> What is the best way to update FreeBSD 11-CURRENT? > >> Initially I've installed it from an image from [0] a couple of months ago. > > If you have root on ZFS, you can shuffle your directories around to get > something compatible with beadm [1] . With that in place, you could clone > your existing install, chroot into it, do the upgrade there, and then if it > looks like it should work you can activate it and reboot to test. Thanks, Daniel! I'll definitely try that. I do have root on ZFS. Sergey From owner-freebsd-current@freebsd.org Thu Dec 3 17:58:15 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 432D1A406CC for ; Thu, 3 Dec 2015 17:58:15 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) Received: from barracuda.ixsystems.com (mail.ixsystems.com [69.198.165.135]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.ixsystems.com", Issuer "Go Daddy Secure Certificate Authority - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24B421260 for ; Thu, 3 Dec 2015 17:58:14 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) X-ASG-Debug-ID: 1449165490-08ca042abc05200002-XDYc8F Received: from [10.0.1.8] (ip72-209-175-134.ks.ks.cox.net [72.209.175.134]) by barracuda.ixsystems.com with ESMTP id 2E3AUxc37AlXt00h (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 03 Dec 2015 09:58:12 -0800 (PST) X-Barracuda-Envelope-From: jmaloney@pcbsd.org X-Barracuda-AUTH-User: jmaloney@pcbsd.org X-Barracuda-Apparent-Source-IP: 72.209.175.134 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) Subject: Re: EFI and i915kms questions From: Joe Maloney X-ASG-Orig-Subj: Re: EFI and i915kms questions In-Reply-To: <565EA01E.7000300@dumbbell.fr> Date: Thu, 3 Dec 2015 11:58:10 -0600 Cc: freebsd-current@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <547D1CBA-AEBD-4A89-91C9-35982D05EF89@pcbsd.org> References: <54B18FFE-063F-4F62-9343-28FDE68EE358@pcbsd.org> <56505B3F.2070403@dumbbell.fr> <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> <1736392.rQjToYj3It@ralph.baldwin.cx> <565EA01E.7000300@dumbbell.fr> To: =?utf-8?Q?Jean-S=C3=A9bastien_P=C3=A9dron?= X-Mailer: Apple Mail (2.3096.5) X-Barracuda-Connect: ip72-209-175-134.ks.ks.cox.net[72.209.175.134] X-Barracuda-Start-Time: 1449165491 X-Barracuda-Encrypted: ECDHE-RSA-AES256-SHA X-Barracuda-URL: https://10.2.0.41:443/cgi-mod/mark.cgi X-Virus-Scanned: by bsmtpd at ixsystems.com X-Barracuda-BRTS-Status: 1 X-Barracuda-Spam-Score: 0.00 X-Barracuda-Spam-Status: No, SCORE=0.00 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=8.0 tests= X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.3.24941 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 17:58:15 -0000 Will give this a try, build an image and report back for sure. Thanks! Joe Maloney > On Dec 2, 2015, at 1:39 AM, Jean-S=C3=A9bastien P=C3=A9dron = wrote: >=20 > On 02/12/2015 02:00, John Baldwin wrote: >> Note that at the top of the function it invokes IICBUS_TRANSFER on a = different >> device when force_bit_dev is true: >>=20 >> 370 sx_xlock(&dev_priv->gmbus_sx); >> 371 if (sc->force_bit_dev) { >> 372 dumbbell 282199 error =3D = -IICBUS_TRANSFER(dev_priv->bbbus[unit], msgs, nmsgs); >> 373 kib 235783 goto out; >> 374 } >>=20 >> Hmm, I would try changing the line at 470 to match the line at 372. >>=20 >> They used to match, and then this change: >=20 > You're right. This is something I fixed in my i915 update branch but > forgot to commit to HEAD... >=20 > Joe, could you please try what John suggests to confirm? >=20 > --=20 > Jean-S=C3=A9bastien P=C3=A9dron >=20 From owner-freebsd-current@freebsd.org Thu Dec 3 18:33:27 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAB75A40C3E for ; Thu, 3 Dec 2015 18:33:27 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) Received: from barracuda.ixsystems.com (mail.ixsystems.com [69.198.165.135]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.ixsystems.com", Issuer "Go Daddy Secure Certificate Authority - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BBC6F1CD0 for ; Thu, 3 Dec 2015 18:33:27 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) X-ASG-Debug-ID: 1449167601-08ca042abc05260002-XDYc8F Received: from [10.0.1.8] (ip72-209-175-134.ks.ks.cox.net [72.209.175.134]) by barracuda.ixsystems.com with ESMTP id tcbHtRRqL5B4HOIz (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 03 Dec 2015 10:33:26 -0800 (PST) X-Barracuda-Envelope-From: jmaloney@pcbsd.org X-Barracuda-AUTH-User: jmaloney@pcbsd.org X-Barracuda-Apparent-Source-IP: 72.209.175.134 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) Subject: Re: EFI and i915kms questions From: Joe Maloney X-ASG-Orig-Subj: Re: EFI and i915kms questions In-Reply-To: <547D1CBA-AEBD-4A89-91C9-35982D05EF89@pcbsd.org> Date: Thu, 3 Dec 2015 12:33:21 -0600 Cc: freebsd-current@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <2CA763DF-4746-4383-8C2D-35BE57A332BA@pcbsd.org> References: <54B18FFE-063F-4F62-9343-28FDE68EE358@pcbsd.org> <56505B3F.2070403@dumbbell.fr> <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> <1736392.rQjToYj3It@ralph.baldwin.cx> <565EA01E.7000300@dumbbell.fr> <547D1CBA-AEBD-4A89-91C9-35982D05EF89@pcbsd.org> To: =?utf-8?Q?Jean-S=C3=A9bastien_P=C3=A9dron?= X-Mailer: Apple Mail (2.3096.5) X-Barracuda-Connect: ip72-209-175-134.ks.ks.cox.net[72.209.175.134] X-Barracuda-Start-Time: 1449167602 X-Barracuda-Encrypted: ECDHE-RSA-AES256-SHA X-Barracuda-URL: https://10.2.0.41:443/cgi-mod/mark.cgi X-Virus-Scanned: by bsmtpd at ixsystems.com X-Barracuda-BRTS-Status: 1 X-Barracuda-Spam-Score: 0.00 X-Barracuda-Spam-Status: No, SCORE=0.00 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=8.0 tests= X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.3.24942 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 18:33:27 -0000 FYI it=E2=80=99s changed a bit more, and line 372 is now line 364 with = different options. Going to try this first which was now at line 364. = https://github.com/pkgdemon/freebsd/commit/f72323b10a9dd6da79f0dae1a6fd688= 23ec66f7d Joe Maloney > On Dec 3, 2015, at 11:58 AM, Joe Maloney wrote: >=20 > Will give this a try, build an image and report back for sure. = Thanks! >=20 > Joe Maloney >=20 >> On Dec 2, 2015, at 1:39 AM, Jean-S=C3=A9bastien P=C3=A9dron = wrote: >>=20 >> On 02/12/2015 02:00, John Baldwin wrote: >>> Note that at the top of the function it invokes IICBUS_TRANSFER on a = different >>> device when force_bit_dev is true: >>>=20 >>> 370 sx_xlock(&dev_priv->gmbus_sx); >>> 371 if (sc->force_bit_dev) { >>> 372 dumbbell 282199 error =3D = -IICBUS_TRANSFER(dev_priv->bbbus[unit], msgs, nmsgs); >>> 373 kib 235783 goto out; >>> 374 } >>>=20 >>> Hmm, I would try changing the line at 470 to match the line at 372. >>>=20 >>> They used to match, and then this change: >>=20 >> You're right. This is something I fixed in my i915 update branch but >> forgot to commit to HEAD... >>=20 >> Joe, could you please try what John suggests to confirm? >>=20 >> --=20 >> Jean-S=C3=A9bastien P=C3=A9dron >>=20 >=20 > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to = "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@freebsd.org Thu Dec 3 22:09:02 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C6C7A403A8 for ; Thu, 3 Dec 2015 22:09:02 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-annu.net.uoguelph.ca (esa-annu.mail.uoguelph.ca [131.104.91.36]) by mx1.freebsd.org (Postfix) with ESMTP id 531A118E8 for ; Thu, 3 Dec 2015 22:09:01 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) IronPort-PHdr: 9a23:d7BVcx0qnRNEzPqOsmDT+DRfVm0co7zxezQtwd8ZsegeKvad9pjvdHbS+e9qxAeQG96LtbQc06L/iOPJZy8p2d65qncMcZhBBVcuqP49uEgeOvODElDxN/XwbiY3T4xoXV5h+GynYwAOQJ6tL2PbrnD61zMOABK3bVMzfbSrXNaKx+2MlMmMuLTrKz1SgzS8Zb4gZD6Xli728vcsvI15N6wqwQHIqHYbM85fxGdvOE7B102kvpT41NdZ/i9Ro/Ms8dJbGeW/JvxgDO8QMDNzHXo46efQmVHoUBGV630AGjEYiBdFCRPJqRrnRI38tDfSuPBw1SOBMYvxV79iChq46KI+ch7ji28iPjU69GzSwphqiatQoxasojRixIHJbYWNNLx1d/WOLpshWWNdU5MJBGR6CYSmYt5KVrJZMA== X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2ClBACivGBW/61jaINehQG9SYFuhg6CChIBAQEBAQEBAYEJgi2CDiMEZAEiAg0ZAlsEiEKhKo9wkQ8BIIEBhVOMdIFEBY4fiEKPF4RDiRSNOQIoCDOEIiCFHIEHAQEB X-IronPort-AV: E=Sophos;i="5.20,378,1444708800"; d="scan'208";a="255652194" Received: from nipigon.cs.uoguelph.ca (HELO zcs1.mail.uoguelph.ca) ([131.104.99.173]) by esa-annu.net.uoguelph.ca with ESMTP; 03 Dec 2015 17:08:28 -0500 Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id 4BB7515F55D for ; Thu, 3 Dec 2015 17:08:28 -0500 (EST) Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id bWfGHbKSc3c5 for ; Thu, 3 Dec 2015 17:08:27 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id C2F0715F565 for ; Thu, 3 Dec 2015 17:08:27 -0500 (EST) X-Virus-Scanned: amavisd-new at zcs1.mail.uoguelph.ca Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id hGosNfDuJhCY for ; Thu, 3 Dec 2015 17:08:27 -0500 (EST) Received: from zcs1.mail.uoguelph.ca (zcs1.mail.uoguelph.ca [172.17.95.18]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id AABD915F55D for ; Thu, 3 Dec 2015 17:08:27 -0500 (EST) Date: Thu, 3 Dec 2015 17:08:27 -0500 (EST) From: Rick Macklem To: FreeBSD Current Message-ID: <802637848.117955972.1449180507630.JavaMail.zimbra@uoguelph.ca> Subject: panic "ffs_checkblk: bad block" on recent -head kernels MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [172.17.95.11] X-Mailer: Zimbra 8.0.9_GA_6191 (ZimbraWebClient - FF34 (Win)/8.0.9_GA_6191) Thread-Topic: panic "ffs_checkblk: bad block" on recent -head kernels Thread-Index: HFOmtZQEpjPZQDYHXdVQFZjdgDNGpg== X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 22:09:02 -0000 Hi, I get a fairly reproducible panic when doing a full kernel build on a 256Mbyte single core i386 when running recent kernels from -head. The panic is "ffs_checkblk: bad block ..". I don't actually have the block # (although I think it's just 0xfffffffffffffff, given the backtrace), because it runs off the screen. (I looked up the message via the debugger from the first arg. to panic.) Here's the backtrace without all the numbers: panic(c14f4b55, ffffffff, ffffffff, 0, 64,...) ffs_checkblk(ffffffff, 8000, fffffff9c, ffffffff, c4a02454,...) ffs_reallocblks VOP_REALLOCBLKS_APV cluster_write ffs_write VOP_WRITE_APV vn_write vn_io_fault_doio vn_io_fault1 vn_io_fault dofilewrite kern_writev sys_write syscall It doesn't happen on a kernel dated Sep. 30, but does happen on a Nov. 30 one. (I was away from home, so I didn't upgrade kernels for 2 months.) I am slowly doing a binary search for the first kernel rev. where it occurs, but since each build takes hours, it's going to take a while;-). At this point, it doesn't appear to happen on r289278 (just before jeff@'s buffer cache patch). With kernels between r289279-->r290480, I get into the "R" state that was fixed by r290481 before I get a crash. I tried reverting r289405 and r290047 from a recent kernel and the crashes still occurred, so it doesn't appear to be these commits. I am currently testing r290481 to see if the crash occurs for this rev. If anyone has some insight into which commit might cause this, please let me know. Also, if you want more info about if from "db", just let me know what you want, because I can reproduce it in a few hours. rick From owner-freebsd-current@freebsd.org Thu Dec 3 22:47:58 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9F62A40B9F for ; Thu, 3 Dec 2015 22:47:57 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: from mail-wm0-x22a.google.com (mail-wm0-x22a.google.com [IPv6:2a00:1450:400c:c09::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7EFF21DD4 for ; Thu, 3 Dec 2015 22:47:57 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: by wmec201 with SMTP id c201so49498881wme.0 for ; Thu, 03 Dec 2015 14:47:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=v2sk1ttCCtC5kiuCGlFLPl3qpO/LP9DwHIWJpfd1ESE=; b=IDnbx2oCGs0q6ubzwJ+XFyZ+CSpTN8TqNVR4X7ogduRTTgI/4N8Z6/YM7evsGw91Yp KXvR22uz6KQDEKeaPqh4w18yDYqwI8u9sVGlOzmHL42v4qOZ4w209hUXuAC5ANIgcGVA eFeT6J2qke0cKpiIVr94PnCorz97BuzhOv9hAuH93oR2LNpt2KdrsrxLB7l8bQVgWCZU K/nOigx1CaEoGuVNkAap8xIJkWrw70cLxnaASx0fiiUiAIKpq5m0lkfbzG6WAs9I7leX dv6M6uWJjg/HdEDBUfWp92yN6mGs7yf4Xe6wcrWGMa+4h2ZAXLf9fyWX1dzWhMxnM5n+ fnTw== X-Received: by 10.194.192.198 with SMTP id hi6mr13677958wjc.141.1449182875582; Thu, 03 Dec 2015 14:47:55 -0800 (PST) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by smtp.gmail.com with ESMTPSA id k125sm935113wmf.2.2015.12.03.14.47.54 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 03 Dec 2015 14:47:54 -0800 (PST) Date: Thu, 3 Dec 2015 23:47:52 +0100 From: Mateusz Guzik To: Rick Macklem Cc: FreeBSD Current Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels Message-ID: <20151203224752.GA19134@dft-labs.eu> Mail-Followup-To: Mateusz Guzik , Rick Macklem , FreeBSD Current References: <802637848.117955972.1449180507630.JavaMail.zimbra@uoguelph.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <802637848.117955972.1449180507630.JavaMail.zimbra@uoguelph.ca> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 22:47:58 -0000 On Thu, Dec 03, 2015 at 05:08:27PM -0500, Rick Macklem wrote: > Hi, > > I get a fairly reproducible panic when doing a full kernel build > on a 256Mbyte single core i386 when running recent kernels from -head. > > The panic is "ffs_checkblk: bad block ..". I don't actually have the > block # (although I think it's just 0xfffffffffffffff, given the backtrace), > because it runs off the screen. (I looked up the message via the debugger > from the first arg. to panic.) > > Here's the backtrace without all the numbers: > panic(c14f4b55, ffffffff, ffffffff, 0, 64,...) > ffs_checkblk(ffffffff, 8000, fffffff9c, ffffffff, c4a02454,...) > ffs_reallocblks > VOP_REALLOCBLKS_APV > cluster_write > ffs_write > VOP_WRITE_APV > vn_write > vn_io_fault_doio > vn_io_fault1 > vn_io_fault > dofilewrite > kern_writev > sys_write > syscall > > It doesn't happen on a kernel dated Sep. 30, but does happen on a Nov. 30 one. > (I was away from home, so I didn't upgrade kernels for 2 months.) > > I am slowly doing a binary search for the first kernel rev. where it occurs, > but since each build takes hours, it's going to take a while;-). > > At this point, it doesn't appear to happen on r289278 (just before jeff@'s buffer > cache patch). > With kernels between r289279-->r290480, I get into the "R" state that > was fixed by r290481 before I get a crash. > I tried reverting r289405 and r290047 from a recent kernel and the crashes still > occurred, so it doesn't appear to be these commits. > > I am currently testing r290481 to see if the crash occurs for this rev. > > If anyone has some insight into which commit might cause this, please let me know. > Well, did it crash with r291460 or later? If so, try the kernel just before that and if that helps, try: diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index ff37de8..0ad6ef7 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -2783,6 +2783,7 @@ _vdrop(struct vnode *vp, bool locked) vp->v_op = NULL; #endif bzero(&vp->v_un, sizeof(vp->v_un)); + vp->v_lasta = vp->v_clen = vp->v_cstart = vp->v_lastw = 0; vp->v_iflag = 0; vp->v_vflag = 0; bo->bo_flag = 0; -- Mateusz Guzik From owner-freebsd-current@freebsd.org Thu Dec 3 23:07:50 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F359EA40F03 for ; Thu, 3 Dec 2015 23:07:49 +0000 (UTC) (envelope-from mckusick@mckusick.com) Received: from chez.mckusick.com (chez.mckusick.com [IPv6:2001:5a8:4:7e72:d250:99ff:fe57:4030]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC3BB18C9 for ; Thu, 3 Dec 2015 23:07:49 +0000 (UTC) (envelope-from mckusick@mckusick.com) Received: from chez.mckusick.com (localhost [IPv6:::1]) by chez.mckusick.com (8.15.2/8.14.9) with ESMTP id tB3N7mMl001027; Thu, 3 Dec 2015 15:07:48 -0800 (PST) (envelope-from mckusick@chez.mckusick.com) Message-Id: <201512032307.tB3N7mMl001027@chez.mckusick.com> From: Kirk McKusick To: Mateusz Guzik Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels cc: Rick Macklem , FreeBSD Current In-reply-to: <20151203224752.GA19134@dft-labs.eu> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1025.1449184068.1@chez.mckusick.com> Content-Transfer-Encoding: quoted-printable Date: Thu, 03 Dec 2015 15:07:48 -0800 X-Mailman-Approved-At: Thu, 03 Dec 2015 23:18:16 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 23:07:50 -0000 > Date: Thu, 3 Dec 2015 23:47:52 +0100 > From: Mateusz Guzik > To: Rick Macklem > Cc: FreeBSD Current > Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels > = > On Thu, Dec 03, 2015 at 05:08:27PM -0500, Rick Macklem wrote: >> Hi, >> = >> I get a fairly reproducible panic when doing a full kernel build >> on a 256Mbyte single core i386 when running recent kernels from -head. >> = >> The panic is "ffs_checkblk: bad block ..". I don't actually have the >> block # (although I think it's just 0xfffffffffffffff, given the backtr= ace), >> because it runs off the screen. (I looked up the message via the debugg= er >> from the first arg. to panic.) >> = >> Here's the backtrace without all the numbers: >> panic(c14f4b55, ffffffff, ffffffff, 0, 64,...) >> ffs_checkblk(ffffffff, 8000, fffffff9c, ffffffff, c4a02454,...) >> ffs_reallocblks >> VOP_REALLOCBLKS_APV >> cluster_write >> ffs_write >> VOP_WRITE_APV >> vn_write >> vn_io_fault_doio >> vn_io_fault1 >> vn_io_fault >> dofilewrite >> kern_writev >> sys_write >> syscall >> = >> It doesn't happen on a kernel dated Sep. 30, but does happen on a Nov. = 30 one. >> (I was away from home, so I didn't upgrade kernels for 2 months.) >> = >> I am slowly doing a binary search for the first kernel rev. where it oc= curs, >> but since each build takes hours, it's going to take a while;-). >> = >> At this point, it doesn't appear to happen on r289278 (just before jeff= @'s buffer >> cache patch). >> With kernels between r289279-->r290480, I get into the "R" state that >> was fixed by r290481 before I get a crash. >> I tried reverting r289405 and r290047 from a recent kernel and the cras= hes still >> occurred, so it doesn't appear to be these commits. >> = >> I am currently testing r290481 to see if the crash occurs for this rev. >> = >> If anyone has some insight into which commit might cause this, >> please let me know. > = > Well, did it crash with r291460 or later? > = > If so, try the kernel just before that and if that helps, try: > = > diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c > index ff37de8..0ad6ef7 100644 > --- a/sys/kern/vfs_subr.c > +++ b/sys/kern/vfs_subr.c > @@ -2783,6 +2783,7 @@ _vdrop(struct vnode *vp, bool locked) > vp->v_op =3D NULL; > #endif > bzero(&vp->v_un, sizeof(vp->v_un)); > + vp->v_lasta =3D vp->v_clen =3D vp->v_cstart =3D vp->v_lastw =3D = 0; > vp->v_iflag =3D 0; > vp->v_vflag =3D 0; > bo->bo_flag =3D 0; > = > -- = > Mateusz Guzik I concur with trying this suggestion. starting with r291460 these fields were no longer zero'ed when allocating the vnode. So you may have some residual values in there that are causing trouble. Kirk McKusick From owner-freebsd-current@freebsd.org Fri Dec 4 01:16:47 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD2F9A3FF46 for ; Fri, 4 Dec 2015 01:16:47 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) Received: from barracuda.ixsystems.com (mail.ixsystems.com [69.198.165.135]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.ixsystems.com", Issuer "Go Daddy Secure Certificate Authority - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACABB1E7E for ; Fri, 4 Dec 2015 01:16:47 +0000 (UTC) (envelope-from jmaloney@pcbsd.org) X-ASG-Debug-ID: 1449191805-08ca042abc05700002-XDYc8F Received: from [10.0.1.8] (ip72-209-175-134.ks.ks.cox.net [72.209.175.134]) by barracuda.ixsystems.com with ESMTP id hWuqCybhcDM2LSoX (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 03 Dec 2015 17:16:46 -0800 (PST) X-Barracuda-Envelope-From: jmaloney@pcbsd.org X-Barracuda-AUTH-User: jmaloney@pcbsd.org X-Barracuda-Apparent-Source-IP: 72.209.175.134 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) Subject: Re: EFI and i915kms questions From: Joe Maloney X-ASG-Orig-Subj: Re: EFI and i915kms questions In-Reply-To: <2CA763DF-4746-4383-8C2D-35BE57A332BA@pcbsd.org> Date: Thu, 3 Dec 2015 19:16:45 -0600 Cc: freebsd-current@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <4F36B4FB-7025-41C0-842D-5B89658A42F6@pcbsd.org> References: <54B18FFE-063F-4F62-9343-28FDE68EE358@pcbsd.org> <56505B3F.2070403@dumbbell.fr> <5BC149BC-8BA6-4089-A9E6-763E2494A30A@pcbsd.org> <1736392.rQjToYj3It@ralph.baldwin.cx> <565EA01E.7000300@dumbbell.fr> <547D1CBA-AEBD-4A89-91C9-35982D05EF89@pcbsd.org> <2CA763DF-4746-4383-8C2D-35BE57A332BA@pcbsd.org> To: =?utf-8?Q?Jean-S=C3=A9bastien_P=C3=A9dron?= X-Mailer: Apple Mail (2.3096.5) X-Barracuda-Connect: ip72-209-175-134.ks.ks.cox.net[72.209.175.134] X-Barracuda-Start-Time: 1449191806 X-Barracuda-Encrypted: ECDHE-RSA-AES256-SHA X-Barracuda-URL: https://10.2.0.41:443/cgi-mod/mark.cgi X-Virus-Scanned: by bsmtpd at ixsystems.com X-Barracuda-BRTS-Status: 1 X-Barracuda-Spam-Score: 0.00 X-Barracuda-Spam-Status: No, SCORE=0.00 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=8.0 tests= X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.3.24954 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 01:16:48 -0000 It works! Would it be helpful if I did a pull request from github, or = just let you guys take it from here? Thanks for helping me figure out = how to get up, and running! This will be so much better than the = framebuffer driver I was having to use. Joe Maloney > On Dec 3, 2015, at 12:33 PM, Joe Maloney wrote: >=20 > FYI it=E2=80=99s changed a bit more, and line 372 is now line 364 with = different options. Going to try this first which was now at line 364. >=20 > = https://github.com/pkgdemon/freebsd/commit/f72323b10a9dd6da79f0dae1a6fd688= 23ec66f7d >=20 > Joe Maloney >=20 >> On Dec 3, 2015, at 11:58 AM, Joe Maloney wrote: >>=20 >> Will give this a try, build an image and report back for sure. = Thanks! >>=20 >> Joe Maloney >>=20 >>> On Dec 2, 2015, at 1:39 AM, Jean-S=C3=A9bastien P=C3=A9dron = wrote: >>>=20 >>> On 02/12/2015 02:00, John Baldwin wrote: >>>> Note that at the top of the function it invokes IICBUS_TRANSFER on = a different >>>> device when force_bit_dev is true: >>>>=20 >>>> 370 sx_xlock(&dev_priv->gmbus_sx); >>>> 371 if (sc->force_bit_dev) { >>>> 372 dumbbell 282199 error =3D = -IICBUS_TRANSFER(dev_priv->bbbus[unit], msgs, nmsgs); >>>> 373 kib 235783 goto out; >>>> 374 } >>>>=20 >>>> Hmm, I would try changing the line at 470 to match the line at 372. >>>>=20 >>>> They used to match, and then this change: >>>=20 >>> You're right. This is something I fixed in my i915 update branch but >>> forgot to commit to HEAD... >>>=20 >>> Joe, could you please try what John suggests to confirm? >>>=20 >>> --=20 >>> Jean-S=C3=A9bastien P=C3=A9dron >>>=20 >>=20 >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> https://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to = "freebsd-current-unsubscribe@freebsd.org" >=20 > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to = "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@freebsd.org Fri Dec 4 02:51:06 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0E05A40502 for ; Fri, 4 Dec 2015 02:51:06 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: from mail-wm0-x22d.google.com (mail-wm0-x22d.google.com [IPv6:2a00:1450:400c:c09::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98F4D1C52 for ; Fri, 4 Dec 2015 02:51:06 +0000 (UTC) (envelope-from mjguzik@gmail.com) Received: by wmww144 with SMTP id w144so47380545wmw.0 for ; Thu, 03 Dec 2015 18:51:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=ocFuxzloX4CvJjNe9N7GKCiSR3F62XLK+pxAPDCc/kk=; b=aWMUVIwaQYvbXZs4BYgs1t7cev6hd07ZuwcxxG3iZVq2Q0J83bhw4tTd6lgcbGmui4 vDrE8pa1DK73NeTxczZ7HNjEeNUUTWCRBXAdPeDXXRvanwt5M1MQmH35lRqvebXRf4+b m2y/9YFuumDWK2Wp5Hw7D7wQKbXu2NgVJirlPzh4Mso1JbU6F02PnxsyMEpTnUT5VbXX L0AoYOX+aDr1ct/CQMspbhmh1Ru7ME5Mbc2QaixxIIGjYB6vM5IfCxVeItpzyJ7McI4Q I7C3SaZh77hh3Wc/f+Wvq1wtcRKgbfdmkBoKuBZ2d3hNdsaU0foRP7rOSLKDrpTe2S1d dJCQ== X-Received: by 10.28.130.7 with SMTP id e7mr1945453wmd.68.1449197465069; Thu, 03 Dec 2015 18:51:05 -0800 (PST) Received: from dft-labs.eu (n1x0n-1-pt.tunnel.tserv5.lon1.ipv6.he.net. [2001:470:1f08:1f7::2]) by smtp.gmail.com with ESMTPSA id m11sm1514242wma.5.2015.12.03.18.51.04 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 03 Dec 2015 18:51:04 -0800 (PST) Date: Fri, 4 Dec 2015 03:51:02 +0100 From: Mateusz Guzik To: Kirk McKusick Cc: Rick Macklem , FreeBSD Current Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels Message-ID: <20151204025102.GA15514@dft-labs.eu> Mail-Followup-To: Mateusz Guzik , Kirk McKusick , Rick Macklem , FreeBSD Current References: <20151203224752.GA19134@dft-labs.eu> <201512032307.tB3N7mMl001027@chez.mckusick.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201512032307.tB3N7mMl001027@chez.mckusick.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 02:51:07 -0000 On Thu, Dec 03, 2015 at 03:07:48PM -0800, Kirk McKusick wrote: > > Date: Thu, 3 Dec 2015 23:47:52 +0100 > > From: Mateusz Guzik > > To: Rick Macklem > > Cc: FreeBSD Current > > Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels > > > > On Thu, Dec 03, 2015 at 05:08:27PM -0500, Rick Macklem wrote: > >> Hi, > >> > >> I get a fairly reproducible panic when doing a full kernel build > >> on a 256Mbyte single core i386 when running recent kernels from -head. > >> > >> The panic is "ffs_checkblk: bad block ..". I don't actually have the > >> block # (although I think it's just 0xfffffffffffffff, given the backtrace), > >> because it runs off the screen. (I looked up the message via the debugger > >> from the first arg. to panic.) > >> > >> Here's the backtrace without all the numbers: > >> panic(c14f4b55, ffffffff, ffffffff, 0, 64,...) > >> ffs_checkblk(ffffffff, 8000, fffffff9c, ffffffff, c4a02454,...) > >> ffs_reallocblks > >> VOP_REALLOCBLKS_APV > >> cluster_write > >> ffs_write > >> VOP_WRITE_APV > >> vn_write > >> vn_io_fault_doio > >> vn_io_fault1 > >> vn_io_fault > >> dofilewrite > >> kern_writev > >> sys_write > >> syscall > >> > >> It doesn't happen on a kernel dated Sep. 30, but does happen on a Nov. 30 one. > >> (I was away from home, so I didn't upgrade kernels for 2 months.) > >> > >> I am slowly doing a binary search for the first kernel rev. where it occurs, > >> but since each build takes hours, it's going to take a while;-). > >> > >> At this point, it doesn't appear to happen on r289278 (just before jeff@'s buffer > >> cache patch). > >> With kernels between r289279-->r290480, I get into the "R" state that > >> was fixed by r290481 before I get a crash. > >> I tried reverting r289405 and r290047 from a recent kernel and the crashes still > >> occurred, so it doesn't appear to be these commits. > >> > >> I am currently testing r290481 to see if the crash occurs for this rev. > >> > >> If anyone has some insight into which commit might cause this, > >> please let me know. > > > > Well, did it crash with r291460 or later? > > > > If so, try the kernel just before that and if that helps, try: > > > > diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c > > index ff37de8..0ad6ef7 100644 > > --- a/sys/kern/vfs_subr.c > > +++ b/sys/kern/vfs_subr.c > > @@ -2783,6 +2783,7 @@ _vdrop(struct vnode *vp, bool locked) > > vp->v_op = NULL; > > #endif > > bzero(&vp->v_un, sizeof(vp->v_un)); > > + vp->v_lasta = vp->v_clen = vp->v_cstart = vp->v_lastw = 0; > > vp->v_iflag = 0; > > vp->v_vflag = 0; > > bo->bo_flag = 0; > > > > -- > > Mateusz Guzik > > I concur with trying this suggestion. starting with r291460 these > fields were no longer zero'ed when allocating the vnode. So you may > have some residual values in there that are causing trouble. I reviewed the rest of the structure, looks like this is the rest of the fallout. -- Mateusz Guzik From owner-freebsd-current@freebsd.org Fri Dec 4 03:34:19 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A4D2A4008E for ; Fri, 4 Dec 2015 03:34:19 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 106E1137A for ; Fri, 4 Dec 2015 03:34:19 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0B737A4008D; Fri, 4 Dec 2015 03:34:19 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4B27A4008C for ; Fri, 4 Dec 2015 03:34:18 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.netplex.net (mail.netplex.net [204.213.176.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.netplex.net", Issuer "RapidSSL SHA256 CA - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A11C51379 for ; Fri, 4 Dec 2015 03:34:18 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.netplex.net (8.15.1/8.15.1/NETPLEX) with ESMTP id tB43YASo002442; Thu, 3 Dec 2015 22:34:10 -0500 X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.netplex.net) X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-4.4.3 (mail.netplex.net [204.213.176.9]); Thu, 03 Dec 2015 22:34:10 -0500 (EST) Date: Thu, 3 Dec 2015 22:34:10 -0500 (EST) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net Reply-To: Daniel Eischen To: Konstantin Belousov cc: current@freebsd.org Subject: Re: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) In-Reply-To: <20151130145518.GK3448@kib.kiev.ua> Message-ID: References: <20151129102903.GD3448@kib.kiev.ua> <20151130145518.GK3448@kib.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 03:34:19 -0000 On Mon, 30 Nov 2015, Konstantin Belousov wrote: > On Sun, Nov 29, 2015 at 12:27:40PM -0500, Daniel Eischen wrote: >> On Sun, 29 Nov 2015, Konstantin Belousov wrote: >> >>> On Sun, Nov 29, 2015 at 01:23:04AM -0500, Daniel Eischen wrote: >>>> >>>> So I found out that sometime in the last year or so, symbol versioning >>>> for librt was broken and leaking symbols that shouldn't have been >>>> leaked. I've just committed a fix for this. >>>> >>>> Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' >>>> and see the non FBSD_foo symbols that shouldn't be there. >>> >>> I did the following on the librt from the HEAD of about month ago: >>> >>> pooma% ls -l netboot/sandy/usr/lib/librt.so.1 >>> -r--r--r-- 1 root wheel 23704 Oct 24 23:35 netboot/sandy/usr/lib/librt.so.1 >>> >>> pooma% readelf -sw netboot/sandy/usr/lib/librt.so.1 | grep GLOBAL | grep -v UND | grep -v FBSDpriv | grep FBSD >>> 97: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS FBSD_1.0 >>> >>> But I think that your commit is the good change. >> >> >> Can you check librt.so.1 in your buildworld temporary build >> environment? >> >> $ readelf -sW /usr/obj/usr/FreeBSD/svn/src/tmp/usr/lib/librt.so.1 \ >> grep -v UND | grep GLOBAL >> >> There has to be a reason that tests/sys/mqueue/mqtest[3-4].c build >> without error when they reference __mq_oshandle. That symbol is >> not exported from librt. >> >> Hmm, looks like libc and libthr are also the same (leaky) in the >> temporary build environment (TBE). So something broke when building >> the TBE libraries. >> >> For r277320 on my system Jan 19, 2015, the TBE libraries must have >> been built correctly because mqtests[3-4] failed with unresolved >> references to __mq_oshandle. > > In fact, my command was wrong. I see that there are indeed a lot of symbols > exported which are not versioned (this is where my command was wrong, the > grep FBSD part), even for the installed librt. Arrgh, this bug also seems to have slipped into 10-stable. $ uname -a FreeBSD 10.1-RELEASE-p9 FreeBSD 10.1-RELEASE-p9 #0: Tue Apr 7 01:09:46 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 $ readelf -sW /usr/lib/librt.so.1 | grep -v UND | grep GLOBAL \ | grep -v FBSD 71: 0000000000003ac0 432 FUNC GLOBAL DEFAULT 12 __sigev_alloc ... $ readelf -sW /usr/lib/librt.so.1 | grep -v UND | grep GLOBAL \ | grep -v FBSD | wc -l 22 -- DE From owner-freebsd-current@freebsd.org Fri Dec 4 09:28:17 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D58DA401C6 for ; Fri, 4 Dec 2015 09:28:17 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7D190111E for ; Fri, 4 Dec 2015 09:28:17 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 7BE00A401C5; Fri, 4 Dec 2015 09:28:17 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61AE9A401C3 for ; Fri, 4 Dec 2015 09:28:17 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 05208111C; Fri, 4 Dec 2015 09:28:16 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kostik@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id tB49SBpG044874 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 4 Dec 2015 11:28:11 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua tB49SBpG044874 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id tB49SAsr044873; Fri, 4 Dec 2015 11:28:10 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 4 Dec 2015 11:28:10 +0200 From: Konstantin Belousov To: Daniel Eischen Cc: current@freebsd.org Subject: Re: librt symbol versioning breakage (was Re: Build failure, undefined reference to __mq_oshandle) Message-ID: <20151204092810.GM2405@kib.kiev.ua> References: <20151129102903.GD3448@kib.kiev.ua> <20151130145518.GK3448@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 09:28:17 -0000 On Thu, Dec 03, 2015 at 10:34:10PM -0500, Daniel Eischen wrote: > On Mon, 30 Nov 2015, Konstantin Belousov wrote: > > > On Sun, Nov 29, 2015 at 12:27:40PM -0500, Daniel Eischen wrote: > >> On Sun, 29 Nov 2015, Konstantin Belousov wrote: > >> > >>> On Sun, Nov 29, 2015 at 01:23:04AM -0500, Daniel Eischen wrote: > >>>> > >>>> So I found out that sometime in the last year or so, symbol versioning > >>>> for librt was broken and leaking symbols that shouldn't have been > >>>> leaked. I've just committed a fix for this. > >>>> > >>>> Do a 'readelf -sw /usr/lib/librt.so.1 | grep GLOBAL | grep -v UND' > >>>> and see the non FBSD_foo symbols that shouldn't be there. > >>> > >>> I did the following on the librt from the HEAD of about month ago: > >>> > >>> pooma% ls -l netboot/sandy/usr/lib/librt.so.1 > >>> -r--r--r-- 1 root wheel 23704 Oct 24 23:35 netboot/sandy/usr/lib/librt.so.1 > >>> > >>> pooma% readelf -sw netboot/sandy/usr/lib/librt.so.1 | grep GLOBAL | grep -v UND | grep -v FBSDpriv | grep FBSD > >>> 97: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS FBSD_1.0 > >>> > >>> But I think that your commit is the good change. > >> > >> > >> Can you check librt.so.1 in your buildworld temporary build > >> environment? > >> > >> $ readelf -sW /usr/obj/usr/FreeBSD/svn/src/tmp/usr/lib/librt.so.1 \ > >> grep -v UND | grep GLOBAL > >> > >> There has to be a reason that tests/sys/mqueue/mqtest[3-4].c build > >> without error when they reference __mq_oshandle. That symbol is > >> not exported from librt. > >> > >> Hmm, looks like libc and libthr are also the same (leaky) in the > >> temporary build environment (TBE). So something broke when building > >> the TBE libraries. > >> > >> For r277320 on my system Jan 19, 2015, the TBE libraries must have > >> been built correctly because mqtests[3-4] failed with unresolved > >> references to __mq_oshandle. > > > > In fact, my command was wrong. I see that there are indeed a lot of symbols > > exported which are not versioned (this is where my command was wrong, the > > grep FBSD part), even for the installed librt. > > Arrgh, this bug also seems to have slipped into 10-stable. > > $ uname -a > FreeBSD 10.1-RELEASE-p9 FreeBSD 10.1-RELEASE-p9 #0: Tue Apr 7 > 01:09:46 UTC 2015 > root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 > $ readelf -sW /usr/lib/librt.so.1 | grep -v UND | grep GLOBAL \ > | grep -v FBSD > 71: 0000000000003ac0 432 FUNC GLOBAL DEFAULT 12 __sigev_alloc > ... > $ readelf -sW /usr/lib/librt.so.1 | grep -v UND | grep GLOBAL \ > | grep -v FBSD | wc -l > 22 Yes, I did my check on stable/10 FWIW. From owner-freebsd-current@freebsd.org Fri Dec 4 13:23:21 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 259A0A413B1 for ; Fri, 4 Dec 2015 13:23:21 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-annu.net.uoguelph.ca (esa-annu.mail.uoguelph.ca [131.104.91.36]) by mx1.freebsd.org (Postfix) with ESMTP id CC21C1B9F for ; Fri, 4 Dec 2015 13:23:19 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) IronPort-PHdr: 9a23:RLko3xb7DSZatbTagvYYd4H/LSx+4OfEezUN459isYplN5qZpcqybnLW6fgltlLVR4KTs6sC0LqI9fi4EUU7or+/81k6OKRWUBEEjchE1ycBO+WiTXPBEfjxciYhF95DXlI2t1uyMExSBdqsLwaK+i760zceF13FOBZvIaytQ8iJ35rxj7j60qaQSjsLrQL1Wal1IhSyoFeZnegtqqwmFJwMzADUqGBDYeVcyDAgD1uSmxHh+pX4p8Y7oGx48sgs/M9YUKj8Y79wDfkBVGxnYCgJ45jOvAXOUBCdrlQBQGQV2k5NAQfY/hD5dpj0uyr+8OF63X/JE9fxSOUOWD+hp4JiQxzshSJPYyQ8+WrUjsF1pL9crw+sowR/hYXdNtLGfMFid7/QKItJDVFKWdxcAmkYWtux X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2DQAQAKk2FW/61jaINWCIQNbga9PgENgW4XCoUjSgKBYRQBAQEBAQEBAYEJgi2CBwEBAQMBAQEBIAQnIAsFCwIBCA4DAwECAQICDRkCAiEGAQkeCAIECAcEARwEh3kDCggNr3mMDA2EQQEBAQEBAQEBAQEBAQEBAQEBAQEagQGFU4R9glOBYwUBAYM6gUQFjh+IQoUthSN1g1JJg3qJFIVih1cCHwEBQoIRHYF0IDQHhCc6gQcBAQE X-IronPort-AV: E=Sophos;i="5.20,380,1444708800"; d="scan'208";a="255736395" Received: from nipigon.cs.uoguelph.ca (HELO zcs1.mail.uoguelph.ca) ([131.104.99.173]) by esa-annu.net.uoguelph.ca with ESMTP; 04 Dec 2015 08:23:18 -0500 Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id A33EB15F55D; Fri, 4 Dec 2015 08:23:18 -0500 (EST) Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id GHDtrndRnAfE; Fri, 4 Dec 2015 08:23:17 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id CBB6615F565; Fri, 4 Dec 2015 08:23:17 -0500 (EST) X-Virus-Scanned: amavisd-new at zcs1.mail.uoguelph.ca Received: from zcs1.mail.uoguelph.ca ([127.0.0.1]) by localhost (zcs1.mail.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id YnT2c_waYhEO; Fri, 4 Dec 2015 08:23:17 -0500 (EST) Received: from zcs1.mail.uoguelph.ca (zcs1.mail.uoguelph.ca [172.17.95.18]) by zcs1.mail.uoguelph.ca (Postfix) with ESMTP id ADA5215F55D; Fri, 4 Dec 2015 08:23:17 -0500 (EST) Date: Fri, 4 Dec 2015 08:23:17 -0500 (EST) From: Rick Macklem To: Mateusz Guzik Cc: Kirk McKusick , FreeBSD Current Message-ID: <43332766.118512946.1449235397400.JavaMail.zimbra@uoguelph.ca> In-Reply-To: <20151204025102.GA15514@dft-labs.eu> References: <20151203224752.GA19134@dft-labs.eu> <201512032307.tB3N7mMl001027@chez.mckusick.com> <20151204025102.GA15514@dft-labs.eu> Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [172.17.95.12] X-Mailer: Zimbra 8.0.9_GA_6191 (ZimbraWebClient - FF34 (Win)/8.0.9_GA_6191) Thread-Topic: panic "ffs_checkblk: bad block" on recent -head kernels Thread-Index: 8bp8r+BfzQp/jWQL+d7eMmHwmKGtUg== X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 13:23:21 -0000 Mateusz Guzik wrote: > On Thu, Dec 03, 2015 at 03:07:48PM -0800, Kirk McKusick wrote: > > > Date: Thu, 3 Dec 2015 23:47:52 +0100 > > > From: Mateusz Guzik > > > To: Rick Macklem > > > Cc: FreeBSD Current > > > Subject: Re: panic "ffs_checkblk: bad block" on recent -head kernels > > > > > > On Thu, Dec 03, 2015 at 05:08:27PM -0500, Rick Macklem wrote: > > >> Hi, > > >> > > >> I get a fairly reproducible panic when doing a full kernel build > > >> on a 256Mbyte single core i386 when running recent kernels from -head. > > >> > > >> The panic is "ffs_checkblk: bad block ..". I don't actually have the > > >> block # (although I think it's just 0xfffffffffffffff, given the > > >> backtrace), > > >> because it runs off the screen. (I looked up the message via the > > >> debugger > > >> from the first arg. to panic.) > > >> > > >> Here's the backtrace without all the numbers: > > >> panic(c14f4b55, ffffffff, ffffffff, 0, 64,...) > > >> ffs_checkblk(ffffffff, 8000, fffffff9c, ffffffff, c4a02454,...) > > >> ffs_reallocblks > > >> VOP_REALLOCBLKS_APV > > >> cluster_write > > >> ffs_write > > >> VOP_WRITE_APV > > >> vn_write > > >> vn_io_fault_doio > > >> vn_io_fault1 > > >> vn_io_fault > > >> dofilewrite > > >> kern_writev > > >> sys_write > > >> syscall > > >> > > >> It doesn't happen on a kernel dated Sep. 30, but does happen on a Nov. > > >> 30 one. > > >> (I was away from home, so I didn't upgrade kernels for 2 months.) > > >> > > >> I am slowly doing a binary search for the first kernel rev. where it > > >> occurs, > > >> but since each build takes hours, it's going to take a while;-). > > >> > > >> At this point, it doesn't appear to happen on r289278 (just before > > >> jeff@'s buffer > > >> cache patch). > > >> With kernels between r289279-->r290480, I get into the "R" state that > > >> was fixed by r290481 before I get a crash. > > >> I tried reverting r289405 and r290047 from a recent kernel and the > > >> crashes still > > >> occurred, so it doesn't appear to be these commits. > > >> > > >> I am currently testing r290481 to see if the crash occurs for this rev. > > >> > > >> If anyone has some insight into which commit might cause this, > > >> please let me know. > > > > > > Well, did it crash with r291460 or later? > > > > > > If so, try the kernel just before that and if that helps, try: > > > > > > diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c > > > index ff37de8..0ad6ef7 100644 > > > --- a/sys/kern/vfs_subr.c > > > +++ b/sys/kern/vfs_subr.c > > > @@ -2783,6 +2783,7 @@ _vdrop(struct vnode *vp, bool locked) > > > vp->v_op = NULL; > > > #endif > > > bzero(&vp->v_un, sizeof(vp->v_un)); > > > + vp->v_lasta = vp->v_clen = vp->v_cstart = vp->v_lastw = 0; > > > vp->v_iflag = 0; > > > vp->v_vflag = 0; > > > bo->bo_flag = 0; > > > > > > -- > > > Mateusz Guzik > > > > I concur with trying this suggestion. starting with r291460 these > > fields were no longer zero'ed when allocating the vnode. So you may > > have some residual values in there that are causing trouble. > Good work. This does seem to fix the problem. Without this patch, the crash would occur on pretty well every full kernel build attaempt. With the patch, I've done 3 full kernel builds without a crash. I see the fix has already hit head. Thanks guys, rick > I reviewed the rest of the structure, looks like this is the rest of the > fallout. > > -- > Mateusz Guzik > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-current@freebsd.org Fri Dec 4 18:49:07 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8BA04A41798; Fri, 4 Dec 2015 18:49:07 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from mail-lf0-x235.google.com (mail-lf0-x235.google.com [IPv6:2a00:1450:4010:c07::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1BBF91929; Fri, 4 Dec 2015 18:49:07 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: by lfaz4 with SMTP id z4so118186415lfa.0; Fri, 04 Dec 2015 10:49:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=hOyBzldRV7NL74intIrXGZUQbD3Y32MwA7sgO9RCt84=; b=fLgEjrevQbgjHYvQ+5c7DRSNZdStHg7lOV5x2FRcp6FQMYXIREBpWdKDE68O2mY6ZF pJLXztdpW1iqV/v+ku5O/hXprZsj7e7odPHB8nf+9RSlcP0pKwJnRiJR62PLOZm2bmEj kiNSarvMSAVyj1oXQZzp8yn3AISQWEo8pZR9szXNjYPBFTfc5KumgZUohfx08gIjlJN/ FsagsMDKUVrLPuKhMv4SBwril3A3OeO9LWoVF5ee+DfEyXPz42jwyiRO1j2VhhSXOQ8f 3NqC+bA5qbDSEMQWQ/lA+I8iqeXLNISDdEWwVdhKj3YAP4d4Y0xB4bE/SBYu5Iyc0AfT yG+g== MIME-Version: 1.0 X-Received: by 10.25.26.210 with SMTP id a201mr7602663lfa.58.1449254945124; Fri, 04 Dec 2015 10:49:05 -0800 (PST) Sender: uspoerlein@gmail.com Received: by 10.25.144.140 with HTTP; Fri, 4 Dec 2015 10:49:05 -0800 (PST) In-Reply-To: References: <563EAAB8.5020702@freebsd.org> Date: Fri, 4 Dec 2015 19:49:05 +0100 X-Google-Sender-Auth: n82W7NaGcwFOWwa-R5nvv5l5Qps Message-ID: Subject: Re: FYI: SVN to GIT converter currently broken, github is falling behind From: =?UTF-8?Q?Ulrich_Sp=C3=B6rlein?= To: freebsd-git@freebsd.org Cc: freebsd-current@freebsd.org, git-admin@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 18:49:07 -0000 2015-11-08 12:06 GMT+01:00 Ulrich Sp=C3=B6rlein : > 2015-11-08 11:32 GMT+01:00 Ulrich Sp=C3=B6rlein : >> 2015-11-08 2:51 GMT+01:00 Alfred Perlstein : >>>> >>> Uli, >>> >>> One of the biggest concerns I've heard from folks using FreeBSD's git m= irror >>> is that the hashes can change. >>> >>> I have a question about this. Is it possible to keep track of what th= e >>> "official" git mirror (on github) is doing and keep that as a log. The= n >>> that log can be used to replay commits when there is a divergence probl= em. >>> >>> What I'm basically saying is that let's take this small example: >>> >>> importer is working fine @rev 10000 >>> imports 10000 >>> imports 10001 >>> imports 10002 >>> something happens to importer to give indeterminate shas. >>> imports 10003 - sha is "unstable" sha3 >>> imports 10004 - sha is "unstable" sha4 >>> imports 10005 - sha is "unstable" sha5 >>> imports 10006 - sha is "unstable" sha6 >>> importer is fixed >>> >>> >>> At this point normally we'd rewind the importer to 10002 and then force >>> update the affected branches. >>> >>> My question is... can the imports of 10003, 10004, 10005 and 10006 be p= ut >>> into the importer such that any "mirror site" that re-does the import u= sing >>> the most up to date importer will get the same shas. >>> >>> That would allow to proceed with 10007, etc without force pushing. >>> >>> This should be possible based on querying "git" for the meta data assoc= iated >>> with sha3..sha6 and then forcing those commits to have the same meta da= ta. >>> >>> This would eliminate the concern about shas in the mirror changing that= I've >>> heard. >> >> The goal of the conversion is that everyone can re-do the conversion >> in their basement and come up with the same history and checksums. >> This was not the case when I first started, as there was some >> non-deterministic hash structure being used in svn2git. This was fixed >> in the code and then all converter runs produced the very same >> results. >> >> The scenario that we have right now, is that one of the merge commits >> done about two weeks ago is being handled different by svn2git w/ svn >> v1.8 vs. svn v1.9 and I haven't investigated yet how the API's >> behavior changed to cause this. I'm afraid I also swapped out all my >> knowledge about svn2git internals and will have to redo this all from >> scratch :/ >> >> Your suggestion could only work, if we hard-code this svn revision >> special handling into svn2git, either in the code or by providing more >> mappings and rules to the process. svn2git should run hermetic and not >> poke at github's commits to see how things were handled in the past. >> It has to be self-sufficient and must not depend on github. >> >> This would also only work, if the "breakage" window was very small, >> but it is already about two weeks long and will surely increase till I >> find the proper fix. >> >> So, to take a stand here: this sort of kludge is unlikely to ever >> happen. Git commit hashes *might* change in the future. I really don't >> see how this is a big deal anyway. It happened once and I'm trying to >> have it never happen again. But why are people afraid of this >> happening? Every "official" git commit is tagged with a SVN revision >> and the contents of those revisions are obviously correct (just not >> the ancestry and the commit objects, possibly). So it would be easy to >> write a script that replays VendorA's git history and swaps out the >> new official commits for the old official commits. There would be no >> merge conflicts. >> >> I can see how this would be annoying if you have 100 developers and >> dozens of branches that are far from mainline FreeBSD. But I'm sure >> these companies that depend on git will come forward and donate some >> of their developer manpower to help me with keeping the converter >> stable/deterministic. Right? Right? :) :) >> >> Cheers, >> Uli > > Quick update: doc is so far unaffected by svn 1.9, but for ports, the > drift happened as of Jul 18, so you'd need to special case a lot of > commits. > > Here's the same commit, and the difference between 1.8 and 1.9: > > % git cat-file commit 803795d > tree 7fc83aba022834da5c218114b09ad4640735bcc0 > parent c96fb0418e545a569b5975b4d878a30a948c29d5 > author olgeni 1437203525 +0000 > committer olgeni 1437203525 +0000 > > Upgrade to version 0.4.1. > % git cat-file commit 61ca43b > tree 7fc83aba022834da5c218114b09ad4640735bcc0 > parent c96fb0418e545a569b5975b4d878a30a948c29d5 > author olgeni 1437203529 +0000 > committer olgeni 1437203529 +0000 > > Upgrade to version 0.4.1. > > > In case you don't see it, there's a 4s difference in the timestamps > for authoring and committing. Here's the original: > > % svn log -vc392405 svn://svn.freebsd.org/ports > ------------------------------------------------------------------------ > r392405 | olgeni | 2015-07-18 09:12:05 +0200 (Sat, 18 Jul 2015) | 2 lines > Changed paths: > M /head/www/elixir-maru/Makefile > M /head/www/elixir-maru/distinfo > > Upgrade to version 0.4.1. > > ------------------------------------------------------------------------ > > So yeah, svn 1.9 returned a timestamp that was off by 4s. WTF? > > For base it's actually even more complicated than I had thought so > far. But let's take this one step at time ... An update, which you won't like to hear: SVN v1.9 is totally innocent, the API changed a little and has been patched, this is not the source of the difference between the currently published repo and a clean run. The difference stems from the fact that the svnsync'ed copy on git.freebsd.org was poisoned and is *NOT* in sync with our main repo. People tell me this is due to a shortcoming of svnsync that can race and thus produce different metadata for a commit, depending on when it is run. This is a clusterfuck. Both freebsd-base and freebsd-ports are no longer reproducible by third-parties. It is only a matter of time when freebsd-doc is affected. clusteradm@ sadly has remained rather silent on this issue and unless we can move the mirroring to rsync or syncthing or whatever I don't see how the project can continue to provide a so-called git "mirror" Sad, Uli From owner-freebsd-current@freebsd.org Fri Dec 4 19:32:25 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18C3AA411A9; Fri, 4 Dec 2015 19:32:25 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9895C10FC; Fri, 4 Dec 2015 19:32:23 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id B33661FE023; Fri, 4 Dec 2015 20:32:19 +0100 (CET) Subject: Re: panic in arptimer in r289937 To: "Alexander V. Chernikov" , Adrian Chadd References: <2739461446298483@web2h.yandex.ru> <1733241446303675@web19h.yandex.ru> Cc: FreeBSD Net , freebsd-current , Randall Stewart From: Hans Petter Selasky Message-ID: <5661EAAF.1010906@selasky.org> Date: Fri, 4 Dec 2015 20:34:07 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1733241446303675@web19h.yandex.ru> Content-Type: multipart/mixed; boundary="------------010400080206050505080202" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 19:32:25 -0000 This is a multi-part message in MIME format. --------------010400080206050505080202 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi Adrian, On 10/31/15 16:01, Alexander V. Chernikov wrote: > > > 31.10.2015, 16:46, "Adrian Chadd" : >> On 31 October 2015 at 09:34, Alexander V. Chernikov >> wrote: >>> 31.10.2015, 05:32, "Adrian Chadd" : >>>> Hiya, >>>> >>>> Here's a panic from arptimer: >>> Hi Adrian, >>> >>> As far as I see, line 205 in if_ether.c is IF_AFDATA_LOCK(ifp) which happens after LLE_WUNLOCK(). >>> So, it looks like (pre-cached) ifp had been freed before locking ifdata. >>> Do you have any more details on that? (e.g. was some interface detached at that moment, is it reproducible, etc..) >>> >>> From a quick glance, potential use-after-free has been possible for quite a long time, but I wonder why it hasn't been observed before. >>> Probably lltable_free() changes might have triggered that. >>> >>> I'll take a deeper look on that and reply. >> Observed on an idle box with projects/hps_head too: > panic: bogus refcnt 0 on lle 0xfffff8016508ca00 > cpuid = 7 > KDB: stack backtrace: > db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe03e4e8c7e0 > vpanic() at vpanic+0x182/frame 0xfffffe03e4e8c860 > kassert_panic() at kassert_panic+0x126/frame 0xfffffe03e4e8c8d0 > llentry_free() at llentry_free+0x136/frame 0xfffffe03e4e8c900 > arptimer() at arptimer+0x20e/frame 0xfffffe03e4e8c950 > softclock_call_cc() at softclock_call_cc+0x170/frame 0xfffffe03e4e8c9c0 > softclock() at softclock+0x47/frame 0xfffffe03e4e8c9e0 > intr_event_execute_handlers() at intr_event_execute_handlers+0x96/frame 0xfffffe03e4e8ca20 > ithread_loop() at ithread_loop+0xa6/frame 0xfffffe03e4e8ca70 > fork_exit() at fork_exit+0x84/frame 0xfffffe03e4e8cab0 > fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe03e4e8cab0 > --- trap 0, rip = 0, rsp = 0, rbp = 0 --- Looks like callout_reset() must be examined too, and was missed by: https://svnweb.freebsd.org/changeset/base/290805 Can you try the attached patch? Randall: Can you fix this ASAP? --HPS --------------010400080206050505080202 Content-Type: text/x-patch; name="callout_reset_arptimer.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="callout_reset_arptimer.diff" diff --git a/sys/dev/oce/oce_if.c b/sys/dev/oce/oce_if.c index 826cd3c..1cca876 100644 --- a/sys/dev/oce/oce_if.c +++ b/sys/dev/oce/oce_if.c @@ -343,7 +343,7 @@ oce_attach(device_t dev) callout_init(&sc->timer, 1); rc = callout_reset(&sc->timer, 2 * hz, oce_local_timer, sc); - if (rc) + if (rc > 0) goto stats_free; return 0; diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index dfba0b2..0aec1c4 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -420,7 +420,7 @@ arpresolve_full(struct ifnet *ifp, int is_gw, int create, struct mbuf *m, la->la_expire = time_uptime; canceled = callout_reset(&la->lle_timer, hz * V_arpt_down, arptimer, la); - if (canceled) + if (canceled > 0) LLE_REMREF(la); la->la_asked++; LLE_WUNLOCK(la); @@ -1084,7 +1084,7 @@ arp_mark_lle_reachable(struct llentry *la) la->la_expire = time_uptime + V_arpt_keep; canceled = callout_reset(&la->lle_timer, hz * V_arpt_keep, arptimer, la); - if (canceled) + if (canceled > 0) LLE_REMREF(la); } la->la_asked = 0; --------------010400080206050505080202-- From owner-freebsd-current@freebsd.org Fri Dec 4 19:51:02 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79DE6A415B7; Fri, 4 Dec 2015 19:51:02 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E9401E40; Fri, 4 Dec 2015 19:51:01 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id F18E51FE023; Fri, 4 Dec 2015 20:50:59 +0100 (CET) Subject: Re: panic in arptimer in r289937 To: "Alexander V. Chernikov" , Adrian Chadd References: <2739461446298483@web2h.yandex.ru> <1733241446303675@web19h.yandex.ru> <5661EAAF.1010906@selasky.org> Cc: FreeBSD Net , freebsd-current , Randall Stewart From: Hans Petter Selasky Message-ID: <5661EF10.8060300@selasky.org> Date: Fri, 4 Dec 2015 20:52:48 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <5661EAAF.1010906@selasky.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 19:51:02 -0000 On 12/04/15 20:34, Hans Petter Selasky wrote: > Hi Adrian, > > On 10/31/15 16:01, Alexander V. Chernikov wrote: >> >> >> 31.10.2015, 16:46, "Adrian Chadd" : >>> On 31 October 2015 at 09:34, Alexander V. Chernikov >>> wrote: >>>> 31.10.2015, 05:32, "Adrian Chadd" : >>>>> Hiya, >>>>> >>>>> Here's a panic from arptimer: >>>> Hi Adrian, >>>> >>>> As far as I see, line 205 in if_ether.c is IF_AFDATA_LOCK(ifp) >>>> which happens after LLE_WUNLOCK(). >>>> So, it looks like (pre-cached) ifp had been freed before locking >>>> ifdata. >>>> Do you have any more details on that? (e.g. was some interface >>>> detached at that moment, is it reproducible, etc..) >>>> >>>> From a quick glance, potential use-after-free has been possible >>>> for quite a long time, but I wonder why it hasn't been observed before. >>>> Probably lltable_free() changes might have triggered that. >>>> >>>> I'll take a deeper look on that and reply. >>> > > Observed on an idle box with projects/hps_head too: > >> panic: bogus refcnt 0 on lle 0xfffff8016508ca00 >> cpuid = 7 >> KDB: stack backtrace: >> db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame >> 0xfffffe03e4e8c7e0 >> vpanic() at vpanic+0x182/frame 0xfffffe03e4e8c860 >> kassert_panic() at kassert_panic+0x126/frame 0xfffffe03e4e8c8d0 >> llentry_free() at llentry_free+0x136/frame 0xfffffe03e4e8c900 >> arptimer() at arptimer+0x20e/frame 0xfffffe03e4e8c950 >> softclock_call_cc() at softclock_call_cc+0x170/frame 0xfffffe03e4e8c9c0 >> softclock() at softclock+0x47/frame 0xfffffe03e4e8c9e0 >> intr_event_execute_handlers() at >> intr_event_execute_handlers+0x96/frame 0xfffffe03e4e8ca20 >> ithread_loop() at ithread_loop+0xa6/frame 0xfffffe03e4e8ca70 >> fork_exit() at fork_exit+0x84/frame 0xfffffe03e4e8cab0 >> fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe03e4e8cab0 >> --- trap 0, rip = 0, rsp = 0, rbp = 0 --- > > Looks like callout_reset() must be examined too, and was missed by: > > https://svnweb.freebsd.org/changeset/base/290805 > > Can you try the attached patch? > > Randall: Can you fix this ASAP? > > --HPS > Hi, Randall: I see for 11-current, callout_reset() doesn't return -1 when the callout is stopped like with callout_stop(). Is this a bug or a feature? Why can't the callout_reset() and callout_stop() functions use the same return values? In nd6_llinfo_settimer_locked() the return value of both callout_reset() and callout_stop() is checked for positive values, but not in the other places mentioned by my patch. --HPS From owner-freebsd-current@freebsd.org Fri Dec 4 19:53:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D390A41733; Fri, 4 Dec 2015 19:53:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 50E3410F8; Fri, 4 Dec 2015 19:53:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 3F0721C56; Fri, 4 Dec 2015 19:53:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id AD65118BAE; Fri, 4 Dec 2015 19:53:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id zr_4PRs3dMgs; Fri, 4 Dec 2015 19:53:37 +0000 (UTC) Subject: Re: FYI: SVN to GIT converter currently broken, github is falling behind DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com EC16018BA5 To: =?UTF-8?Q?Ulrich_Sp=c3=b6rlein?= , freebsd-git@freebsd.org References: <563EAAB8.5020702@freebsd.org> Cc: freebsd-current@freebsd.org, git-admin@freebsd.org From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <5661EF43.9040406@FreeBSD.org> Date: Fri, 4 Dec 2015 11:53:39 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KIw4nppIcKxsRKMVRwiWAsIG3FSmtXmw6" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 19:53:41 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --KIw4nppIcKxsRKMVRwiWAsIG3FSmtXmw6 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 12/4/2015 10:49 AM, Ulrich Sp=C3=B6rlein wrote: > 2015-11-08 12:06 GMT+01:00 Ulrich Sp=C3=B6rlein : >> 2015-11-08 11:32 GMT+01:00 Ulrich Sp=C3=B6rlein : >>> 2015-11-08 2:51 GMT+01:00 Alfred Perlstein : >>>>> >>>> Uli, >>>> >>>> One of the biggest concerns I've heard from folks using FreeBSD's gi= t mirror >>>> is that the hashes can change. >>>> >>>> I have a question about this. Is it possible to keep track of what= the >>>> "official" git mirror (on github) is doing and keep that as a log. = Then >>>> that log can be used to replay commits when there is a divergence pr= oblem. >>>> >>>> What I'm basically saying is that let's take this small example: >>>> >>>> importer is working fine @rev 10000 >>>> imports 10000 >>>> imports 10001 >>>> imports 10002 >>>> something happens to importer to give indeterminate shas. >>>> imports 10003 - sha is "unstable" sha3 >>>> imports 10004 - sha is "unstable" sha4 >>>> imports 10005 - sha is "unstable" sha5 >>>> imports 10006 - sha is "unstable" sha6 >>>> importer is fixed >>>> >>>> >>>> At this point normally we'd rewind the importer to 10002 and then fo= rce >>>> update the affected branches. >>>> >>>> My question is... can the imports of 10003, 10004, 10005 and 10006 b= e put >>>> into the importer such that any "mirror site" that re-does the impor= t using >>>> the most up to date importer will get the same shas. >>>> >>>> That would allow to proceed with 10007, etc without force pushing. >>>> >>>> This should be possible based on querying "git" for the meta data as= sociated >>>> with sha3..sha6 and then forcing those commits to have the same meta= data. >>>> >>>> This would eliminate the concern about shas in the mirror changing t= hat I've >>>> heard. >>> >>> The goal of the conversion is that everyone can re-do the conversion >>> in their basement and come up with the same history and checksums. >>> This was not the case when I first started, as there was some >>> non-deterministic hash structure being used in svn2git. This was fixe= d >>> in the code and then all converter runs produced the very same >>> results. >>> >>> The scenario that we have right now, is that one of the merge commits= >>> done about two weeks ago is being handled different by svn2git w/ svn= >>> v1.8 vs. svn v1.9 and I haven't investigated yet how the API's >>> behavior changed to cause this. I'm afraid I also swapped out all my >>> knowledge about svn2git internals and will have to redo this all from= >>> scratch :/ >>> >>> Your suggestion could only work, if we hard-code this svn revision >>> special handling into svn2git, either in the code or by providing mor= e >>> mappings and rules to the process. svn2git should run hermetic and no= t >>> poke at github's commits to see how things were handled in the past. >>> It has to be self-sufficient and must not depend on github. >>> >>> This would also only work, if the "breakage" window was very small, >>> but it is already about two weeks long and will surely increase till = I >>> find the proper fix. >>> >>> So, to take a stand here: this sort of kludge is unlikely to ever >>> happen. Git commit hashes *might* change in the future. I really don'= t >>> see how this is a big deal anyway. It happened once and I'm trying t= o >>> have it never happen again. But why are people afraid of this >>> happening? Every "official" git commit is tagged with a SVN revision >>> and the contents of those revisions are obviously correct (just not >>> the ancestry and the commit objects, possibly). So it would be easy t= o >>> write a script that replays VendorA's git history and swaps out the >>> new official commits for the old official commits. There would be no >>> merge conflicts. >>> >>> I can see how this would be annoying if you have 100 developers and >>> dozens of branches that are far from mainline FreeBSD. But I'm sure >>> these companies that depend on git will come forward and donate some >>> of their developer manpower to help me with keeping the converter >>> stable/deterministic. Right? Right? :) :) >>> >>> Cheers, >>> Uli >> >> Quick update: doc is so far unaffected by svn 1.9, but for ports, the >> drift happened as of Jul 18, so you'd need to special case a lot of >> commits. >> >> Here's the same commit, and the difference between 1.8 and 1.9: >> >> % git cat-file commit 803795d >> tree 7fc83aba022834da5c218114b09ad4640735bcc0 >> parent c96fb0418e545a569b5975b4d878a30a948c29d5 >> author olgeni 1437203525 +0000 >> committer olgeni 1437203525 +0000 >> >> Upgrade to version 0.4.1. >> % git cat-file commit 61ca43b >> tree 7fc83aba022834da5c218114b09ad4640735bcc0 >> parent c96fb0418e545a569b5975b4d878a30a948c29d5 >> author olgeni 1437203529 +0000 >> committer olgeni 1437203529 +0000 >> >> Upgrade to version 0.4.1. >> >> >> In case you don't see it, there's a 4s difference in the timestamps >> for authoring and committing. Here's the original: >> >> % svn log -vc392405 svn://svn.freebsd.org/ports >> ----------------------------------------------------------------------= -- >> r392405 | olgeni | 2015-07-18 09:12:05 +0200 (Sat, 18 Jul 2015) | 2 li= nes >> Changed paths: >> M /head/www/elixir-maru/Makefile >> M /head/www/elixir-maru/distinfo >> >> Upgrade to version 0.4.1. >> >> ----------------------------------------------------------------------= -- >> >> So yeah, svn 1.9 returned a timestamp that was off by 4s. WTF? >> >> For base it's actually even more complicated than I had thought so >> far. But let's take this one step at time ... >=20 > An update, which you won't like to hear: >=20 > SVN v1.9 is totally innocent, the API changed a little and has been > patched, this is not the source of the difference between the > currently published repo and a clean run. The difference stems from > the fact that the svnsync'ed copy on git.freebsd.org was poisoned and > is *NOT* in sync with our main repo. People tell me this is due to a > shortcoming of svnsync that can race and thus produce different > metadata for a commit, depending on when it is run. >=20 > This is a clusterfuck. >=20 > Both freebsd-base and freebsd-ports are no longer reproducible by > third-parties. It is only a matter of time when freebsd-doc is > affected. >=20 > clusteradm@ sadly has remained rather silent on this issue and unless > we can move the mirroring to rsync or syncthing or whatever I don't > see how the project can continue to provide a so-called git "mirror" >=20 Running svnsync in 2 places and then calling them mirrors seems odd. It's only needed once. (svnsync hurts global warming too). Then just rsync or use the git mirroring features. --=20 Regards, Bryan Drewery --KIw4nppIcKxsRKMVRwiWAsIG3FSmtXmw6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWYe9DAAoJEDXXcbtuRpfPMpIIAM0eaiH62z729Usg40skt+Ys jrQqnWegG/AGi5ULgMBFlh7LivlmCPobnwQokX83aZEsBhUvPKtfQp7b9Y14QWO1 cful3FRd4VfK4ti2uI0FMHnKmvLyb2iEATSnUCdAf+J+zB4kK14kz2gGDOUrec2+ A83MGgk4bJFRi1wFeqtzO6ZfBjecQPyikXICxX+rNtYd8pMfuuepr2MyneISUzyv Whc40hYYdyw1AIGv1mtMJhn4VQkKwjiyhzjLmHUsm+RSDlAOoV0UY6EQeVnbXL/L msRpLxhB4qq5EghEjqbUuL8C5wkwt9JO/BrW0/hSQXuBHKRKiab2pPVxXCZ48Kg= =rPTF -----END PGP SIGNATURE----- --KIw4nppIcKxsRKMVRwiWAsIG3FSmtXmw6-- From owner-freebsd-current@freebsd.org Sat Dec 5 10:40:35 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A453A418B4 for ; Sat, 5 Dec 2015 10:40:35 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 851F11D97 for ; Sat, 5 Dec 2015 10:40:35 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: by mailman.ysv.freebsd.org (Postfix) id 85F4CA418B3; Sat, 5 Dec 2015 10:40:35 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 858AEA418B2 for ; Sat, 5 Dec 2015 10:40:35 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 4F0201D96 for ; Sat, 5 Dec 2015 10:40:34 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.55.3]) by phk.freebsd.dk (Postfix) with ESMTP id 9E1F74F8A4 for ; Sat, 5 Dec 2015 10:40:27 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.15.2/8.15.2) with ESMTP id tB5AeQXJ063845 for ; Sat, 5 Dec 2015 10:40:27 GMT (envelope-from phk@phk.freebsd.dk) To: current@freebsd.org Subject: dhclient/unbound_local/forward.conf From: Poul-Henning Kamp MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <63843.1449312026.1@critter.freebsd.dk> Date: Sat, 05 Dec 2015 10:40:26 +0000 Message-ID: <63844.1449312026@critter.freebsd.dk> X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 10:40:35 -0000 I had my (-current) laptop on a couple of crippled guest nets this week. DNS didn't work. I found out that the "forward.conf" file, which should point local_unbound at the DNS server from the DHCP lease, is put in /etc/unbound/forward.conf where unbound will not find it. Should it be in /etc/unbound/conf.d/forward.conf, or should forward.conf be explicitly included from unbound.conf ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-current@freebsd.org Sat Dec 5 22:57:06 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC906A425EA for ; Sat, 5 Dec 2015 22:57:06 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 87B3E17DC for ; Sat, 5 Dec 2015 22:57:06 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6B5CEA425E9; Sat, 5 Dec 2015 22:57:06 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AFA8A425E8 for ; Sat, 5 Dec 2015 22:57:06 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mail-wm0-x22b.google.com (mail-wm0-x22b.google.com [IPv6:2a00:1450:400c:c09::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EA8EA17B5 for ; Sat, 5 Dec 2015 22:57:05 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by wmww144 with SMTP id w144so100853951wmw.1 for ; Sat, 05 Dec 2015 14:57:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hardenedbsd-org.20150623.gappssmtp.com; s=20150623; h=mime-version:date:message-id:subject:from:to:cc:content-type; bh=VilGaPoiWheeUXCxrixe+2JVI8nEMUsBTxS8onKaSbQ=; b=PXrjE7zQ3I6ko3jIA8We4grKhXW/tygzbuGtOp2riENq89ilIwWMjxfQNAChD24iKU l9jttRfFYgvkpei70D3Af6f9a0/snDVuchRlZwWS4/Yyoc31ROqknFr5MbR5JIdLxX5W 7nlQiQQb2vEU3RR42w5jhZUlAFcBivEcPOCAT3f5A4O8ecUpx67T9UsbzIgsYwPUwVxM jMpFAaAgWV/o11WaDFnvBRF8M8oq4iDbPel4gjRruajkFp+XPYAb0pVcr/YhXCPEu0uF /JatRpJ+A73ZS6kb2gmaV4TzrHfn6K8cVHREGx2ORXAaH8kyn5NATHZYrN+ydt3uEXii LbxQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to:cc :content-type; bh=VilGaPoiWheeUXCxrixe+2JVI8nEMUsBTxS8onKaSbQ=; b=EYQlfzpeF1qptKoItSwtZPvYs1QO1MqsGEal7gJYSLKoR1/1TAEmujy5WCKzocFye6 PzoqLjZEozNpZUE2I90S8gIElrHUjqi+qU7XZ5dMRJY877JYR+2FeAgtGDFMiVZjGgqx E1Ew+X7nI6pvcCaK2bjNUwIXQjhLyVaV+gaktTz7qgOuYc4pYraqiGGEvR5o2kVoE+9n wfPN6R7xtmchfj4RmN+36vfBTecY1gQNGen2rGzqJErZC/qZ0zxDyJoB/IucbTlK5jsR NukPig8LolpcHwsR/zY9SHGWRNPjf7hBp2IxsiKhqChiDkOQ59uYtRWe8Xi0npy1FhbF 4Rrg== X-Gm-Message-State: ALoCoQmTlo6wti+N3lAH7q+Fj5VnXY/i+gMVYUZEPbWwhCZvpE6DwwLK+EqsRKYAjQv5KWnuAohTqIJBLWf1xDYdSTNrhyGzJQ7rgnsiNEWa/3bnK1GwRys= MIME-Version: 1.0 X-Received: by 10.28.171.134 with SMTP id u128mr13244333wme.22.1449356223552; Sat, 05 Dec 2015 14:57:03 -0800 (PST) Received: by 10.194.85.167 with HTTP; Sat, 5 Dec 2015 14:57:03 -0800 (PST) Date: Sat, 5 Dec 2015 23:57:03 +0100 Message-ID: Subject: unable to select wireless interface during install time on 11-CURRENT after the wireless subsystem rewrite From: Oliver Pinter To: current@freebsd.org Cc: wireless@freebsd.org, Gleb Smirnoff , Adrian Chadd Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 22:57:06 -0000 Hi all! After the "recent" wireless rewrite from Gleb, the enumeration of wireless interfaces has gone from the bsdinstall. This line: https://github.com/HardenedBSD/hardenedBSD/blob/hardened/current/master/usr.sbin/bsdinstall/scripts/netconfig#L52 return no entry, because the wlan interface not exists.