From owner-freebsd-hackers@FreeBSD.ORG Sat Mar 3 23:33:18 2012 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FAB0106566B for ; Sat, 3 Mar 2012 23:33:18 +0000 (UTC) (envelope-from falkman@gamozo.org) Received: from fireblade.netcore2k.net (fireblade.netcore2k.net [92.48.127.72]) by mx1.freebsd.org (Postfix) with ESMTP id F2F5B8FC12 for ; Sat, 3 Mar 2012 23:33:17 +0000 (UTC) Received: by fireblade.netcore2k.net with ESMTP id q23NXAfm010902 for ; Sat, 3 Mar 2012 23:33:11 GMT Message-ID: <4F52AA30.2030600@gamozo.org> Date: Sat, 03 Mar 2012 18:33:04 -0500 From: Brandon Falk User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-hackers@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [clang] Build error on r232474 (and a few before, don't know exactly which) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 23:33:18 -0000 I'm trying to build r232474 with clang (build environment is 10.0-CURRENT r231589 amd64 with clang), and I fail on `make -j16 buildworld`. I've tried with and without threads. I've built so many builds of clang that I can't even count, so I'm confident my environment is set up properly. I'm building under a virtual machine, although I've never had issues with that before. ---- error ---- ===> gnu/usr.bin/texinfo/doc (all) makeinfo --no-split -I /root/src/gnu/usr.bin/texinfo/doc -I /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc/info.texi -o info.info makeinfo --no-split -I /root/src/gnu/usr.bin/texinfo/doc -I /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc/info-stnd.texi -o info-stnd.info ln -fs /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc/texinfo.txi texinfo.texi makeinfo --no-split -I /root/src/gnu/usr.bin/texinfo/doc -I /root/src/gnu/usr.bin/texinfo/doc/../../../../contrib/texinfo/doc texinfo.texi -o texinfo.info gzip -cn info.info> info.info.gz gzip -cn info-stnd.info> info-stnd.info.gz gzip -cn texinfo.info> texinfo.info.gz 1 error *** [everything] Error code 2 1 error *** [buildworld] Error code 2 1 error ---- END error ---- ---- Make.conf ---- .if !defined(CC) || ${CC} == "cc" CC=clang .endif .if !defined(CXX) || ${CXX} == "c++" CXX=clang++ .endif .if !defined(CPP) || ${CPP} == "cpp" CPP=clang-cpp .endif NO_WERROR= WERROR= NO_FSCHG= # added by use.perl 2012-03-03 16:12:59 PERL_VERSION=5.12.4 ---- END Make.conf ---- -Brandon