From owner-freebsd-current@FreeBSD.ORG Wed May 20 07:58:51 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DC41175; Wed, 20 May 2015 07:58:51 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 68A3F1F2C; Wed, 20 May 2015 07:58:51 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 492598D6; Wed, 20 May 2015 07:58:51 +0000 (UTC) Date: Wed, 20 May 2015 07:58:47 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-current@freebsd.org, jhb@FreeBSD.org, hiren@FreeBSD.org, bapt@FreeBSD.org, melifaro@FreeBSD.org, ganbold@FreeBSD.org, imp@FreeBSD.org, emaste@FreeBSD.org Message-ID: <1401430171.15.1432108731267.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_HEAD #2778 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_HEAD 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: Wed, 20 May 2015 07:58:51 -0000 See Changes: [ganbold] D2432 (Patch for Amlogic single core PIC) moved the SMP option ou= t of AML8726 and into board specific config files since some boards (e.g. YYHD18) use the aml8726-m3 which only have a single core. r283057 applied most of D2432, however while it removed SMP from AML8726, it missed adding the SMP option to the board specific config files. Differential Revision:=09https://reviews.freebsd.org/D2589 Submitted by:=09John Wehle [hiren] Add a new sysctl net.inet.tcp.hostcache.purgenow=3D1 to expire and = purge all entries in hostcache immediately. In collaboration with:=09bz, rwatson MFC after:=091 week Relnotes:=09yes Sponsored by:=09Limelight Networks [bapt] Reduce overlinking. Because of libdtrace there is still a bit a overlinking but nothing we can = deal with easily [bapt] Correctly link libdtrace and convert to LIBADD Make dtrace only link to libdtrace [bapt] Fix underlinking [bapt] Register libdtrace and its direct and indirect dependencies Register librdlt_db Register libproc dependencies Register libctf dependencies [bapt] Convert to LIBADD [bapt] Convert to LIBADD Remove dependency on pthread, it is not needed [imp] Re-select the SD card before getting the SD status. On a couple Atmel boards, this prevents some error messages during enumeration and also gives us the correct erase block size. They appear to be harmless elsewhere. # Note: we treat too many commands as 'can't fail' if they don't work # after a couple of retries. We need to fix that, but not today... [imp] Add NFS server to mix (for easier, in-place updates). Move to partition 2 for root (since partition 1 is reserved for FAT files the Atmel ROMs can load). [imp] Improve comment about unmapped I/O and fix typos. Submitted by: Matteo Riondato MFC After: 2 days [emaste] All FreeBSD platforms are elf: move i386-elf to i386 This was a leftover from when we had both i386 a.out and ELF. Reviewed by:=09kib, imp Sponsored by:=09The FreeBSD Foundation Differential Revision:=09https://reviews.freebsd.org/D2591 [hiren] Correct the wording as we are increasing the window size. Reviewed by:=09jhb Sponsored by:=09Limelight Networks [jhb] Fix two bugs that could result in PMC sampling effectively stopping. In both cases, the the effect of the bug was that a very small positive number was written to the counter. This means that a large number of events needed to occur before the next sampling interrupt would trigger. Even with very frequently occurring events like clock cycles wrapping all the way around could take a long time. Both bugs occurred when updating the saved reload count for an outgoing thread on a context switch. First, the counter-independent code compares the current reload count against the count set when the thread switched in and generates a delta to apply to the saved count. If this delta causes the reload counter to go negative, it would add a full reload interval to wrap it around to a positive value. The fix is to add the full reload interval if the resulting counter is zero. Second, occasionally the raw counter value read during a context switch has actually wrapped, but an interrupt has not yet triggered. In this case the existing logic would return a very large reload count (e.g. 2^48 - 2 if the counter had overflowed by a count of 2). This was seen both for fixed-function and programmable counters on an E5-2643. Workaround this case by returning a reload count of zero. PR:=09=09198149 Differential Revision:=09https://reviews.freebsd.org/D2557 Reviewed by:=09emaste MFC after:=091 week Sponsored by:=09Norse Corp, Inc. [jhb] Use the proper mask when reloading sampling PMCs for Core CPUs. Differential Revision:=09https://reviews.freebsd.org/D2492 Reviewed by:=09emaste MFC after:=091 month [jhb] Use fixed enum values for PMC_CLASSES(). This removes one of the frequent causes of ABI breakage when new CPU types are added to hwpmc(4). Differential Revision:=09https://reviews.freebsd.org/D2586 Reviewed by:=09davide, emaste, gnn (earlier version) MFC after:=092 weeks [jhb] Remove executable property from several ixl(4) source files. Differential Revision:=09https://reviews.freebsd.org/D2583 Reviewed by:=09erj [melifaro] Bring back support for checking tables via "ipfw -n". Currently we have different table key types which can easily interfere with each other (numbers and IPv4 address, interface names and hostnames, flows and hostnames/addresses). This conflicts are solved by [auto-]creating _typed_ tables, so after table is created, only keys of given type can be inserted to that table. ipfw(8) consults with kernel about key/value type for particular table so it knows key/value interpretation. However, we have 2 cases (adding entries to non-existing table and parsing configuration file via `ipfw -n`) when kernel is unable to provide us table info we need. Fix the latter case by partially importing old `table_fill_xentry()` parse function responsible for guessing key typ= e. Sponsored by:=09Yandex LLC ------------------------------------------ [...truncated 98971 lines...] --- gkrb5_err.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c gkrb5_err.= c -o gkrb5_err.o --- cddl/lib__L --- --- dt_proc.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_proc.o --- kerberos5/lib__L --- --- gkrb5_err.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c gkrb5_err.c -o gkrb5_err.So --- import_name.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o import_name.o --- cddl/lib__L --- --- dt_program.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_program.o --- kerberos5/lib__L --- --- import_name.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o import_name.= So --- cddl/lib__L --- --- dt_provider.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_provider.o --- dt_regset.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_regset.o --- lib__L --- --- depend_subdir_libcalendar --- =3D=3D=3D> lib/libcalendar (depend) --- kerberos5/lib__L --- --- import_sec_context.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o import_sec_contex= t.o --- lib__L --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 --- kerberos5/lib__L --- --- import_sec_context.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o impor= t_sec_context.So --- lib__L --- --- depend_subdir_libcom_err --- =3D=3D=3D> lib/libcom_err (depend) --- cddl/lib__L --- --- dt_string.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_string.o --- lib__L --- --- depend_subdir_libcompat --- =3D=3D=3D> lib/libcompat (depend) --- cddl/lib__L --- --- dt_strtab.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_strtab.o --- lib__L --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -DLIBC_SCCS -DSYSLIBC_SCCS -I -std=3D= gnu99 In file included from :37: :42:2: warning: "this file includes = which is deprecated" [-W#warnings] #warning "this file includes which is deprecated" ^ 1 warning generated. --- kerberos5/lib__L --- --- indicate_mechs.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o indicate_mechs.o --- cddl/lib__L --- --- dt_subr.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_subr.o --- lib__L --- --- depend_subdir_libcrypt --- =3D=3D=3D> lib/libcrypt (depend) --- kerberos5/lib__L --- --- indicate_mechs.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o indicate_= mechs.So --- init.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o init.o --- lib__L --- --- depend_subdir_libdevctl --- =3D=3D=3D> lib/libdevctl (depend) --- cddl/lib__L --- --- dt_work.o --- --- dt_xlator.o --- --- dt_work.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_work.o --- dt_xlator.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dt_xlator.o --- lib__L --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 --- depend_subdir_libdevinfo --- =3D=3D=3D> lib/libdevinfo (depend) --- cddl/lib__L --- --- gmatch.o --- --- lib__L --- --- depend_subdir_libdwarf --- --- cddl/lib__L --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o gmatch.o --- lib__L --- =3D=3D=3D> lib/libdwarf (depend) --- depend_subdir_libdevinfo --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -std=3Dgnu99 --- cddl/lib__L --- --- dis_tables.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c -o dis_tables.o --- lib__L --- --- depend_subdir_libdwarf --- --- dwarf_funcs.c --- m4 -D SRCDIR=3D > dwarf_funcs.c --- kerberos5/lib__L --- --- init.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o init.So --- lib__L --- --- dwarf_pro_funcs.c --- m4 -D SRCDIR=3D > dwarf_pro_funcs.c --- cddl/lib__L --- --- dt_grammar.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c dt_gra= mmar.c -o dt_grammar.o --- lib__L --- --- dwarf_pro_pubnames.c --- m4 -D SRCDIR=3D > dwarf_pro_pubnames.c --- dwarf_pro_types.c --- m4 -D SRCDIR=3D > dwarf_pro_types.c --- dwarf_pro_vars.c --- m4 -D SRCDIR=3D > dwarf_pro_vars.c --- dwarf_pro_weaks.c --- m4 -D SRCDIR=3D > dwarf_pro_weaks.c --- dwarf_pubnames.c --- m4 -D SRCDIR=3D > dwarf_pubnames.c --- dwarf_pubtypes.c --- m4 -D SRCDIR=3D > dwarf_pubtypes.c --- dwarf_types.c --- m4 -D SRCDIR=3D > dwarf_types.c --- dwarf_vars.c --- m4 -D SRCDIR=3D > dwarf_vars.c --- dwarf_weaks.c --- m4 -D SRCDIR=3D > dwarf_weaks.c --- sys/elf32.h --- mkdir -p ln -sf sys/elf32.h --- sys/elf64.h --- mkdir -p ln -sf sys/elf64.h --- sys/elf_common.h --- mkdir -p ln -sf sys/elf_common.h --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I. -I -I -I -std=3Dgnu99 dwarf_funcs.c <= https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libdwarf/../../contrib/= elftoolchain/libdwarf/dwarf_loclist.c> dwarf_pro_funcs.c dwarf_pro_pubnames.c dwarf_pro_types.c= dwarf_pro_vars.c dwarf_pro_weaks.c dwarf_pubnames.c dwarf_pubtypes.c dwarf_types.c dwarf_vars.c dwarf_we= aks.c = <= https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libdwarf/../../contrib/= elftoolchain/libdwarf/libdwarf_rw.c> --- kerberos5/lib__L --- --- init_sec_context.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o init_sec_context.o --- cddl/lib__L --- --- dt_grammar.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I = -I -I -I -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-= pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wn= o-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wn= o-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-argumen= ts -c dt_grammar.c -o dt_grammar.So --- dt_lex.o --- cc -O2 -pipe -I -I -I -I -I -I -I -I= -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99 -fstack-pro= tector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-pragmas -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 -Wno-parentheses -Qunused-arguments -c dt_lex= .c -o dt_lex.o --- kerberos5/lib__L --- --- init_sec_context.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o init_se= c_context.So --- cddl/lib__L --- --- dt_lex.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I = -I -I -I -I -I -I -DDIS_MEM -DNEED_SOLARIS_BOOLEAN -std=3Dgnu99= -fstack-protector -Wsystem-headers -Werror -Wno-pointer-sign -Wno-unknown-= pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wn= o-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unu= sed-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wn= o-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-argumen= ts -c dt_lex.c -o dt_lex.So --- kerberos5/lib__L --- --- inquire_context.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o inquire_context.o --- inquire_context.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o inquire_= context.So --- inquire_cred.o --- cc -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -c -o inquire_cred.o --- cddl/lib__L --- --- libdtrace.a --- building static dtrace library --- lib__L --- --- depend_subdir_libelftc --- =3D=3D=3D> lib/libelftc (depend) --- cddl/lib__L --- ranlib -D libdtrace.a --- libdtrace.so.2 --- building shared library libdtrace.so.2 cc -fstack-protector -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-share= d-textrel -o libdtrace.so.2 -Wl,-soname,libdtrace.so.2 `NM=3D'nm' lorder = dt_aggregate.So dt_as.So dt_buf.So dt_cc.So dt_cg.So dt_consume.So dt_decl.= So dt_dis.So dt_dof.So dt_error.So dt_errtags.So dt_grammar.So dt_handle.So= dt_ident.So dt_isadep.So dt_inttab.So dt_lex.So dt_link.So dt_list.So dt_m= ap.So dt_module.So dt_names.So dt_open.So dt_options.So dt_parser.So dt_pcb= .So dt_pid.So dt_pq.So dt_pragma.So dt_print.So dt_printf.So dt_proc.So dt_= program.So dt_provider.So dt_regset.So dt_string.So dt_strtab.So dt_subr.So= dt_work.So dt_xlator.So gmatch.So dis_tables.So | tsort -q` -lctf -lelf = -lproc -lrtld_db -lpthread --- lib__L --- --- .depend --- rm -f .depend CC=3D'cc ' mkdep -f .depend -a -I -I -std=3Dgnu99 <= https://jenkins.freebsd.org/job/FreeBSD_HEAD/ws/lib/libelftc/../../contrib/= elftoolchain/libelftc/elftc_set_timestamps.c> --- kerberos5/lib__L --- --- inquire_cred.So --- cc -fpic -DPIC -O2 -pipe -I -I -I -I -I -I -I. -DHAVE_CONFIG_= H -I -std=3Dgnu99 -fstack-protector -Qunused-arguments -= c -o inquire_cre= d.So --- cddl/lib__L --- : cannot find -lproc cc: error: linker command failed with exit code 1 (use -v to see invocation= ) *** [libdtrace.so.2] Error code 1 make[5]: stopped in 1 error make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in --- lib__L --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [depend_subdir_libelftc] Error code 2 make[4]: stopped in --- kerberos5/lib__L --- A failure has been detected in another branch of the parallel make make[5]: stopped in *** [_sub.all] Error code 2 make[4]: stopped in 1 error make[4]: stopped in --- lib__L --- --- depend_subdir_libdwarf --- echo libdwarf.so.4: >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in *** [depend_subdir_libdwarf] Error code 2 make[4]: stopped in 2 errors make[4]: stopped in A failure has been detected in another branch of the parallel make make[3]: stopped in *** [libraries] Error code 2 make[2]: stopped in 1 error make[2]: stopped in *** [_libraries] Error code 2 make[1]: stopped in 1 error make[1]: stopped in *** [buildworld] Error code 2 make: stopped in 1 error make: stopped in Build step 'Execute shell' marked build as failure