diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-09-01 16:40:04 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-09-01 16:40:04 +0000 |
commit | 93030654df9f1c08871e26419077d2772b4299e6 (patch) | |
tree | d763b68288aefe9256042287e03830fdd7fffd70 /gnu | |
parent | d402b1a8336e9a516b7c23b71da369da1b18a58b (diff) |
Update clang build infrastructure for LLVM 8.0.1.
Diffstat (limited to 'gnu')
6 files changed, 14 insertions, 14 deletions
diff --git a/gnu/usr.bin/clang/include/clang/Basic/Version.inc b/gnu/usr.bin/clang/include/clang/Basic/Version.inc index 608d1e866b5..d5d086e2388 100644 --- a/gnu/usr.bin/clang/include/clang/Basic/Version.inc +++ b/gnu/usr.bin/clang/include/clang/Basic/Version.inc @@ -1,9 +1,9 @@ -/* $OpenBSD: Version.inc,v 1.8 2019/06/23 22:07:38 patrick Exp $ */ +/* $OpenBSD: Version.inc,v 1.9 2019/09/01 16:40:01 patrick Exp $ */ -#define CLANG_VERSION 8.0.0 -#define CLANG_VERSION_STRING "8.0.0" +#define CLANG_VERSION 8.0.1 +#define CLANG_VERSION_STRING "8.0.1" #define CLANG_VERSION_MAJOR 8 #define CLANG_VERSION_MINOR 0 -#define CLANG_VERSION_PATCHLEVEL 0 +#define CLANG_VERSION_PATCHLEVEL 1 #define CLANG_VENDOR "OpenBSD " diff --git a/gnu/usr.bin/clang/include/clang/Config/config.h b/gnu/usr.bin/clang/include/clang/Config/config.h index 7439cf8f9ff..6bd0a87e7ec 100644 --- a/gnu/usr.bin/clang/include/clang/Config/config.h +++ b/gnu/usr.bin/clang/include/clang/Config/config.h @@ -61,7 +61,7 @@ #define CLANG_HAVE_RLIMITS 1 /* The LLVM product name and version */ -#define BACKEND_PACKAGE_STRING "LLVM 8.0.0" +#define BACKEND_PACKAGE_STRING "LLVM 8.0.1" /* Linker version detected at compile time. */ /* #undef HOST_LINK_VERSION */ diff --git a/gnu/usr.bin/clang/include/clang/intrin/Makefile b/gnu/usr.bin/clang/include/clang/intrin/Makefile index f2fff284460..6229c93eedc 100644 --- a/gnu/usr.bin/clang/include/clang/intrin/Makefile +++ b/gnu/usr.bin/clang/include/clang/intrin/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.19 2019/06/23 22:07:38 patrick Exp $ +# $OpenBSD: Makefile,v 1.20 2019/09/01 16:40:03 patrick Exp $ .include <bsd.own.mk> -LLVM_V= 8.0.0 +LLVM_V= 8.0.1 CLANG_INTR_INCDIR= /usr/lib/clang/${LLVM_V}/include TBLGEN= ${.OBJDIR}/../../../clang-tblgen/clang-tblgen diff --git a/gnu/usr.bin/clang/include/lld/Common/Version.inc b/gnu/usr.bin/clang/include/lld/Common/Version.inc index 9fafe78d8b8..d49d272d998 100644 --- a/gnu/usr.bin/clang/include/lld/Common/Version.inc +++ b/gnu/usr.bin/clang/include/lld/Common/Version.inc @@ -1,7 +1,7 @@ -/* $OpenBSD: Version.inc,v 1.3 2019/06/23 22:07:38 patrick Exp $ */ +/* $OpenBSD: Version.inc,v 1.4 2019/09/01 16:40:03 patrick Exp $ */ -#define LLD_VERSION 8.0.0 -#define LLD_VERSION_STRING "8.0.0" +#define LLD_VERSION 8.0.1 +#define LLD_VERSION_STRING "8.0.1" #define LLD_VERSION_MAJOR 8 #define LLD_VERSION_MINOR 0 #define LLD_REVISION_STRING "" diff --git a/gnu/usr.bin/clang/include/llvm/Config/config.h b/gnu/usr.bin/clang/include/llvm/Config/config.h index 3c7d5542079..68ae2ed1bd5 100644 --- a/gnu/usr.bin/clang/include/llvm/Config/config.h +++ b/gnu/usr.bin/clang/include/llvm/Config/config.h @@ -329,10 +329,10 @@ #define PACKAGE_NAME "LLVM" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "LLVM 8.0.0" +#define PACKAGE_STRING "LLVM 8.0.1" /* Define to the version of this package. */ -#define PACKAGE_VERSION "8.0.0" +#define PACKAGE_VERSION "8.0.1" /* Define to the vendor of this package. */ /* #undef PACKAGE_VENDOR */ diff --git a/gnu/usr.bin/clang/include/llvm/Config/llvm-config.h.in b/gnu/usr.bin/clang/include/llvm/Config/llvm-config.h.in index a2319a0053c..6710d0c30aa 100644 --- a/gnu/usr.bin/clang/include/llvm/Config/llvm-config.h.in +++ b/gnu/usr.bin/clang/include/llvm/Config/llvm-config.h.in @@ -57,10 +57,10 @@ #define LLVM_VERSION_MINOR 0 /* Patch version of the LLVM API */ -#define LLVM_VERSION_PATCH 0 +#define LLVM_VERSION_PATCH 1 /* LLVM version string */ -#define LLVM_VERSION_STRING "8.0.0" +#define LLVM_VERSION_STRING "8.0.1" /* Whether LLVM records statistics for use with GetStatistics(), * PrintStatistics() or PrintStatisticsJSON() |