From owner-svn-src-projects@freebsd.org Wed Jan 4 21:47:41 2017 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 3EC14C9F260 for ; Wed, 4 Jan 2017 21:47:41 +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 008E1154E; Wed, 4 Jan 2017 21:47:40 +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 v04LleFL009183; Wed, 4 Jan 2017 21:47:40 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v04LldJb009173; Wed, 4 Jan 2017 21:47:39 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201701042147.v04LldJb009173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Wed, 4 Jan 2017 21:47:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r311310 - in projects/clang400-import: tools/build/mk usr.bin/clang usr.bin/clang/llvm-cxxfilt usr.bin/clang/llvm-lto2 usr.bin/clang/llvm-modextract usr.bin/clang/llvm-xray 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: Wed, 04 Jan 2017 21:47:41 -0000 Author: dim Date: Wed Jan 4 21:47:39 2017 New Revision: 311310 URL: https://svnweb.freebsd.org/changeset/base/311310 Log: Add new llvm-{cxxfilt,lto2,modextract,xray} tools. Added: projects/clang400-import/usr.bin/clang/llvm-cxxfilt/ projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile.depend (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-lto2/ projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile.depend (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-modextract/ projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile.depend (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-xray/ projects/clang400-import/usr.bin/clang/llvm-xray/Makefile (contents, props changed) projects/clang400-import/usr.bin/clang/llvm-xray/Makefile.depend (contents, props changed) Modified: projects/clang400-import/tools/build/mk/OptionalObsoleteFiles.inc projects/clang400-import/usr.bin/clang/Makefile Modified: projects/clang400-import/tools/build/mk/OptionalObsoleteFiles.inc ============================================================================== --- projects/clang400-import/tools/build/mk/OptionalObsoleteFiles.inc Wed Jan 4 21:13:21 2017 (r311309) +++ projects/clang400-import/tools/build/mk/OptionalObsoleteFiles.inc Wed Jan 4 21:47:39 2017 (r311310) @@ -1481,17 +1481,21 @@ OLD_FILES+=usr/bin/llvm-ar OLD_FILES+=usr/bin/llvm-as OLD_FILES+=usr/bin/llvm-bcanalyzer OLD_FILES+=usr/bin/llvm-cxxdump +OLD_FILES+=usr/bin/llvm-cxxfilt OLD_FILES+=usr/bin/llvm-diff OLD_FILES+=usr/bin/llvm-dis OLD_FILES+=usr/bin/llvm-dwarfdump OLD_FILES+=usr/bin/llvm-extract OLD_FILES+=usr/bin/llvm-link OLD_FILES+=usr/bin/llvm-lto +OLD_FILES+=usr/bin/llvm-lto2 OLD_FILES+=usr/bin/llvm-mc +OLD_FILES+=usr/bin/llvm-modextract OLD_FILES+=usr/bin/llvm-nm OLD_FILES+=usr/bin/llvm-pdbdump OLD_FILES+=usr/bin/llvm-rtdyld OLD_FILES+=usr/bin/llvm-symbolizer +OLD_FILES+=usr/bin/llvm-xray OLD_FILES+=usr/bin/opt OLD_FILES+=usr/share/man/man1/bugpoint.1.gz OLD_FILES+=usr/share/man/man1/llc.1.gz Modified: projects/clang400-import/usr.bin/clang/Makefile ============================================================================== --- projects/clang400-import/usr.bin/clang/Makefile Wed Jan 4 21:13:21 2017 (r311309) +++ projects/clang400-import/usr.bin/clang/Makefile Wed Jan 4 21:47:39 2017 (r311310) @@ -19,18 +19,22 @@ SUBDIR+= llvm-as SUBDIR+= llvm-bcanalyzer SUBDIR+= llvm-cov SUBDIR+= llvm-cxxdump +SUBDIR+= llvm-cxxfilt SUBDIR+= llvm-diff SUBDIR+= llvm-dis SUBDIR+= llvm-dwarfdump SUBDIR+= llvm-extract SUBDIR+= llvm-link SUBDIR+= llvm-lto +SUBDIR+= llvm-lto2 SUBDIR+= llvm-mc +SUBDIR+= llvm-modextract SUBDIR+= llvm-nm SUBDIR+= llvm-pdbdump SUBDIR+= llvm-profdata SUBDIR+= llvm-rtdyld SUBDIR+= llvm-symbolizer +SUBDIR+= llvm-xray SUBDIR+= opt .endif Added: projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PROG_CXX= llvm-cxxfilt +MAN= + +SRCDIR= tools/llvm-cxxfilt +SRCS+= llvm-cxxfilt.cpp + +LIBADD+= z + +.include "../llvm.prog.mk" Added: projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile.depend ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-cxxfilt/Makefile.depend Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,25 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvm \ + lib/libc \ + lib/libc++ \ + lib/libcompiler_rt \ + lib/libcxxrt \ + lib/libthr \ + lib/libz \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif Added: projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PROG_CXX= llvm-lto2 +MAN= + +SRCDIR= tools/llvm-lto2 +SRCS= llvm-lto2.cpp + +LIBADD+= z + +.include "../llvm.prog.mk" Added: projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile.depend ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-lto2/Makefile.depend Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,25 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvm \ + lib/libc \ + lib/libc++ \ + lib/libcompiler_rt \ + lib/libcxxrt \ + lib/libthr \ + lib/libz \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif Added: projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PROG_CXX= llvm-modextract +MAN= + +SRCDIR= tools/llvm-modextract +SRCS= llvm-modextract.cpp + +LIBADD+= z + +.include "../llvm.prog.mk" Added: projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile.depend ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-modextract/Makefile.depend Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,25 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvm \ + lib/libc \ + lib/libc++ \ + lib/libcompiler_rt \ + lib/libcxxrt \ + lib/libthr \ + lib/libz \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif Added: projects/clang400-import/usr.bin/clang/llvm-xray/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-xray/Makefile Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PROG_CXX= llvm-xray +MAN= + +SRCDIR= tools/llvm-xray +SRCS+= llvm-xray.cc +SRCS+= xray-extract.cc +SRCS+= xray-registry.cc + +LIBADD+= z + +.include "../llvm.prog.mk" Added: projects/clang400-import/usr.bin/clang/llvm-xray/Makefile.depend ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang400-import/usr.bin/clang/llvm-xray/Makefile.depend Wed Jan 4 21:47:39 2017 (r311310) @@ -0,0 +1,25 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/clang/libllvm \ + lib/libc \ + lib/libc++ \ + lib/libcompiler_rt \ + lib/libcxxrt \ + lib/libthr \ + lib/libz \ + lib/msun \ + lib/ncurses/ncursesw \ + + +.include + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif