svn commit: r351412 - head/stand/i386/boot2

Kyle Evans kevans at FreeBSD.org
Fri Aug 23 01:16:13 UTC 2019


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


More information about the svn-src-all mailing list