Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Feb 2020 16:17:06 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357862 - head/contrib/elftoolchain/addr2line
Message-ID:  <202002131617.01DGH6Ul038429@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Feb 13 16:17:05 2020
New Revision: 357862
URL: https://svnweb.freebsd.org/changeset/base/357862

Log:
  addr2line: use stdbool.h header for bool
  
  Presumably a bool definition is obtained via header contamination on
  FreeBSD-CURRENT.  Found while trying to upstream FreeBSD addr2line
  changes - the FreeBSD 11.2 CI build failed there.
  
  Reported by:	Cirrus-CI, upstream ELF Tool Chain
  MFC with:	r357844
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/elftoolchain/addr2line/addr2line.c

Modified: head/contrib/elftoolchain/addr2line/addr2line.c
==============================================================================
--- head/contrib/elftoolchain/addr2line/addr2line.c	Thu Feb 13 16:03:12 2020	(r357861)
+++ head/contrib/elftoolchain/addr2line/addr2line.c	Thu Feb 13 16:17:05 2020	(r357862)
@@ -36,6 +36,7 @@
 #include <libdwarf.h>
 #include <libelftc.h>
 #include <libgen.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>



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