FreeBSD_HEAD_amd64_gcc4.9 - Build #1119 - Still Failing: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/1119/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/1119/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/1119/console Change summaries: 296494 by np: cxgbe(4): Many new functions in the shared code, unused at this time. Obtained from: Chelsio Communications 296493 by np: cxgbe(4): Use t4_link_down_rc_str in shared code to decode the reason the link is down, instead of doing it in OS specific code. 296492 by sgalabov: Add MIPS_INTRNG to sys/conf/options.mips This was somehow missed in the commit of https://reviews.freebsd.org/D5182 although it was in the original diff submitted for review. Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D5568 296491 by np: cxgbe(4): Updates to shared routines that get/set various parameters via the firmware. Obtained from: Chelsio Communications 296490 by np: cxgbe(4): Remove __devinit and SPEED_<foo> as part of catch up with internal shared code. Obtained from: Chelsio Communications 296489 by np: cxgbe(4): Updates to the shared routines that deal with the serial EEPROM, flash, and VPD. Obtained from: Chelsio Communications 296488 by np: cxgbe(4): Updates to mailbox routines in the shared code. Obtained from: Chelsio Communications 296485 by np: cxgbe(4): Update the interrupt handlers for hardware errors. Obtained from: Chelsio Communications 296481 by np: cxgbe(4): Overhaul the shared code that deals with the chip's TP block, which is responsible for filtering and RSS. Add the ability to use filters that match on PF/VF (aka "VNIC id") while here. This is mutually exclusive with filtering on outer VLAN tag with Q-in-Q. Sponsored by: Chelsio Communications 296480 by markj: Fix a couple of silly mistakes in r291962. - Handle the case where no DOF helper is provided. This occurs with the currently-unused DTRACEHIOC_ADD ioctl. - Fix some checks that prevented the loading DOF in the (non-default) lazyload mode. 296479 by markj: Fix fasttrap tracepoint locking. Upstream, tracepoints are protected by per-CPU mutexes. An unlinked tracepoint may be freed once all the tracepoint mutexes have been acquired and released - this is done in fasttrap_mod_barrier(). This mechanism was not properly ported: in some places, the proc lock is used in place of a tracepoint lock, and in others the locking is omitted entirely. This change implements tracepoint locking with an rmlock, where the read lock is used in fasttrap probe context. As a side effect, this fixes a recursion on the proc lock when the raise action is used from a userland probe. MFC after: 1 month 296478 by np: cxgbe(4): Add a struct sge_params to store per-adapter SGE parameters. Move the code that reads all the parameters to t4_init_sge_params in the shared code. Use these per-adapter values instead of globals. Sponsored by: Chelsio Communications 296477 by markj: Remove the fasttrap implementation for sparc. Other machine-dependent code required for DTrace on sparc is not present in the tree, so there's no point to keeping the fasttrap code. 296476 by rrs: Fix a sneaky bug where we were missing an extern to get the rxt threshold.. and thus created our own defaulted to 0 :-( Sponsored by: Netflix Inc 296475 by markj: MFV r296306: 6604 harden DIF bounds checking Reviewed by: Alex Wilson <alex.wilson_at_joyent.com> Reviewed by: Patrick Mooney <patrick.mooney_at_joyent.com> Reviewed by: Dan McDonald <danmcd_at_omniti.com> Approved by: Robert Mustacchi <rm_at_joyent.com> Author: Bryan Cantrill <bryan_at_joyent.com> illumos/illumos-gate_at_1c0cef67dba05c477dba779bc99224693e809a14 MFC after: 2 weeks 296474 by emaste: libc/{i386,amd64}: Do not export .cerror when building WITHOUT_SYMVER Further to r240152 (i386) and r240178 (amd64), hide the .cerror symbol so that it is not exported if symbol versioning is not in use. Without this change WITHOUT_SYMVER libc contains .text relocations for .cerror, as described in LLVM PR 26813 (http://llvm.org/pr26813). This is a no-op for the regular build as the symbol version script already controls .cerror visibility. PR: 207712 Submitted by: Rafael EspĂndola Reviewed by: jilles, kib Differential Revision: https://reviews.freebsd.org/D5571 296473 by bdrewery: Add missing break for r296472. This was lost in git rebasing, though it has no functional change. X-MFC-With: r296472 MFC after: 1 week 296472 by bdrewery: Require kldunload -f to unload. Code may still be executing from the wrappers at unload time and thus is not generally safe to unload. Converting the wrappers to use EVENTHANDLER(9) will allow this to safely drain on active threads in hooks. More work on EVENTHANDLER(9) is needed first. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division 296471 by np: cxgbe(4): Updated register dumps. - Get the list of registers to read during a regdump from the shared code instead of the OS specific code. This follows a similar move internally. The shared code includes the list for T6. - Update cxgbetool to be able to decode T5 VF, T6, and T6 VF register dumps (and catch up with some updates to T4 and T5 register decode). Obtained from: Chelsio Communications Sponsored by: Chelsio Communications 296470 by bdrewery: Only call bwillwrite() for logging to vnodes, as other fo_write() calls do. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division 296468 by emaste: tunefs: clear the entire previous label when setting a new one strlcpy(3) null terminates but does not zero-fill the buffer, so would leave beind any portion of the previous volume label longer than the new one. Note that tunefs only allows -L args up to a length of MAXVOLLEN-1, so the stored label will be null-terminated (whether or not required by UFS). Reviewed by: imp Sponsored by: The FreeBSD Foundation 296467 by kib: Convert all panics from the link_elf_obj kernel linker for object files format into printfs and errors to caller. Some leaks of resources are there, but the same leaks are present in other error pathes. With the change, the kernel at least boots even when module with unexpected or corrupted ELF structure is preloaded. Sponsored by: The FreeBSD Foundation MFC after: 2 weeks 296466 by imp: Don't install debug symbols onto embedded images... 296455 by jtl: As reported on the transport_at_ and current_at_ mailing lists, the FreeBSD TCP stack is not compliant with RFC 7323, which requires that TCP stacks send a timestamp option on all packets (except, optionally, RSTs) after the session is established. This patch adds that support. It also adds a TCP signature option to the packet, if appropriate. PR: 206047 Differential Revision: https://reviews.freebsd.org/D4808 Reviewed by: hiren MFC after: 2 weeks Sponsored by: Juniper Networks 296454 by jtl: Some cleanup in tcp_respond() in preparation for another change: - Reorder variables by size - Move initializer closer to where it is used - Remove unneeded variable Differential Revision: https://reviews.freebsd.org/D4808 Reviewed by: hiren MFC after: 2 weeks Sponsored by: Juniper Networks 296453 by hselasky: Run the LinuxKPI PCI shutdown handler free of the Giant mutex. MFC after: 1 week Sponsored by: Mellanox Technologies 296449 by mav: Update meaning of -n argument. Submitted by: Dmitry Luhtionov <dmitryluhtionov_at_gmail.com> MFC after: 1 week The end of the build log: [...truncated 97573 lines...] building shared library libpanel.so.5 /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/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libpanel.so.5.full -Wl,-soname,libpanel.so.5 `NM='/usr/local/x86_64-freebsd/bin/nm' NMFLAGS='' lorder p_above.So p_below.So p_bottom.So p_delete.So p_hidden.So p_hide.So p_move.So p_new.So p_replace.So p_show.So p_top.So p_update.So p_user.So p_win.So panel.So | tsort -q` -lncurses --- libpanel.so.5.debug --- /usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug libpanel.so.5.full libpanel.so.5.debug --- libpanel.so.5 --- /usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=libpanel.so.5.debug libpanel.so.5.full libpanel.so.5 --- all_subdir_lib/libcuse --- ===> lib/libcuse (all) --- .depend --- echo libcuse.so.1.full: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib/libpthread.a >> .depend --- cuse_lib.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/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -D_GNU_SOURCE -MD -MP -MF.depend.cuse_lib.o -MTcuse_lib.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcuse/cuse_lib.c -o cuse_lib.o --- all_subdir_lib/ncurses --- --- all_subdir_lib/ncurses/menu --- --- m_win.So --- /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/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -g -O2 -pipe -I. -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../ncurses -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../ncurses -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../ncurses -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../../../contrib/ncurses/include -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../../../contrib/ncurses/menu -MD -MP -MF.depend.m_win.So -MTm_win.So -std=gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu/../../../contrib/ncurses/menu/m_win.c -o m_win.So --- all_subdir_lib/atf --- --- build.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -I/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1 -std=gnu++11 -L/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/../lib/libc++ --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -g -O2 -pipe -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf -I/builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/../libatf-c -I. -DHAVE_CONFIG_H -MD -MP -MF.depend.build.So -MTbuild.So -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wpointer-arith -Wno-uninitialized -c /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp -o build.So --- all_subdir_lib/ncurses --- --- libmenu.a --- building static menu library /usr/local/x86_64-freebsd/bin/ar -crD libmenu.a `NM='/usr/local/x86_64-freebsd/bin/nm' NMFLAGS='' lorder m_attribs.o m_cursor.o m_driver.o m_format.o m_global.o m_hook.o m_item_cur.o m_item_nam.o m_item_new.o m_item_opt.o m_item_top.o m_item_use.o m_item_val.o m_item_vis.o m_items.o m_new.o m_opts.o m_pad.o m_pattern.o m_post.o m_req_name.o m_scale.o m_spacing.o m_sub.o m_userptr.o m_win.o | tsort -q` /usr/local/x86_64-freebsd/bin/ranlib -D libmenu.a --- libmenu.so.5.full --- building shared library libmenu.so.5 /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/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/lib --sysroot=/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libmenu.so.5.full -Wl,-soname,libmenu.so.5 `NM='/usr/local/x86_64-freebsd/bin/nm' NMFLAGS='' lorder m_attribs.So m_cursor.So m_driver.So m_format.So m_global.So m_hook.So m_item_cur.So m_item_nam.So m_item_new.So m_item_opt.So m_item_top.So m_item_use.So m_item_val.So m_item_vis.So m_items.So m_new.So m_opts.So m_pad.So m_pattern.So m_post.So m_req_name.So m_scale.So m_spacing.So m_sub.So m_userptr.So m_win.So | tsort -q` -lncurses --- all_subdir_lib/clang --- *** [CFG.o] Error code 1 make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/clang/libclanganalysis 1 error make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/clang/libclanganalysis *** [all_subdir_lib/clang/libclanganalysis] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/clang 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/clang *** [all_subdir_lib/clang] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib --- all_subdir_lib/atf --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/memory:600:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/algorithm:628, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:439, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.hpp:29, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/typeinfo: In member function 'size_t std::type_info::hash_code() const': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/typeinfo:116:62: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] {return *reinterpret_cast<const size_t*>(&__type_name);} ^ --- all_subdir_lib/ncurses --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses/menu *** [all_subdir_lib/ncurses/menu] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/ncurses *** [all_subdir_lib/ncurses] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib --- all_subdir_lib/libcuse --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/libcuse *** [all_subdir_lib/libcuse] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib --- all_subdir_lib/atf --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:434:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.hpp:29, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/stdexcept: At global scope: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/stdexcept:56:24: warning: '__unused__' attribute ignored [-Wattributes] const char *__imp_ _LIBCPP_UNUSED; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.hpp:29:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:750:1: warning: 'static int std::__1::char_traits<char16_t>::compare(const char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::compare(const char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:729:29: warning: conflicts with previous declaration here [-Wattributes] static int compare(const char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:764:1: warning: 'static size_t std::__1::char_traits<char16_t>::length(const char_type*)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::length(const char_type* __s) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:730:29: warning: conflicts with previous declaration here [-Wattributes] static size_t length(const char_type* __s); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:774:1: warning: 'static const char16_t* std::__1::char_traits<char16_t>::find(const char_type*, size_t, const char_type&)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::find(const char_type* __s, size_t __n, const char_type& __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:731:29: warning: conflicts with previous declaration here [-Wattributes] static const char_type* find(const char_type* __s, size_t __n, const char_type& __a); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:787:1: warning: 'static char16_t* std::__1::char_traits<char16_t>::move(std::__1::char_traits<char16_t>::char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::move(char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:732:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* move(char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:807:1: warning: 'static char16_t* std::__1::char_traits<char16_t>::copy(std::__1::char_traits<char16_t>::char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::copy(char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:733:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:818:1: warning: 'static char16_t* std::__1::char_traits<char16_t>::assign(std::__1::char_traits<char16_t>::char_type*, size_t, std::__1::char_traits<char16_t>::char_type)': visibility attribute ignored because it [-Wattributes] char_traits<char16_t>::assign(char_type* __s, size_t __n, char_type __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:734:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* assign(char_type* __s, size_t __n, char_type __a); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:863:1: warning: 'static int std::__1::char_traits<char32_t>::compare(const char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::compare(const char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:842:29: warning: conflicts with previous declaration here [-Wattributes] static int compare(const char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:877:1: warning: 'static size_t std::__1::char_traits<char32_t>::length(const char_type*)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::length(const char_type* __s) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:843:29: warning: conflicts with previous declaration here [-Wattributes] static size_t length(const char_type* __s); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:887:1: warning: 'static const char32_t* std::__1::char_traits<char32_t>::find(const char_type*, size_t, const char_type&)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::find(const char_type* __s, size_t __n, const char_type& __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:844:29: warning: conflicts with previous declaration here [-Wattributes] static const char_type* find(const char_type* __s, size_t __n, const char_type& __a); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:900:1: warning: 'static char32_t* std::__1::char_traits<char32_t>::move(std::__1::char_traits<char32_t>::char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::move(char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:845:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* move(char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:920:1: warning: 'static char32_t* std::__1::char_traits<char32_t>::copy(std::__1::char_traits<char32_t>::char_type*, const char_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::copy(char_type* __s1, const char_type* __s2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:846:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:931:1: warning: 'static char32_t* std::__1::char_traits<char32_t>::assign(std::__1::char_traits<char32_t>::char_type*, size_t, std::__1::char_traits<char32_t>::char_type)': visibility attribute ignored because it [-Wattributes] char_traits<char32_t>::assign(char_type* __s, size_t __n, char_type __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:847:29: warning: conflicts with previous declaration here [-Wattributes] static char_type* assign(char_type* __s, size_t __n, char_type __a); ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__mutex_base:16:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:138, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/fs.hpp:35, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/process.hpp:41, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:35: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/system_error:345:1: warning: type attributes ignored after type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:138, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/fs.hpp:35, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/process.hpp:41, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:35: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__mutex_base:264:1: warning: type attributes ignored after type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:138:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/fs.hpp:35, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/process.hpp:41, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:35: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:387:1: warning: type attributes ignored after type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/string:434:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.hpp:29, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/locale:2844:1: warning: type attributes ignored after type is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<char, false>) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/locale:2845:1: warning: type attributes ignored after type is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<char, true>) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/locale:2846:1: warning: type attributes ignored after type is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t, false>) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/locale:2847:1: warning: type attributes ignored after type is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t, true>) ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:142:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/fs.hpp:35, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/process.hpp:41, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build.cpp:35: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/bitset:636:54: warning: attributes ignored on template instantiation [-Wattributes] template <size_t _Size> struct _LIBCPP_TYPE_VIS_ONLY hash<bitset<_Size> >; ^ A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ *** [all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf *** [all_subdir_lib/atf] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 4 errors make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [lib__L] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [libraries] 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 *** [_libraries] 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 - AnyReceived on Tue Mar 08 2016 - 08:48:02 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:03 UTC