Date: Fri, 02 Jun 2017 12:41:35 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 219705] buildworld A failure has been detected in another branch of the parallel make Message-ID: <bug-219705-8-PJ1tdfAYkP@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-219705-8@https.bugs.freebsd.org/bugzilla/> References: <bug-219705-8@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219705 --- Comment #3 from hakotani000@gmail.com --- Thank you reply i try without -j16 , only 'make buildworld' then no error finished. another try edit /usr/src/lib/Makefile line 197 comment out . and run 'make -j16 buildworld' then no error finished. 1 # @(#)Makefile 8.1 (Berkeley) 6/4/93 2 # $FreeBSD$ 3=20=20=20=20=20=20=20 4 .include <src.opts.mk> 5=20=20=20=20=20=20=20 6 # The SUBDIR_BOOTSTRAP list is a small set of libraries which are u= sed by many 7 # of the other libraries. These are built first with a .WAIT betwe= en them 8 # and the main list to avoid needing a SUBDIR_DEPEND line on every library 9 # naming just these few items. 10=20=20=20=20=20=20 11 SUBDIR_BOOTSTRAP=3D \ 12 csu \ 13 .WAIT \ 14 libc \ 15 libc_nonshared \ 16 libcompiler_rt \ 17 ${_libclang_rt} \ 18 ${_libcplusplus} \ 19 ${_libcxxrt} \ 20 libelf \ 21 msun 22=20=20=20=20=20=20 23 # The main list; please keep these sorted alphabetically. 24=20=20=20=20=20=20 25 SUBDIR=3D ${SUBDIR_BOOTSTRAP} \ 26 .WAIT \ 27 libalias \ 28 libarchive \ 29 libauditd \ 30 libbegemot \ 31 libblocksruntime \ 32 libbsdstat \ 33 libbsm \ 34 libbz2 \ 35 libcalendar \ 36 libcam \ 37 libcapsicum \ 38 libcompat \ 39 libcrypt \ 40 libdevctl \ 41 libdevinfo \ 42 libdevstat \ 43 libdwarf \ 44 libedit \ 45 libevent \ 46 libexecinfo \ 47 libexpat \ 48 libfetch \ 49 libfigpar \ 50 libgeom \ 51 libifconfig \ 52 libipsec \ 53 libjail \ 54 libkiconv \ 55 libkvm \ 56 liblzma \ 57 libmemstat \ 58 libmd \ 59 libmt \ 60 lib80211 \ 61 libnetbsd \ 62 libnv \ 63 libopenbsd \ 64 libopie \ 65 libpam \ 66 libpcap \ 67 libpjdlog \ 68 ${_libproc} \ 69 libprocstat \ 70 librpcsvc \ 71 librss \ 72 librt \ 73 ${_librtld_db} \ 74 libsbuf \ 75 libsmb \ 76 libsqlite3 \ 77 libstand \ 78 libstdbuf \ 79 libstdthreads \ 80 libsysdecode \ 81 libtacplus \ 82 libthread_db \ 83 libucl \ 84 libufs \ 85 libugidfw \ 86 libulog \ 87 libutil \ 88 ${_libvgl} \ 89 libwrap \ 90 libxo \ 91 liby \ 92 libz \ 93 libzstd \ 94 ncurses 95=20=20=20=20=20=20 96 # Inter-library dependencies. When the makefile for a library cont= ains LDADD 97 # libraries, those libraries should be listed as build order dependencies here. 98=20=20=20=20=20=20 99 SUBDIR_DEPEND_libarchive=3D libz libbz2 libexpat liblzma libmd 100 SUBDIR_DEPEND_libauditdm=3D libbsm 101 SUBDIR_DEPEND_libbsnmp=3D ${_libnetgraph} 102 SUBDIR_DEPEND_libc++:=3D libcxxrt 103 SUBDIR_DEPEND_libc=3D libcompiler_rt 104 SUBDIR_DEPEND_libcam=3D libsbuf 105 SUBDIR_DEPEND_libcasper=3D libnv 106 SUBDIR_DEPEND_libdevstat=3D libkvm 107 SUBDIR_DEPEND_libdpv=3D libfigpar ncurses libutil 108 SUBDIR_DEPEND_libedit=3D ncurses 109 SUBDIR_DEPEND_libgeom=3D libexpat libsbuf 110 SUBDIR_DEPEND_librpcsec_gss=3D libgssapi 111 SUBDIR_DEPEND_libmagic=3D libz 112 SUBDIR_DEPEND_libmemstat=3D libkvm 113 SUBDIR_DEPEND_libopie=3D libmd 114 SUBDIR_DEPEND_libpam=3D libcrypt libopie ${_libradius} librpcsvc libtacplus libutil ${_libypclnt} ${_libcom_err}=20 115 SUBDIR_DEPEND_libpjdlog=3D libutil 116 SUBDIR_DEPEND_libprocstat=3D libkvm libutil 117 SUBDIR_DEPEND_libradius=3D libmd 118 SUBDIR_DEPEND_libsmb=3D libkiconv 119 SUBDIR_DEPEND_libtacplus=3D libmd 120 SUBDIR_DEPEND_libulog=3D libmd 121 SUBDIR_DEPEND_libunbound=3D ${_libldns} 122 SUBDIR_DEPEND_liblzma=3D ${_libthr} 123=20=20=20=20=20 124 # NB: keep these sorted by MK_* knobs 125=20=20=20=20=20 126 SUBDIR.${MK_ATM}+=3D libngatm 127 SUBDIR.${MK_BLACKLIST}+=3Dlibblacklist 128 SUBDIR.${MK_BLUETOOTH}+=3Dlibbluetooth libsdp 129 SUBDIR.${MK_BSNMP}+=3D libbsnmp 130 SUBDIR.${MK_CASPER}+=3D libcasper 131=20=20=20=20=20 132 .if !defined(COMPAT_32BIT) && !defined(COMPAT_SOFTFP) 133 SUBDIR.${MK_CLANG}+=3D clang 134 .endif 135=20=20=20=20=20 136 SUBDIR.${MK_CUSE}+=3D libcuse 137 SUBDIR.${MK_CXX}+=3D libdevdctl 138 SUBDIR.${MK_TOOLCHAIN}+=3Dlibelftc libpe 139 SUBDIR.${MK_DIALOG}+=3D libdpv 140 SUBDIR.${MK_FILE}+=3D libmagic 141 SUBDIR.${MK_GPIO}+=3D libgpio 142 SUBDIR.${MK_GSSAPI}+=3D libgssapi librpcsec_gss 143 SUBDIR.${MK_ICONV}+=3D libiconv_modules 144 SUBDIR.${MK_KERBEROS_SUPPORT}+=3D libcom_err 145 SUBDIR.${MK_LDNS}+=3D libldns 146=20=20=20=20=20 147 # The libraries under libclang_rt can only be built by clang, and o= nly make 148 # sense to build when clang is enabled at all. Furthermore, they c= an only be 149 # built for certain architectures. 150 .if ${MK_CLANG} !=3D "no" && ${COMPILER_TYPE} =3D=3D "clang" && \ 151 (${MACHINE_CPUARCH} =3D=3D "aarch64" || ${MACHINE_CPUARCH} =3D= =3D "amd64" || \ 152 (${MACHINE_CPUARCH} =3D=3D "arm" && ${MACHINE_ARCH} !=3D "armeb= ") || \ 153 (${MACHINE_CPUARCH} =3D=3D "i386")) 154 _libclang_rt=3D libclang_rt 155 .endif 156=20=20=20=20=20 157 .if ${MK_LIBCPLUSPLUS} !=3D "no" 158 _libcxxrt=3D libcxxrt 159 _libcplusplus=3D libc++ 160 .if ${MACHINE_CPUARCH} !=3D "arm" && ${MACHINE_CPUARCH} !=3D "mips" 161 _libcplusplus+=3D libc++experimental 162 .endif 163 .endif 164=20=20=20=20=20 165 SUBDIR.${MK_EFI}+=3D libefivar 166 SUBDIR.${MK_LIBTHR}+=3D libthr 167 SUBDIR.${MK_LLVM_LIBUNWIND}+=3D libgcc_eh 168 SUBDIR.${MK_LLVM_LIBUNWIND}+=3D libgcc_s 169 SUBDIR.${MK_NAND}+=3D libnandfs 170 SUBDIR.${MK_NETGRAPH}+=3D libnetgraph 171 SUBDIR.${MK_NIS}+=3D libypclnt 172=20=20=20=20=20 173 .if ${MACHINE_CPUARCH} =3D=3D "i386" || ${MACHINE_CPUARCH} =3D=3D "= amd64" 174 _libvgl=3D libvgl 175 .endif 176=20=20=20=20=20 177 .if ${MACHINE_CPUARCH} =3D=3D "amd64" 178 SUBDIR.${MK_BHYVE}+=3D libvmmapi 179 .endif 180=20=20=20=20=20 181 .if ${MACHINE_CPUARCH} !=3D "sparc64" 182 _libproc=3D libproc 183 _librtld_db=3D librtld_db 184 .endif 185=20=20=20=20=20 186 SUBDIR.${MK_OPENSSL}+=3D libmp 187 SUBDIR.${MK_PMC}+=3D libpmc 188 SUBDIR.${MK_RADIUS_SUPPORT}+=3D libradius 189 SUBDIR.${MK_SENDMAIL}+=3D libmilter libsm libsmdb libsmutil 190 SUBDIR.${MK_TELNET}+=3D libtelnet 191 SUBDIR.${MK_TESTS_SUPPORT}+=3D atf 192 SUBDIR.${MK_TESTS}+=3D tests 193 SUBDIR.${MK_UNBOUND}+=3D libunbound 194 SUBDIR.${MK_USB}+=3D libusbhid libusb 195=20=20=20=20=20 196 .if !make(install) 197# SUBDIR_PARALLEL=3D 198 .endif 199=20=20=20=20=20 200 .include <bsd.subdir.mk> --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-219705-8-PJ1tdfAYkP>