svn commit: r315689 - head/lib/libcompiler_rt

Dimitry Andric dim at FreeBSD.org
Tue Mar 21 21:07:39 UTC 2017


Author: dim
Date: Tue Mar 21 21:07:37 2017
New Revision: 315689
URL: https://svnweb.freebsd.org/changeset/base/315689

Log:
  Gcc has incompatible internal declarations for __divtc3 and __multc3 as
  defined in compiler-rt, but it has no option to silence its warning, so
  make gcc warnings for libcompiler_rt non-fatal.
  
  Noticed by:	lwhsu
  MFC after:	3 days

Modified:
  head/lib/libcompiler_rt/Makefile

Modified: head/lib/libcompiler_rt/Makefile
==============================================================================
--- head/lib/libcompiler_rt/Makefile	Tue Mar 21 20:48:36 2017	(r315688)
+++ head/lib/libcompiler_rt/Makefile	Tue Mar 21 21:07:37 2017	(r315689)
@@ -16,6 +16,10 @@ CFLAGS+=	-I${SRCTOP}/contrib/libcxxrt
 CWARNFLAGS.gcc_personality_v0.c+= -Wno-typedef-redefinition
 .endif
 
+# gcc has incompatible internal declarations for __divtc3 and __multc3, but has
+# no option to silence its warning, so make warnings non-fatal.
+NO_WERROR.gcc=
+
 .include "Makefile.inc"
 
 .if ${MK_INSTALLLIB} != "no"


More information about the svn-src-head mailing list