From owner-svn-src-projects@freebsd.org Sat Nov 26 01:13:55 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C52E8C52DEC for ; Sat, 26 Nov 2016 01:13:55 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 875DFA4B; Sat, 26 Nov 2016 01:13:55 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAQ1DsQO020930; Sat, 26 Nov 2016 01:13:54 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAQ1DrGc020922; Sat, 26 Nov 2016 01:13:53 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201611260113.uAQ1DrGc020922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 26 Nov 2016 01:13:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r309176 - in projects/clang391-import: etc/mtree lib/clang/headers lib/clang/include/clang/Basic lib/clang/include/clang/Config lib/clang/include/llvm/Config lib/libclang_rt X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2016 01:13:55 -0000 Author: dim Date: Sat Nov 26 01:13:53 2016 New Revision: 309176 URL: https://svnweb.freebsd.org/changeset/base/309176 Log: Update build glue for llvm/clang 3.9.1. Modified: projects/clang391-import/etc/mtree/BSD.debug.dist projects/clang391-import/etc/mtree/BSD.usr.dist projects/clang391-import/lib/clang/headers/Makefile projects/clang391-import/lib/clang/include/clang/Basic/Version.inc projects/clang391-import/lib/clang/include/clang/Config/config.h projects/clang391-import/lib/clang/include/llvm/Config/config.h projects/clang391-import/lib/clang/include/llvm/Config/llvm-config.h projects/clang391-import/lib/libclang_rt/Makefile.inc Modified: projects/clang391-import/etc/mtree/BSD.debug.dist ============================================================================== --- projects/clang391-import/etc/mtree/BSD.debug.dist Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/etc/mtree/BSD.debug.dist Sat Nov 26 01:13:53 2016 (r309176) @@ -29,7 +29,7 @@ .. lib clang - 3.9.0 + 3.9.1 lib freebsd .. Modified: projects/clang391-import/etc/mtree/BSD.usr.dist ============================================================================== --- projects/clang391-import/etc/mtree/BSD.usr.dist Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/etc/mtree/BSD.usr.dist Sat Nov 26 01:13:53 2016 (r309176) @@ -19,7 +19,7 @@ aout .. clang - 3.9.0 + 3.9.1 include sanitizer .. Modified: projects/clang391-import/lib/clang/headers/Makefile ============================================================================== --- projects/clang391-import/lib/clang/headers/Makefile Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/clang/headers/Makefile Sat Nov 26 01:13:53 2016 (r309176) @@ -4,7 +4,7 @@ .PATH: ${CLANG_SRCS}/lib/Headers -INCSDIR= ${LIBDIR}/clang/3.9.0/include +INCSDIR= ${LIBDIR}/clang/3.9.1/include GENINCS+= arm_neon.h Modified: projects/clang391-import/lib/clang/include/clang/Basic/Version.inc ============================================================================== --- projects/clang391-import/lib/clang/include/clang/Basic/Version.inc Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/clang/include/clang/Basic/Version.inc Sat Nov 26 01:13:53 2016 (r309176) @@ -1,10 +1,10 @@ /* $FreeBSD$ */ -#define CLANG_VERSION 3.9.0 +#define CLANG_VERSION 3.9.1 #define CLANG_VERSION_MAJOR 3 #define CLANG_VERSION_MINOR 9 -#define CLANG_VERSION_PATCHLEVEL 0 +#define CLANG_VERSION_PATCHLEVEL 1 #define CLANG_VENDOR "FreeBSD " -#define SVN_REVISION "280324" +#define SVN_REVISION "287912" Modified: projects/clang391-import/lib/clang/include/clang/Config/config.h ============================================================================== --- projects/clang391-import/lib/clang/include/clang/Config/config.h Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/clang/include/clang/Config/config.h Sat Nov 26 01:13:53 2016 (r309176) @@ -34,7 +34,7 @@ /* #undef CLANG_HAVE_LIBXML */ /* The LLVM product name and version */ -#define BACKEND_PACKAGE_STRING "LLVM 3.9.0" +#define BACKEND_PACKAGE_STRING "LLVM 3.9.1" /* Linker version detected at compile time. */ /* #undef HOST_LINK_VERSION */ Modified: projects/clang391-import/lib/clang/include/llvm/Config/config.h ============================================================================== --- projects/clang391-import/lib/clang/include/llvm/Config/config.h Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/clang/include/llvm/Config/config.h Sat Nov 26 01:13:53 2016 (r309176) @@ -508,10 +508,10 @@ #define LLVM_VERSION_MINOR 9 /* Patch version of the LLVM API */ -#define LLVM_VERSION_PATCH 0 +#define LLVM_VERSION_PATCH 1 /* LLVM version string */ -#define LLVM_VERSION_STRING "3.9.0" +#define LLVM_VERSION_STRING "3.9.1" /* LLVM version information */ /* #undef LLVM_VERSION_INFO */ @@ -546,13 +546,13 @@ #define PACKAGE_NAME "LLVM" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "LLVM 3.9.0" +#define PACKAGE_STRING "LLVM 3.9.1" /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ -#define PACKAGE_VERSION "3.9.0" +#define PACKAGE_VERSION "3.9.1" /* Define to the vendor of this package. */ /* #undef PACKAGE_VENDOR */ Modified: projects/clang391-import/lib/clang/include/llvm/Config/llvm-config.h ============================================================================== --- projects/clang391-import/lib/clang/include/llvm/Config/llvm-config.h Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/clang/include/llvm/Config/llvm-config.h Sat Nov 26 01:13:53 2016 (r309176) @@ -98,10 +98,10 @@ #define LLVM_VERSION_MINOR 9 /* Patch version of the LLVM API */ -#define LLVM_VERSION_PATCH 0 +#define LLVM_VERSION_PATCH 1 /* LLVM version string */ -#define LLVM_VERSION_STRING "3.9.0" +#define LLVM_VERSION_STRING "3.9.1" /* Define if we link Polly to the tools */ /* #undef LINK_POLLY_INTO_TOOLS */ Modified: projects/clang391-import/lib/libclang_rt/Makefile.inc ============================================================================== --- projects/clang391-import/lib/libclang_rt/Makefile.inc Sat Nov 26 01:02:53 2016 (r309175) +++ projects/clang391-import/lib/libclang_rt/Makefile.inc Sat Nov 26 01:13:53 2016 (r309176) @@ -7,7 +7,7 @@ CRTSRC= ${SRCTOP}/contrib/compiler-rt .PATH: ${CRTSRC}/lib -CLANGDIR= /usr/lib/clang/3.9.0 +CLANGDIR= /usr/lib/clang/3.9.1 LIBDIR= ${CLANGDIR}/lib/freebsd NO_PIC=