From 8590505f488f3a62dc02554fd505814b8344cf05 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Sat, 9 Jun 2018 20:01:03 +0000 Subject: [PATCH] Bump __FreeBSD_version after r334881 and force libdwarf to be rebuilt. Reported by: O. Hartmann Reviewed by: bdrewery --- Makefile.inc1 | 3 ++- sys/sys/param.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 6f858b527895..af67bcb84304 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1843,7 +1843,8 @@ update: .PHONY # ELF Tool Chain libraries are needed for ELF tools and dtrace tools. # r296685 fix cross-endian objcopy # r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2. -.if ${BOOTSTRAPPING} < 1200020 +# r334881 added libdwarf constants used by ctfconvert. +.if ${BOOTSTRAPPING} < 1200067 _elftoolchain_libs= lib/libelf lib/libdwarf .endif diff --git a/sys/sys/param.h b/sys/sys/param.h index dfadfe93fe14..20f9dd45288d 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -60,7 +60,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 1200066 /* Master, propagated to newvers */ +#define __FreeBSD_version 1200067 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,