From owner-svn-src-all@freebsd.org Mon Apr 25 18:49:52 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0B10B1CE3A for ; Mon, 25 Apr 2016 18:49:52 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from pmta2.delivery6.ore.mailhop.org (pmta2.delivery6.ore.mailhop.org [54.200.129.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B17CF1E4A for ; Mon, 25 Apr 2016 18:49:52 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: 85c1a99c-0b16-11e6-9fea-b54670b854a5 X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.34.117.227 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.34.117.227]) by outbound2.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Mon, 25 Apr 2016 18:50:03 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.14.9) with ESMTP id u3PInipf001636; Mon, 25 Apr 2016 12:49:44 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1461610184.1191.58.camel@freebsd.org> Subject: Re: svn: head/usr.bin/mkuzip From: Ian Lepore To: Maxim Sobolev , "Bjoern A. Zeeb" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Date: Mon, 25 Apr 2016 12:49:44 -0600 In-Reply-To: References: <201604251320.u3PDKZtI057759@repo.freebsd.org> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.16.5 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2016 18:49:52 -0000 On Mon, 2016-04-25 at 11:39 -0700, Maxim Sobolev wrote: > Thanks and sorry about that. I did not realize we use different > compilers > for different architectures. By any chance, do you know is there a > way to > test buildworld on amd64 with gcc? > Add these args to src.conf or the command line. I haven't tried these with anything except arm platforms for a couple years, but in theory it should work on amd64... #WITH_GCC=yes #WITH_GNUCXX=yes #WITH_GCC_BOOTSTRAP=yes #WITHOUT_CLANG=yes #WITHOUT_CLANG_IS_CC=yes #WITHOUT_CLANG_BOOTSTRAP=yes -- Ian > On Mon, Apr 25, 2016 at 6:20 AM, Bjoern A. Zeeb > wrote: > > > Author: bz > > Date: Mon Apr 25 13:20:35 2016 > > New Revision: 298577 > > URL: https://svnweb.freebsd.org/changeset/base/298577 > > > > Log: > > Try to make gcc builds happy again by removing a redundant > > declaration. > > > > Modified: > > head/usr.bin/mkuzip/mkuzip.c > > > > Modified: head/usr.bin/mkuzip/mkuzip.c > > > > =================================================================== > > =========== > > --- head/usr.bin/mkuzip/mkuzip.c Mon Apr 25 12:25:30 2016 > > (r298576) > > +++ head/usr.bin/mkuzip/mkuzip.c Mon Apr 25 13:20:35 2016 > > (r298577) > > @@ -78,7 +78,6 @@ static struct mkuz_format ulzma_fmt = { > > static struct mkuz_blk *readblock(int, u_int32_t); > > static void usage(void); > > static void cleanup(void); > > -int mkuz_memvcmp(const void *, unsigned char, size_t); > > > > static char *cleanfile = NULL; > > > > > >