Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Aug 2019 01:16:12 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r351412 - head/stand/i386/boot2
Message-ID:  <201908230116.x7N1GCHB064820@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Fri Aug 23 01:16:12 2019
New Revision: 351412
URL: https://svnweb.freebsd.org/changeset/base/351412

Log:
  stand: boot2: fix amd64-xtoolchain-gcc build
  
  -Wno-missing-declarations is the GCC equivalent of
  -Wno-missing-prototypes... this was overlooked in r351135.
  
  MFC after:	3 days
  X-MFC-With:	r351135

Modified:
  head/stand/i386/boot2/Makefile

Modified: head/stand/i386/boot2/Makefile
==============================================================================
--- head/stand/i386/boot2/Makefile	Thu Aug 22 21:56:11 2019	(r351411)
+++ head/stand/i386/boot2/Makefile	Fri Aug 23 01:16:12 2019	(r351412)
@@ -80,7 +80,7 @@ boot2.bin: boot2.out
 
 # For __ashldi3
 .PATH: ${SRCTOP}/contrib/compiler-rt/lib/builtins
-CFLAGS.ashldi3.c=	-Wno-missing-prototypes
+CFLAGS.ashldi3.c=	-Wno-missing-prototypes -Wno-missing-declarations
 CLEANFILES+=	ashldi3.o
 
 boot2.out: ${BTXCRT} boot2.o sio.o ashldi3.o



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908230116.x7N1GCHB064820>