From owner-freebsd-current@freebsd.org Thu Mar 12 10:38:13 2020 Return-Path: Delivered-To: freebsd-current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DA0AA25C507 for ; Thu, 12 Mar 2020 10:38:13 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48dQK05wdcz4RL1; Thu, 12 Mar 2020 10:38:12 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from venus.codepro.be (venus.codepro.be [5.9.86.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.codepro.be", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: kp) by smtp.freebsd.org (Postfix) with ESMTPSA id 4AE624F67; Thu, 12 Mar 2020 10:38:12 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from [10.10.132.12] (i180-63-87-27.s41.a027.ap.plala.or.jp [180.63.87.27]) (Authenticated sender: kp) by venus.codepro.be (Postfix) with ESMTPSA id 012E33949A; Thu, 12 Mar 2020 11:38:09 +0100 (CET) From: "Kristof Provost" To: "Ronald Klop" Cc: freebsd-current@freebsd.org Subject: Re: llvm 10 libomp build error Date: Thu, 12 Mar 2020 19:38:05 +0900 X-Mailer: MailMate (1.13.1r5671) Message-ID: <28152202-B38B-4944-95B7-FFA0AA71E462@FreeBSD.org> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.29 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, 12 Mar 2020 10:38:14 -0000 On 12 Mar 2020, at 16:58, Ronald Klop wrote: > Hi, > > Clean build after svn update gives: > > cc: error: no such file or directory: > '/data/src/freebsd-current/contrib/llvm-pr > oject/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c' > cc: error: no input files > *** [ittnotify_static.pico] Error code 1 > > make[5]: stopped in /data/src/freebsd-current/lib/libomp > > The file ittnotify_static.c does indeed not exist. A .cpp version does > exist. > > > [builder@sjakie ~]$ more /etc/src.conf > KERNCONF?=GENERIC-NODEBUG > # Don't build these > WITHOUT_LLVM_TARGET_ALL=true > WITHOUT_LPR=true > WITHOUT_PROFILE=true > WITHOUT_SENDMAIL=true > WITHOUT_TESTS=true > > > What is the advice? Currently rebuilding with -j 1, but that will > hours for building the new clang again. > Try removing /usr/obj/* (or whatever your object directory is) and rebuilding. That worked for me. Best, Kristof