From owner-svn-ports-all@freebsd.org Tue Aug 21 06:40:12 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0709C108B164; Tue, 21 Aug 2018 06:40:12 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B464375B90; Tue, 21 Aug 2018 06:40:11 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id A7E8C854A; Tue, 21 Aug 2018 06:40:11 +0000 (UTC) Date: Tue, 21 Aug 2018 06:40:11 +0000 From: Alexey Dokuchaev To: Gerald Pfeifer Cc: Wen Heping , ndowens@yahoo.com, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r477553 - head/lang/angelscript Message-ID: <20180821064011.GC50546@FreeBSD.org> References: <201808190108.w7J18srL043343@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.5 (2018-04-13) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2018 06:40:12 -0000 On Sun, Aug 19, 2018 at 10:05:25AM +0800, Gerald Pfeifer wrote: > On Sun, 19 Aug 2018, Wen Heping wrote: > > New Revision: 477553 > > URL: https://svnweb.freebsd.org/changeset/ports/477553 > > > > Log: > > - Update to 2.32.0 > > - Pass maintainership to submitter > > > > PR: 230448 > > Submitted by: ndowens@yahoo.com > > > +.include > > +.if ${ARCH} == "i386" > > +USE_GCC= yes > > +.endif > > Hmm, that's not ideal, it may cause problems when updating to a > later version of GCC by default. > > Did you submit a bug report upstream (both to angelscript and clang)? Clang 6.0.0 trips on as_callfunc_x86.cpp (error: this directive must appear between .cfi_startproc and .cfi_endproc directives) when compiling it with -O1 and higher, but omitting optimizations or building with -O0 allows it to compile. Haven't tested it further though, just a data point if someone gets interested in fixing this properly. ./danfe