From owner-svn-ports-head@freebsd.org Wed Jan 27 04:46:25 2016 Return-Path: Delivered-To: svn-ports-head@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 3873EA6FB97; Wed, 27 Jan 2016 04:46:25 +0000 (UTC) (envelope-from brooks@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 DE1BF202; Wed, 27 Jan 2016 04:46:24 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0R4kNNl004177; Wed, 27 Jan 2016 04:46:23 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0R4kN9B004173; Wed, 27 Jan 2016 04:46:23 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201601270446.u0R4kN9B004173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Wed, 27 Jan 2016 04:46:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407336 - in head/devel: . llvm38 llvm38/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jan 2016 04:46:25 -0000 Author: brooks Date: Wed Jan 27 04:46:23 2016 New Revision: 407336 URL: https://svnweb.freebsd.org/changeset/ports/407336 Log: Add a port of llvm 3.8.0rc1. clang and lldb metaports to follow along with a new compiler-rt78 port. LLDB builds with shared libraries are currently broken so I've disabled shared library builds. Tools should start faster, but the package are much larger. Added: head/devel/llvm38/ - copied from r407278, head/devel/llvm37/ Deleted: head/devel/llvm38/files/clang-patch-static-analizer.diff head/devel/llvm38/files/clang-patch-svn-250416 head/devel/llvm38/files/compiler-rt-patch-svn-249051 head/devel/llvm38/files/compiler-rt-patch-tools_compiler-rt_cmake_config-ix.cmake head/devel/llvm38/files/lldb-patch-svn-247116 head/devel/llvm38/files/lldb-patch-svn-249467 head/devel/llvm38/files/patch-tools_llvm-config_llvm-config.cpp head/devel/llvm38/files/patch-utils_llvm-build_llvmbuild_main.py Modified: head/devel/Makefile head/devel/llvm38/Makefile head/devel/llvm38/distinfo head/devel/llvm38/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 27 04:20:26 2016 (r407335) +++ head/devel/Makefile Wed Jan 27 04:46:23 2016 (r407336) @@ -1400,6 +1400,7 @@ SUBDIR += llvm35 SUBDIR += llvm36 SUBDIR += llvm37 + SUBDIR += llvm38 SUBDIR += lm4tools SUBDIR += lmdbg SUBDIR += lndir Modified: head/devel/llvm38/Makefile ============================================================================== --- head/devel/llvm37/Makefile Tue Jan 26 15:54:36 2016 (r407278) +++ head/devel/llvm38/Makefile Wed Jan 27 04:46:23 2016 (r407336) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= llvm -DISTVERSION= 3.7.1 +DISTVERSION= 3.8.0rc1 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src @@ -27,30 +27,24 @@ SUB_FILES= llvm-wrapper.sh SUB_LIST= LLVM_PREFIX="${LLVM_PREFIX}" LLVM_SUFFIX="${LLVM_SUFFIX}" CMAKE_INSTALL_PREFIX= ${LLVM_PREFIX} -CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON +CMAKE_ARGS= -OPTIONS_DEFINE= CLANG COMPILER_RT DOCS EXTRAS GOLD LIT LLD LLDB +OPTIONS_DEFINE= CLANG DOCS EXTRAS GOLD LIT LLD LLDB OPTIONS_DEFINE_amd64= OPENMP OPTIONS_DEFAULT= CLANG EXTRAS GOLD LIT LLD LLDB -OPTIONS_DEFAULT_amd64= COMPILER_RT OPENMP -OPTIONS_DEFAULT_i386= COMPILER_RT +OPTIONS_DEFAULT_amd64= OPENMP +OPTIONS_DEFAULT_i386= OPTIONS_SUB= yes CLANG_DESC= Build clang CLANG_EXTRA_PATCHES= \ ${PATCHDIR}/clang-patch-fformat_extensions.diff \ - ${PATCHDIR}/clang-patch-static-analizer.diff \ ${PATCHDIR}/clang-patch-tools_clang_lib_Headers_CMakeLists.txt \ - ${PATCHDIR}/clang-patch-tools_clang_tools_clang-format_clang-format.py \ - ${PATCHDIR}/clang-patch-svn-250416 + ${PATCHDIR}/clang-patch-tools_clang_tools_clang-format_clang-format.py CLANG_CONFLICTS_INSTALL= clang-devel-3.[1234567]* CLANG_DISTFILES= cfe-${DISTVERSION}.src${EXTRACT_SUFX} CLANG_CMAKE_ON= -DCLANG_DEFAULT_OPENMP_RUNTIME=libomp CLANG_PORTDOCS= clang -COMPILER_RT_DESC= Build compiler-rt (sanitizers) -COMPILER_RT_DISTFILES= compiler-rt-${DISTVERSION}.src${EXTRACT_SUFX} -COMPILER_RT_EXTRA_PATCHES= \ - ${PATCHDIR}/compiler-rt-patch-svn-249051 DOCS_PORTDOCS= llvm DOCS_CMAKE_ON= -DLLVM_ENABLE_SPHINX=ON \ -DSPHINX_WARNINGS_AS_ERRORS=OFF \ @@ -72,7 +66,7 @@ GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=$ GOLD_BUILD_DEPENDS= ld.gold:${PORTSDIR}/devel/binutils # Emulate USE_GITHUB's ${WRKSRC_tag} to reduce diffs to ../llvm-devel -.for option in CLANG COMPILER_RT EXTRAS LLD LLDB OPENMP +.for option in CLANG EXTRAS LLD LLDB OPENMP WRKSRC_${option:tl}= ${WRKDIR}/${${option}_DISTFILES:S/${EXTRACT_SUFX}//} .endfor @@ -104,6 +98,7 @@ COMMANDS= bugpoint \ llvm-readobj \ llvm-rtdyld \ llvm-size \ + llvm-split \ llvm-stress \ llvm-symbolizer \ llvm-tblgen \ @@ -156,49 +151,6 @@ CLANG_PATTERN= (c-index-test|clang|scan- COMMANDS+= ${EXTRAS_COMMANDS} .endif -.if ${PORT_OPTIONS:MCOMPILER_RT} -SAN_LIBDIR=${LLVM_PREFIX}/lib/clang/${LLVM_RELEASE}/lib/freebsd -.if ${ARCH} == "amd64" -# Disable i386 variants on amd64. -EXTRA_PATCHES+= \ - ${PATCHDIR}/compiler-rt-patch-tools_compiler-rt_cmake_config-ix.cmake -PLIST_FILES+= \ - ${SAN_LIBDIR}/libclang_rt.asan-preinit-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.asan-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.asan-x86_64.a.syms \ - ${SAN_LIBDIR}/libclang_rt.asan-x86_64.so \ - ${SAN_LIBDIR}/libclang_rt.asan_cxx-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.asan_cxx-x86_64.a.syms \ - ${SAN_LIBDIR}/libclang_rt.builtins-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.dd-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.dyndd-x86_64.so \ - ${SAN_LIBDIR}/libclang_rt.lsan-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.profile-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.safestack-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.tsan-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.tsan-x86_64.a.syms \ - ${SAN_LIBDIR}/libclang_rt.tsan_cxx-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.tsan_cxx-x86_64.a.syms \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone-x86_64.a.syms \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone_cxx-x86_64.a \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone_cxx-x86_64.a.syms -.elif ${ARCH} == "i386" -PLIST_FILES+= \ - ${SAN_LIBDIR}/libclang_rt.asan-i386.a \ - ${SAN_LIBDIR}/libclang_rt.asan-i386.so \ - ${SAN_LIBDIR}/libclang_rt.asan-preinit-i386.a \ - ${SAN_LIBDIR}/libclang_rt.asan_cxx-i386.a \ - ${SAN_LIBDIR}/libclang_rt.builtins-i386.a \ - ${SAN_LIBDIR}/libclang_rt.profile-i386.a \ - ${SAN_LIBDIR}/libclang_rt.safestack-i386.a \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone-i386.a \ - ${SAN_LIBDIR}/libclang_rt.ubsan_standalone_cxx-i386.a -.else -BROKEN= no packaging data for sanitizers on ${ARCH}. Disable COMPILER_RT. -.endif -.endif - .if ${PORT_OPTIONS:MLIT} MAN1SRCS+= lit.1 FileCheck.1 _USES_PYTHON= python @@ -230,7 +182,7 @@ USES+= ${_USES_PYTHON} MAN1SRCS+= bugpoint.1 llc.1 lli.1 llvm-ar.1 llvm-as.1 \ llvm-bcanalyzer.1 llvm-build.1 llvm-config.1 llvm-cov.1 \ llvm-diff.1 llvm-dis.1 llvm-dwarfdump.1 \ - llvm-extract.1 llvm-link.1 llvm-nm.1 \ + llvm-extract.1 llvm-lib.1 llvm-link.1 llvm-nm.1 \ llvm-profdata.1 llvm-readobj.1 llvm-stress.1 llvm-symbolizer.1 \ opt.1 tblgen.1 @@ -250,38 +202,14 @@ BROKEN= LLDB does not build with Python .if ${OPSYS} == "FreeBSD" && ${COMPILER_TYPE} != clang # Evil hack around gcc48 not providing a usable c++11 environment on 9.x PLIST_SUB:= ${PLIST_SUB:NLLDB=*} LLDB="@comment " -.else -.if ${PORT_OPTIONS:MLLDB} -EXTRA_PATCHES+= \ - ${PATCHDIR}/lldb-patch-svn-247116 \ - ${PATCHDIR}/lldb-patch-svn-249467 -.endif .endif post-extract-CLANG-on: ${MV} ${WRKSRC_clang} ${PATCH_WRKSRC}/tools/clang - ${MKDIR} ${PATCH_WRKSRC}/tools/clang/tools/scan-view/share - cd ${PATCH_WRKSRC}/tools/clang/tools/scan-view && \ - ${MV} Resources/bugcatcher.ico Resources/FileRadar.scpt \ - Resources/GetRadarVersion.scpt share - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/sorttable.js - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/scanview.css - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/set-xcode-analyzer - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/scan-build.1 - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/scan-build.* - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/ccc-analyzer.* - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-build/c++-analyzer.* - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-view/Reporter.py - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-view/ScanView.py - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-view/scan-view - ${RM} ${PATCH_WRKSRC}/tools/clang/tools/scan-view/startfile.py post-extract-EXTRAS-on: ${MV} ${WRKSRC_extras} ${PATCH_WRKSRC}/tools/clang/tools/extra -post-extract-COMPILER_RT-on: - ${MV} ${WRKSRC_compiler_rt} ${PATCH_WRKSRC}/tools/compiler-rt - post-extract-LLD-on: ${MV} ${WRKSRC_lld} ${PATCH_WRKSRC}/tools/lld @@ -324,6 +252,7 @@ post-install-DOCS-on: post-install-LLDB-on: .if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang ${RM} ${STAGEDIR}${LLVM_PREFIX}/lib/python*/site-packages/lib + ${RMDIR} ${STAGEDIR}${LLVM_PREFIX}/include/lldb/Host/windows/getopt .endif post-install-CLANG-on: @@ -369,7 +298,7 @@ build-plist: .endfor ${FIND} ${STAGEDIR}${LLVM_PREFIX} -type f -o -type l | \ - ${GREP} -v 'lit$$' | ${GREP} -v 'FileCheck$$' | \ + ${GREP} -v '[/-]lit$$' | ${GREP} -v 'FileCheck$$' | \ ${GREP} -v man/man1 | ${SED} -e 's|${STAGEDIR}${PREFIX}/||' \ -e 's|${LLVM_RELEASE}|%%LLVM_RELEASE%%|' \ -e 's|release.cmake|%%CMAKE_BUILD_TYPE%%.cmake|' | \ @@ -379,7 +308,6 @@ build-plist: ${SORT} >> ${PLIST}.tmp awk '{ \ if ($$0 ~ /${CLANG_PATTERN}/ && $$0 !~ /(omp.h|libclang_rt|sanitizer|blacklist.txt|${EXTRAS_PATTERN})/) {printf "%%%%CLANG%%%%"} \ - if ($$0 ~ /(sanitizer|blacklist.txt)/) {printf "%%%%COMPILER_RT%%%%"} \ if ($$0 ~ /(${EXTRAS_PATTERN})/) {printf "%%%%EXTRAS%%%%"} \ if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} \ if ($$0 ~ /(argdumper|lldb)/) {printf "%%%%LLDB%%%%"} \ Modified: head/devel/llvm38/distinfo ============================================================================== --- head/devel/llvm37/distinfo Tue Jan 26 15:54:36 2016 (r407278) +++ head/devel/llvm38/distinfo Wed Jan 27 04:46:23 2016 (r407336) @@ -1,14 +1,14 @@ -SHA256 (llvm-3.7.1.src.tar.xz) = be7794ed0cec42d6c682ca8e3517535b54555a3defabec83554dbc74db545ad5 -SIZE (llvm-3.7.1.src.tar.xz) = 14592544 -SHA256 (cfe-3.7.1.src.tar.xz) = 56e2164c7c2a1772d5ed2a3e57485ff73ff06c97dff12edbeea1acc4412b0674 -SIZE (cfe-3.7.1.src.tar.xz) = 9110616 -SHA256 (compiler-rt-3.7.1.src.tar.xz) = 9d4769e4a927d3824bcb7a9c82b01e307c68588e6de4e7f04ab82d82c5af8181 -SIZE (compiler-rt-3.7.1.src.tar.xz) = 1181772 -SHA256 (clang-tools-extra-3.7.1.src.tar.xz) = 4a91edaccad1ce984c7c49a4a87db186b7f7b21267b2b03bcf4bd7820715bc6b -SIZE (clang-tools-extra-3.7.1.src.tar.xz) = 277476 -SHA256 (lld-3.7.1.src.tar.xz) = a929cb44b45e3181a0ad02d8c9df1d3fc71e001139455c6805f3abf2835ef3ac -SIZE (lld-3.7.1.src.tar.xz) = 586008 -SHA256 (lldb-3.7.1.src.tar.xz) = 9a0bc315ef55f44c98cdf92d064df0847f453ed156dd0ef6a87e04f5fd6a0e01 -SIZE (lldb-3.7.1.src.tar.xz) = 10650524 -SHA256 (openmp-3.7.1.src.tar.xz) = 9a702e20c247014f6de8c45b738c6ea586eca0559304520f565ac9a7cba4bf9a -SIZE (openmp-3.7.1.src.tar.xz) = 2026988 +SHA256 (llvm-3.8.0rc1.src.tar.xz) = 41809e45cb3a97908c5741b4c15c90d801793e09d75858a6cfaa9582f233249b +SIZE (llvm-3.8.0rc1.src.tar.xz) = 16559376 +SHA256 (cfe-3.8.0rc1.src.tar.xz) = 11cd5e001fe83a55040a976c8e7d7b2c808534980df16b97b200b3b897df89c3 +SIZE (cfe-3.8.0rc1.src.tar.xz) = 9621648 +SHA256 (compiler-rt-3.8.0rc1.src.tar.xz) = 770925debdb35985423835fcb6ac7b572ee273ff8a175f580d37e3ee930c2f9b +SIZE (compiler-rt-3.8.0rc1.src.tar.xz) = 1266132 +SHA256 (clang-tools-extra-3.8.0rc1.src.tar.xz) = 7c2331c03af4013bd2a0ce5033044c1577f2f7bdd138638ebe7c2310ea14df02 +SIZE (clang-tools-extra-3.8.0rc1.src.tar.xz) = 323524 +SHA256 (lld-3.8.0rc1.src.tar.xz) = 7cf97833bd471362255340125defe14dcc89678bb89a13e1a205bdda9c456e8e +SIZE (lld-3.8.0rc1.src.tar.xz) = 631452 +SHA256 (lldb-3.8.0rc1.src.tar.xz) = 12a6bf9362a6a8a2affe18420543605f8128de3cd0ebd4cd65a075d2c6995ddd +SIZE (lldb-3.8.0rc1.src.tar.xz) = 10928688 +SHA256 (openmp-3.8.0rc1.src.tar.xz) = c7746cbe581a144171020789da4bf5179858b447f2617f3dd4cef567a4ab986e +SIZE (openmp-3.8.0rc1.src.tar.xz) = 2233368 Modified: head/devel/llvm38/pkg-plist ============================================================================== --- head/devel/llvm37/pkg-plist Tue Jan 26 15:54:36 2016 (r407278) +++ head/devel/llvm38/pkg-plist Wed Jan 27 04:46:23 2016 (r407336) @@ -1,2489 +1,2266 @@ -bin/bugpoint37 -bin/llc37 -bin/lli37 -bin/llvm-ar37 -bin/llvm-as37 -bin/llvm-bcanalyzer37 -bin/llvm-config37 -bin/llvm-cov37 -bin/llvm-diff37 -bin/llvm-dis37 -bin/llvm-dwarfdump37 -bin/llvm-extract37 -bin/llvm-link37 -bin/llvm-mc37 -bin/llvm-mcmarkup37 -bin/llvm-nm37 -bin/llvm-objdump37 -bin/llvm-profdata37 -bin/llvm-ranlib37 -bin/llvm-readobj37 -bin/llvm-rtdyld37 -bin/llvm-size37 -bin/llvm-stress37 -bin/llvm-symbolizer37 -bin/llvm-tblgen37 -bin/macho-dump37 -bin/opt37 -%%CLANG%%bin/clang37 -%%CLANG%%bin/clang++37 -%%CLANG%%bin/clang-check37 -%%CLANG%%bin/clang-cpp37 -%%CLANG%%bin/clang-format37 -%%CLANG%%bin/clang-tblgen37 -%%CLANG%%bin/scan-build37 -%%CLANG%%bin/scan-view37 -%%EXTRAS%%bin/clang-apply-replacements37 -%%EXTRAS%%bin/clang-modernize37 -%%EXTRAS%%bin/clang-rename37 -%%EXTRAS%%bin/clang-tidy37 -%%LLD%%bin/lld37 -%%LLDB%%bin/argdumper37 -%%LLDB%%bin/lldb37 -%%LLDB%%bin/lldb-mi37 -%%LLDB%%bin/lldb-server37 -%%LIT%%bin/lit37 -%%LIT%%llvm37/bin/lit -%%LIT%%bin/llvm-lit37 -%%LIT%%llvm37/bin/llvm-lit -%%LIT%%bin/FileCheck37 -%%LIT%%llvm37/bin/FileCheck -%%LLDB%%llvm37/bin/argdumper -llvm37/bin/bugpoint -%%CLANG%%llvm37/bin/clang -%%CLANG%%llvm37/bin/clang++ -%%CLANG%%llvm37/bin/clang-3.7 -%%EXTRAS%%llvm37/bin/clang-apply-replacements -%%CLANG%%llvm37/bin/clang-check -%%CLANG%%llvm37/bin/clang-cl -%%CLANG%%llvm37/bin/clang-cpp -%%CLANG%%llvm37/bin/clang-format -%%EXTRAS%%llvm37/bin/clang-modernize -%%EXTRAS%%llvm37/bin/clang-rename -%%CLANG%%llvm37/bin/clang-tblgen -%%EXTRAS%%llvm37/bin/clang-tidy -%%CLANG%%llvm37/bin/git-clang-format -llvm37/bin/llc -%%LLD%%llvm37/bin/lld -%%LLDB%%llvm37/bin/lldb -%%LLDB%%llvm37/bin/lldb-%%LLVM_RELEASE%% -%%LLDB%%llvm37/bin/lldb-mi -%%LLDB%%llvm37/bin/lldb-mi-%%LLVM_RELEASE%% -%%LLDB%%llvm37/bin/lldb-server -%%LLDB%%llvm37/bin/lldb-server-%%LLVM_RELEASE%% -llvm37/bin/lli -llvm37/bin/llvm-ar -llvm37/bin/llvm-as -llvm37/bin/llvm-bcanalyzer -llvm37/bin/llvm-c-test -llvm37/bin/llvm-config -llvm37/bin/llvm-cov -llvm37/bin/llvm-cxxdump -llvm37/bin/llvm-diff -llvm37/bin/llvm-dis -llvm37/bin/llvm-dsymutil -llvm37/bin/llvm-dwarfdump -llvm37/bin/llvm-extract -llvm37/bin/llvm-lib -llvm37/bin/llvm-link -llvm37/bin/llvm-lto -llvm37/bin/llvm-mc -llvm37/bin/llvm-mcmarkup -llvm37/bin/llvm-nm -llvm37/bin/llvm-objdump -llvm37/bin/llvm-pdbdump -llvm37/bin/llvm-profdata -llvm37/bin/llvm-ranlib -llvm37/bin/llvm-readobj -llvm37/bin/llvm-rtdyld -llvm37/bin/llvm-size -llvm37/bin/llvm-stress -llvm37/bin/llvm-symbolizer -llvm37/bin/llvm-tblgen -llvm37/bin/macho-dump -llvm37/bin/obj2yaml -llvm37/bin/opt -%%CLANG%%llvm37/bin/scan-build -%%CLANG%%llvm37/bin/scan-view -llvm37/bin/verify-uselistorder -llvm37/bin/yaml2obj -%%CLANG%%llvm37/include/clang-c/BuildSystem.h -%%CLANG%%llvm37/include/clang-c/CXCompilationDatabase.h -%%CLANG%%llvm37/include/clang-c/CXErrorCode.h -%%CLANG%%llvm37/include/clang-c/CXString.h -%%CLANG%%llvm37/include/clang-c/Documentation.h -%%CLANG%%llvm37/include/clang-c/Index.h -%%CLANG%%llvm37/include/clang-c/Platform.h -%%CLANG%%llvm37/include/clang/ARCMigrate/ARCMT.h -%%CLANG%%llvm37/include/clang/ARCMigrate/ARCMTActions.h -%%CLANG%%llvm37/include/clang/ARCMigrate/FileRemapper.h -%%CLANG%%llvm37/include/clang/AST/APValue.h -%%CLANG%%llvm37/include/clang/AST/AST.h -%%CLANG%%llvm37/include/clang/AST/ASTConsumer.h -%%CLANG%%llvm37/include/clang/AST/ASTContext.h -%%CLANG%%llvm37/include/clang/AST/ASTDiagnostic.h -%%CLANG%%llvm37/include/clang/AST/ASTFwd.h -%%CLANG%%llvm37/include/clang/AST/ASTImporter.h -%%CLANG%%llvm37/include/clang/AST/ASTLambda.h -%%CLANG%%llvm37/include/clang/AST/ASTMutationListener.h -%%CLANG%%llvm37/include/clang/AST/ASTTypeTraits.h -%%CLANG%%llvm37/include/clang/AST/ASTUnresolvedSet.h -%%CLANG%%llvm37/include/clang/AST/ASTVector.h -%%CLANG%%llvm37/include/clang/AST/Attr.h -%%CLANG%%llvm37/include/clang/AST/AttrDump.inc -%%CLANG%%llvm37/include/clang/AST/AttrImpl.inc -%%CLANG%%llvm37/include/clang/AST/AttrIterator.h -%%CLANG%%llvm37/include/clang/AST/AttrVisitor.inc -%%CLANG%%llvm37/include/clang/AST/Attrs.inc -%%CLANG%%llvm37/include/clang/AST/BaseSubobject.h -%%CLANG%%llvm37/include/clang/AST/BuiltinTypes.def -%%CLANG%%llvm37/include/clang/AST/CXXInheritance.h -%%CLANG%%llvm37/include/clang/AST/CanonicalType.h -%%CLANG%%llvm37/include/clang/AST/CharUnits.h -%%CLANG%%llvm37/include/clang/AST/Comment.h -%%CLANG%%llvm37/include/clang/AST/CommentBriefParser.h -%%CLANG%%llvm37/include/clang/AST/CommentCommandInfo.inc -%%CLANG%%llvm37/include/clang/AST/CommentCommandList.inc -%%CLANG%%llvm37/include/clang/AST/CommentCommandTraits.h -%%CLANG%%llvm37/include/clang/AST/CommentDiagnostic.h -%%CLANG%%llvm37/include/clang/AST/CommentHTMLNamedCharacterReferences.inc -%%CLANG%%llvm37/include/clang/AST/CommentHTMLTags.inc -%%CLANG%%llvm37/include/clang/AST/CommentHTMLTagsProperties.inc -%%CLANG%%llvm37/include/clang/AST/CommentLexer.h -%%CLANG%%llvm37/include/clang/AST/CommentNodes.inc -%%CLANG%%llvm37/include/clang/AST/CommentParser.h -%%CLANG%%llvm37/include/clang/AST/CommentSema.h -%%CLANG%%llvm37/include/clang/AST/CommentVisitor.h -%%CLANG%%llvm37/include/clang/AST/DataRecursiveASTVisitor.h -%%CLANG%%llvm37/include/clang/AST/Decl.h -%%CLANG%%llvm37/include/clang/AST/DeclAccessPair.h -%%CLANG%%llvm37/include/clang/AST/DeclBase.h -%%CLANG%%llvm37/include/clang/AST/DeclCXX.h -%%CLANG%%llvm37/include/clang/AST/DeclContextInternals.h -%%CLANG%%llvm37/include/clang/AST/DeclFriend.h -%%CLANG%%llvm37/include/clang/AST/DeclGroup.h -%%CLANG%%llvm37/include/clang/AST/DeclLookups.h -%%CLANG%%llvm37/include/clang/AST/DeclNodes.inc -%%CLANG%%llvm37/include/clang/AST/DeclObjC.h -%%CLANG%%llvm37/include/clang/AST/DeclOpenMP.h -%%CLANG%%llvm37/include/clang/AST/DeclTemplate.h -%%CLANG%%llvm37/include/clang/AST/DeclVisitor.h -%%CLANG%%llvm37/include/clang/AST/DeclarationName.h -%%CLANG%%llvm37/include/clang/AST/DependentDiagnostic.h -%%CLANG%%llvm37/include/clang/AST/EvaluatedExprVisitor.h -%%CLANG%%llvm37/include/clang/AST/Expr.h -%%CLANG%%llvm37/include/clang/AST/ExprCXX.h -%%CLANG%%llvm37/include/clang/AST/ExprObjC.h -%%CLANG%%llvm37/include/clang/AST/ExternalASTSource.h -%%CLANG%%llvm37/include/clang/AST/GlobalDecl.h -%%CLANG%%llvm37/include/clang/AST/LambdaCapture.h -%%CLANG%%llvm37/include/clang/AST/Mangle.h -%%CLANG%%llvm37/include/clang/AST/MangleNumberingContext.h -%%CLANG%%llvm37/include/clang/AST/NSAPI.h -%%CLANG%%llvm37/include/clang/AST/NestedNameSpecifier.h -%%CLANG%%llvm37/include/clang/AST/OpenMPClause.h -%%CLANG%%llvm37/include/clang/AST/OperationKinds.h -%%CLANG%%llvm37/include/clang/AST/ParentMap.h -%%CLANG%%llvm37/include/clang/AST/PrettyPrinter.h -%%CLANG%%llvm37/include/clang/AST/RawCommentList.h -%%CLANG%%llvm37/include/clang/AST/RecordLayout.h -%%CLANG%%llvm37/include/clang/AST/RecursiveASTVisitor.h -%%CLANG%%llvm37/include/clang/AST/Redeclarable.h -%%CLANG%%llvm37/include/clang/AST/SelectorLocationsKind.h -%%CLANG%%llvm37/include/clang/AST/Stmt.h -%%CLANG%%llvm37/include/clang/AST/StmtCXX.h -%%CLANG%%llvm37/include/clang/AST/StmtGraphTraits.h -%%CLANG%%llvm37/include/clang/AST/StmtIterator.h -%%CLANG%%llvm37/include/clang/AST/StmtNodes.inc -%%CLANG%%llvm37/include/clang/AST/StmtObjC.h -%%CLANG%%llvm37/include/clang/AST/StmtOpenMP.h -%%CLANG%%llvm37/include/clang/AST/StmtVisitor.h -%%CLANG%%llvm37/include/clang/AST/TemplateBase.h -%%CLANG%%llvm37/include/clang/AST/TemplateName.h -%%CLANG%%llvm37/include/clang/AST/Type.h -%%CLANG%%llvm37/include/clang/AST/TypeLoc.h -%%CLANG%%llvm37/include/clang/AST/TypeLocNodes.def -%%CLANG%%llvm37/include/clang/AST/TypeLocVisitor.h -%%CLANG%%llvm37/include/clang/AST/TypeNodes.def -%%CLANG%%llvm37/include/clang/AST/TypeOrdering.h -%%CLANG%%llvm37/include/clang/AST/TypeVisitor.h -%%CLANG%%llvm37/include/clang/AST/UnresolvedSet.h -%%CLANG%%llvm37/include/clang/AST/VTTBuilder.h -%%CLANG%%llvm37/include/clang/AST/VTableBuilder.h -%%CLANG%%llvm37/include/clang/ASTMatchers/ASTMatchFinder.h -%%CLANG%%llvm37/include/clang/ASTMatchers/ASTMatchers.h -%%CLANG%%llvm37/include/clang/ASTMatchers/ASTMatchersInternal.h -%%CLANG%%llvm37/include/clang/ASTMatchers/ASTMatchersMacros.h -%%CLANG%%llvm37/include/clang/ASTMatchers/Dynamic/Diagnostics.h -%%CLANG%%llvm37/include/clang/ASTMatchers/Dynamic/Parser.h -%%CLANG%%llvm37/include/clang/ASTMatchers/Dynamic/Registry.h -%%CLANG%%llvm37/include/clang/ASTMatchers/Dynamic/VariantValue.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/Consumed.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/Dominators.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/FormatString.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/LiveVariables.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/PostOrderCFGView.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ReachableCode.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafety.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyCommon.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyLogical.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyOps.def -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyTIL.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/ThreadSafetyUtil.h -%%CLANG%%llvm37/include/clang/Analysis/Analyses/UninitializedValues.h -%%CLANG%%llvm37/include/clang/Analysis/AnalysisContext.h -%%CLANG%%llvm37/include/clang/Analysis/AnalysisDiagnostic.h -%%CLANG%%llvm37/include/clang/Analysis/CFG.h -%%CLANG%%llvm37/include/clang/Analysis/CFGStmtMap.h -%%CLANG%%llvm37/include/clang/Analysis/CallGraph.h -%%CLANG%%llvm37/include/clang/Analysis/CodeInjector.h -%%CLANG%%llvm37/include/clang/Analysis/DomainSpecific/CocoaConventions.h -%%CLANG%%llvm37/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h -%%CLANG%%llvm37/include/clang/Analysis/FlowSensitive/DataflowValues.h -%%CLANG%%llvm37/include/clang/Analysis/ProgramPoint.h -%%CLANG%%llvm37/include/clang/Analysis/Support/BumpVector.h -%%CLANG%%llvm37/include/clang/Basic/ABI.h -%%CLANG%%llvm37/include/clang/Basic/AddressSpaces.h -%%CLANG%%llvm37/include/clang/Basic/AllDiagnostics.h -%%CLANG%%llvm37/include/clang/Basic/AttrHasAttributeImpl.inc -%%CLANG%%llvm37/include/clang/Basic/AttrKinds.h -%%CLANG%%llvm37/include/clang/Basic/AttrList.inc -%%CLANG%%llvm37/include/clang/Basic/Attributes.h -%%CLANG%%llvm37/include/clang/Basic/Builtins.def -%%CLANG%%llvm37/include/clang/Basic/Builtins.h -%%CLANG%%llvm37/include/clang/Basic/BuiltinsAArch64.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsAMDGPU.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsARM.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsHexagon.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsLe64.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsMips.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsNEON.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsNVPTX.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsPPC.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsSystemZ.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsX86.def -%%CLANG%%llvm37/include/clang/Basic/BuiltinsXCore.def -%%CLANG%%llvm37/include/clang/Basic/CapturedStmt.h -%%CLANG%%llvm37/include/clang/Basic/CharInfo.h -%%CLANG%%llvm37/include/clang/Basic/CommentOptions.h -%%CLANG%%llvm37/include/clang/Basic/Diagnostic.h -%%CLANG%%llvm37/include/clang/Basic/DiagnosticASTKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticAnalysisKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticCategories.h -%%CLANG%%llvm37/include/clang/Basic/DiagnosticCommentKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticCommonKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticDriverKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticFrontendKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticGroups.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticIDs.h -%%CLANG%%llvm37/include/clang/Basic/DiagnosticIndexName.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticLexKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticOptions.def -%%CLANG%%llvm37/include/clang/Basic/DiagnosticOptions.h -%%CLANG%%llvm37/include/clang/Basic/DiagnosticParseKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticSemaKinds.inc -%%CLANG%%llvm37/include/clang/Basic/DiagnosticSerializationKinds.inc -%%CLANG%%llvm37/include/clang/Basic/ExceptionSpecificationType.h -%%CLANG%%llvm37/include/clang/Basic/ExpressionTraits.h -%%CLANG%%llvm37/include/clang/Basic/FileManager.h -%%CLANG%%llvm37/include/clang/Basic/FileSystemOptions.h -%%CLANG%%llvm37/include/clang/Basic/FileSystemStatCache.h -%%CLANG%%llvm37/include/clang/Basic/IdentifierTable.h -%%CLANG%%llvm37/include/clang/Basic/LLVM.h -%%CLANG%%llvm37/include/clang/Basic/Lambda.h -%%CLANG%%llvm37/include/clang/Basic/LangOptions.def -%%CLANG%%llvm37/include/clang/Basic/LangOptions.h -%%CLANG%%llvm37/include/clang/Basic/Linkage.h -%%CLANG%%llvm37/include/clang/Basic/MacroBuilder.h -%%CLANG%%llvm37/include/clang/Basic/Module.h -%%CLANG%%llvm37/include/clang/Basic/ObjCRuntime.h -%%CLANG%%llvm37/include/clang/Basic/OpenCLExtensions.def -%%CLANG%%llvm37/include/clang/Basic/OpenMPKinds.def -%%CLANG%%llvm37/include/clang/Basic/OpenMPKinds.h -%%CLANG%%llvm37/include/clang/Basic/OperatorKinds.def -%%CLANG%%llvm37/include/clang/Basic/OperatorKinds.h -%%CLANG%%llvm37/include/clang/Basic/OperatorPrecedence.h -%%CLANG%%llvm37/include/clang/Basic/PartialDiagnostic.h -%%CLANG%%llvm37/include/clang/Basic/PlistSupport.h -%%CLANG%%llvm37/include/clang/Basic/PrettyStackTrace.h -%%CLANG%%llvm37/include/clang/Basic/SanitizerBlacklist.h -%%CLANG%%llvm37/include/clang/Basic/Sanitizers.def -%%CLANG%%llvm37/include/clang/Basic/Sanitizers.h -%%CLANG%%llvm37/include/clang/Basic/SourceLocation.h -%%CLANG%%llvm37/include/clang/Basic/SourceManager.h -%%CLANG%%llvm37/include/clang/Basic/SourceManagerInternals.h -%%CLANG%%llvm37/include/clang/Basic/Specifiers.h -%%CLANG%%llvm37/include/clang/Basic/TargetBuiltins.h -%%CLANG%%llvm37/include/clang/Basic/TargetCXXABI.h -%%CLANG%%llvm37/include/clang/Basic/TargetInfo.h -%%CLANG%%llvm37/include/clang/Basic/TargetOptions.h -%%CLANG%%llvm37/include/clang/Basic/TemplateKinds.h -%%CLANG%%llvm37/include/clang/Basic/TokenKinds.def -%%CLANG%%llvm37/include/clang/Basic/TokenKinds.h -%%CLANG%%llvm37/include/clang/Basic/TypeTraits.h -%%CLANG%%llvm37/include/clang/Basic/Version.h -%%CLANG%%llvm37/include/clang/Basic/Version.inc -%%CLANG%%llvm37/include/clang/Basic/VersionTuple.h -%%CLANG%%llvm37/include/clang/Basic/VirtualFileSystem.h -%%CLANG%%llvm37/include/clang/Basic/Visibility.h -%%CLANG%%llvm37/include/clang/Basic/arm_neon.inc -%%CLANG%%llvm37/include/clang/CodeGen/BackendUtil.h -%%CLANG%%llvm37/include/clang/CodeGen/CGFunctionInfo.h -%%CLANG%%llvm37/include/clang/CodeGen/CodeGenABITypes.h -%%CLANG%%llvm37/include/clang/CodeGen/CodeGenAction.h -%%CLANG%%llvm37/include/clang/CodeGen/ModuleBuilder.h -%%CLANG%%llvm37/include/clang/CodeGen/ObjectFilePCHContainerOperations.h -%%CLANG%%llvm37/include/clang/Config/config.h -%%CLANG%%llvm37/include/clang/Driver/Action.h -%%CLANG%%llvm37/include/clang/Driver/Compilation.h -%%CLANG%%llvm37/include/clang/Driver/Driver.h -%%CLANG%%llvm37/include/clang/Driver/DriverDiagnostic.h -%%CLANG%%llvm37/include/clang/Driver/Job.h -%%CLANG%%llvm37/include/clang/Driver/Multilib.h -%%CLANG%%llvm37/include/clang/Driver/Options.h -%%CLANG%%llvm37/include/clang/Driver/Options.inc -%%CLANG%%llvm37/include/clang/Driver/Phases.h -%%CLANG%%llvm37/include/clang/Driver/SanitizerArgs.h -%%CLANG%%llvm37/include/clang/Driver/Tool.h -%%CLANG%%llvm37/include/clang/Driver/ToolChain.h -%%CLANG%%llvm37/include/clang/Driver/Types.def -%%CLANG%%llvm37/include/clang/Driver/Types.h -%%CLANG%%llvm37/include/clang/Driver/Util.h -%%CLANG%%llvm37/include/clang/Edit/Commit.h -%%CLANG%%llvm37/include/clang/Edit/EditedSource.h -%%CLANG%%llvm37/include/clang/Edit/EditsReceiver.h -%%CLANG%%llvm37/include/clang/Edit/FileOffset.h -%%CLANG%%llvm37/include/clang/Edit/Rewriters.h -%%CLANG%%llvm37/include/clang/Format/Format.h -%%CLANG%%llvm37/include/clang/Frontend/ASTConsumers.h -%%CLANG%%llvm37/include/clang/Frontend/ASTUnit.h -%%CLANG%%llvm37/include/clang/Frontend/ChainedDiagnosticConsumer.h -%%CLANG%%llvm37/include/clang/Frontend/CodeGenOptions.def -%%CLANG%%llvm37/include/clang/Frontend/CodeGenOptions.h -%%CLANG%%llvm37/include/clang/Frontend/CommandLineSourceLoc.h -%%CLANG%%llvm37/include/clang/Frontend/CompilerInstance.h -%%CLANG%%llvm37/include/clang/Frontend/CompilerInvocation.h -%%CLANG%%llvm37/include/clang/Frontend/DependencyOutputOptions.h -%%CLANG%%llvm37/include/clang/Frontend/DiagnosticRenderer.h -%%CLANG%%llvm37/include/clang/Frontend/FrontendAction.h -%%CLANG%%llvm37/include/clang/Frontend/FrontendActions.h -%%CLANG%%llvm37/include/clang/Frontend/FrontendDiagnostic.h -%%CLANG%%llvm37/include/clang/Frontend/FrontendOptions.h -%%CLANG%%llvm37/include/clang/Frontend/FrontendPluginRegistry.h -%%CLANG%%llvm37/include/clang/Frontend/LangStandard.h -%%CLANG%%llvm37/include/clang/Frontend/LangStandards.def -%%CLANG%%llvm37/include/clang/Frontend/LayoutOverrideSource.h -%%CLANG%%llvm37/include/clang/Frontend/LogDiagnosticPrinter.h -%%CLANG%%llvm37/include/clang/Frontend/MigratorOptions.h -%%CLANG%%llvm37/include/clang/Frontend/MultiplexConsumer.h -%%CLANG%%llvm37/include/clang/Frontend/PCHContainerOperations.h -%%CLANG%%llvm37/include/clang/Frontend/PreprocessorOutputOptions.h -%%CLANG%%llvm37/include/clang/Frontend/SerializedDiagnosticPrinter.h -%%CLANG%%llvm37/include/clang/Frontend/SerializedDiagnosticReader.h -%%CLANG%%llvm37/include/clang/Frontend/SerializedDiagnostics.h -%%CLANG%%llvm37/include/clang/Frontend/TextDiagnostic.h -%%CLANG%%llvm37/include/clang/Frontend/TextDiagnosticBuffer.h -%%CLANG%%llvm37/include/clang/Frontend/TextDiagnosticPrinter.h -%%CLANG%%llvm37/include/clang/Frontend/Utils.h -%%CLANG%%llvm37/include/clang/Frontend/VerifyDiagnosticConsumer.h -%%CLANG%%llvm37/include/clang/FrontendTool/Utils.h -%%CLANG%%llvm37/include/clang/Index/CommentToXML.h -%%CLANG%%llvm37/include/clang/Index/USRGeneration.h -%%CLANG%%llvm37/include/clang/Lex/CodeCompletionHandler.h -%%CLANG%%llvm37/include/clang/Lex/DirectoryLookup.h -%%CLANG%%llvm37/include/clang/Lex/ExternalPreprocessorSource.h -%%CLANG%%llvm37/include/clang/Lex/HeaderMap.h -%%CLANG%%llvm37/include/clang/Lex/HeaderSearch.h -%%CLANG%%llvm37/include/clang/Lex/HeaderSearchOptions.h -%%CLANG%%llvm37/include/clang/Lex/LexDiagnostic.h -%%CLANG%%llvm37/include/clang/Lex/Lexer.h -%%CLANG%%llvm37/include/clang/Lex/LiteralSupport.h -%%CLANG%%llvm37/include/clang/Lex/MacroArgs.h -%%CLANG%%llvm37/include/clang/Lex/MacroInfo.h -%%CLANG%%llvm37/include/clang/Lex/ModuleLoader.h -%%CLANG%%llvm37/include/clang/Lex/ModuleMap.h -%%CLANG%%llvm37/include/clang/Lex/MultipleIncludeOpt.h -%%CLANG%%llvm37/include/clang/Lex/PPCallbacks.h -%%CLANG%%llvm37/include/clang/Lex/PPConditionalDirectiveRecord.h -%%CLANG%%llvm37/include/clang/Lex/PTHLexer.h -%%CLANG%%llvm37/include/clang/Lex/PTHManager.h -%%CLANG%%llvm37/include/clang/Lex/Pragma.h -%%CLANG%%llvm37/include/clang/Lex/PreprocessingRecord.h -%%CLANG%%llvm37/include/clang/Lex/Preprocessor.h -%%CLANG%%llvm37/include/clang/Lex/PreprocessorLexer.h -%%CLANG%%llvm37/include/clang/Lex/PreprocessorOptions.h -%%CLANG%%llvm37/include/clang/Lex/ScratchBuffer.h -%%CLANG%%llvm37/include/clang/Lex/Token.h -%%CLANG%%llvm37/include/clang/Lex/TokenConcatenation.h -%%CLANG%%llvm37/include/clang/Lex/TokenLexer.h -%%CLANG%%llvm37/include/clang/Parse/AttrParserStringSwitches.inc -%%CLANG%%llvm37/include/clang/Parse/ParseAST.h -%%CLANG%%llvm37/include/clang/Parse/ParseDiagnostic.h -%%CLANG%%llvm37/include/clang/Parse/Parser.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/DeltaTree.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/HTMLRewrite.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/RewriteBuffer.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/RewriteRope.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/Rewriter.h -%%CLANG%%llvm37/include/clang/Rewrite/Core/TokenRewriter.h -%%CLANG%%llvm37/include/clang/Rewrite/Frontend/ASTConsumers.h -%%CLANG%%llvm37/include/clang/Rewrite/Frontend/FixItRewriter.h -%%CLANG%%llvm37/include/clang/Rewrite/Frontend/FrontendActions.h -%%CLANG%%llvm37/include/clang/Rewrite/Frontend/Rewriters.h -%%CLANG%%llvm37/include/clang/Sema/AnalysisBasedWarnings.h -%%CLANG%%llvm37/include/clang/Sema/AttrParsedAttrImpl.inc -%%CLANG%%llvm37/include/clang/Sema/AttrParsedAttrKinds.inc -%%CLANG%%llvm37/include/clang/Sema/AttrParsedAttrList.inc -%%CLANG%%llvm37/include/clang/Sema/AttrSpellingListIndex.inc -%%CLANG%%llvm37/include/clang/Sema/AttrTemplateInstantiate.inc -%%CLANG%%llvm37/include/clang/Sema/AttributeList.h -%%CLANG%%llvm37/include/clang/Sema/CXXFieldCollector.h -%%CLANG%%llvm37/include/clang/Sema/CodeCompleteConsumer.h -%%CLANG%%llvm37/include/clang/Sema/CodeCompleteOptions.h -%%CLANG%%llvm37/include/clang/Sema/DeclSpec.h -%%CLANG%%llvm37/include/clang/Sema/DelayedDiagnostic.h -%%CLANG%%llvm37/include/clang/Sema/Designator.h -%%CLANG%%llvm37/include/clang/Sema/ExternalSemaSource.h -%%CLANG%%llvm37/include/clang/Sema/IdentifierResolver.h -%%CLANG%%llvm37/include/clang/Sema/Initialization.h -%%CLANG%%llvm37/include/clang/Sema/LocInfoType.h -%%CLANG%%llvm37/include/clang/Sema/Lookup.h -%%CLANG%%llvm37/include/clang/Sema/LoopHint.h -%%CLANG%%llvm37/include/clang/Sema/MultiplexExternalSemaSource.h -%%CLANG%%llvm37/include/clang/Sema/ObjCMethodList.h -%%CLANG%%llvm37/include/clang/Sema/Overload.h -%%CLANG%%llvm37/include/clang/Sema/Ownership.h -%%CLANG%%llvm37/include/clang/Sema/ParsedTemplate.h -%%CLANG%%llvm37/include/clang/Sema/PrettyDeclStackTrace.h -%%CLANG%%llvm37/include/clang/Sema/Scope.h -%%CLANG%%llvm37/include/clang/Sema/ScopeInfo.h -%%CLANG%%llvm37/include/clang/Sema/Sema.h -%%CLANG%%llvm37/include/clang/Sema/SemaConsumer.h -%%CLANG%%llvm37/include/clang/Sema/SemaDiagnostic.h -%%CLANG%%llvm37/include/clang/Sema/SemaFixItUtils.h -%%CLANG%%llvm37/include/clang/Sema/SemaInternal.h -%%CLANG%%llvm37/include/clang/Sema/SemaLambda.h -%%CLANG%%llvm37/include/clang/Sema/Template.h -%%CLANG%%llvm37/include/clang/Sema/TemplateDeduction.h -%%CLANG%%llvm37/include/clang/Sema/TypoCorrection.h -%%CLANG%%llvm37/include/clang/Sema/Weak.h -%%CLANG%%llvm37/include/clang/Serialization/ASTBitCodes.h -%%CLANG%%llvm37/include/clang/Serialization/ASTDeserializationListener.h -%%CLANG%%llvm37/include/clang/Serialization/ASTReader.h -%%CLANG%%llvm37/include/clang/Serialization/ASTWriter.h -%%CLANG%%llvm37/include/clang/Serialization/AttrPCHRead.inc -%%CLANG%%llvm37/include/clang/Serialization/AttrPCHWrite.inc -%%CLANG%%llvm37/include/clang/Serialization/ContinuousRangeMap.h -%%CLANG%%llvm37/include/clang/Serialization/GlobalModuleIndex.h -%%CLANG%%llvm37/include/clang/Serialization/Module.h -%%CLANG%%llvm37/include/clang/Serialization/ModuleManager.h -%%CLANG%%llvm37/include/clang/Serialization/SerializationDiagnostic.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/Analyses.def -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/Checker.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/CheckerManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/CheckerRegistry.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Frontend/FrontendActions.h -%%CLANG%%llvm37/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h -%%CLANG%%llvm37/include/clang/Tooling/ArgumentsAdjusters.h -%%CLANG%%llvm37/include/clang/Tooling/CommonOptionsParser.h -%%CLANG%%llvm37/include/clang/Tooling/CompilationDatabase.h -%%CLANG%%llvm37/include/clang/Tooling/CompilationDatabasePluginRegistry.h -%%CLANG%%llvm37/include/clang/Tooling/Core/Replacement.h -%%CLANG%%llvm37/include/clang/Tooling/FileMatchTrie.h -%%CLANG%%llvm37/include/clang/Tooling/JSONCompilationDatabase.h -%%CLANG%%llvm37/include/clang/Tooling/Refactoring.h -%%CLANG%%llvm37/include/clang/Tooling/RefactoringCallbacks.h -%%CLANG%%llvm37/include/clang/Tooling/ReplacementsYaml.h -%%CLANG%%llvm37/include/clang/Tooling/Tooling.h -%%LLD%%llvm37/include/lld/Config/Version.h -%%LLD%%llvm37/include/lld/Core/AbsoluteAtom.h -%%LLD%%llvm37/include/lld/Core/Alias.h -%%LLD%%llvm37/include/lld/Core/ArchiveLibraryFile.h -%%LLD%%llvm37/include/lld/Core/Atom.h -%%LLD%%llvm37/include/lld/Core/DefinedAtom.h -%%LLD%%llvm37/include/lld/Core/Error.h -%%LLD%%llvm37/include/lld/Core/File.h -%%LLD%%llvm37/include/lld/Core/Instrumentation.h -%%LLD%%llvm37/include/lld/Core/LLVM.h -%%LLD%%llvm37/include/lld/Core/LinkingContext.h -%%LLD%%llvm37/include/lld/Core/Node.h -%%LLD%%llvm37/include/lld/Core/Parallel.h -%%LLD%%llvm37/include/lld/Core/Pass.h -%%LLD%%llvm37/include/lld/Core/PassManager.h -%%LLD%%llvm37/include/lld/Core/Reader.h -%%LLD%%llvm37/include/lld/Core/Reference.h -%%LLD%%llvm37/include/lld/Core/Resolver.h -%%LLD%%llvm37/include/lld/Core/STDExtras.h -%%LLD%%llvm37/include/lld/Core/SharedLibraryAtom.h -%%LLD%%llvm37/include/lld/Core/SharedLibraryFile.h -%%LLD%%llvm37/include/lld/Core/Simple.h -%%LLD%%llvm37/include/lld/Core/SymbolTable.h -%%LLD%%llvm37/include/lld/Core/UndefinedAtom.h -%%LLD%%llvm37/include/lld/Core/Writer.h -%%LLD%%llvm37/include/lld/Core/range.h -%%LLD%%llvm37/include/lld/Driver/Driver.h -%%LLD%%llvm37/include/lld/Driver/WinLinkModuleDef.h -%%LLD%%llvm37/include/lld/ReaderWriter/AtomLayout.h -%%LLD%%llvm37/include/lld/ReaderWriter/CoreLinkingContext.h -%%LLD%%llvm37/include/lld/ReaderWriter/ELFLinkingContext.h -%%LLD%%llvm37/include/lld/ReaderWriter/LinkerScript.h -%%LLD%%llvm37/include/lld/ReaderWriter/MachOLinkingContext.h -%%LLD%%llvm37/include/lld/ReaderWriter/PECOFFLinkingContext.h -%%LLD%%llvm37/include/lld/ReaderWriter/YamlContext.h -%%LLDB%%llvm37/include/lldb/API/LLDB.h -%%LLDB%%llvm37/include/lldb/API/SBAddress.h -%%LLDB%%llvm37/include/lldb/API/SBAttachInfo.h -%%LLDB%%llvm37/include/lldb/API/SBBlock.h -%%LLDB%%llvm37/include/lldb/API/SBBreakpoint.h -%%LLDB%%llvm37/include/lldb/API/SBBreakpointLocation.h -%%LLDB%%llvm37/include/lldb/API/SBBroadcaster.h -%%LLDB%%llvm37/include/lldb/API/SBCommandInterpreter.h -%%LLDB%%llvm37/include/lldb/API/SBCommandReturnObject.h -%%LLDB%%llvm37/include/lldb/API/SBCommunication.h -%%LLDB%%llvm37/include/lldb/API/SBCompileUnit.h -%%LLDB%%llvm37/include/lldb/API/SBData.h -%%LLDB%%llvm37/include/lldb/API/SBDebugger.h -%%LLDB%%llvm37/include/lldb/API/SBDeclaration.h -%%LLDB%%llvm37/include/lldb/API/SBDefines.h -%%LLDB%%llvm37/include/lldb/API/SBError.h -%%LLDB%%llvm37/include/lldb/API/SBEvent.h -%%LLDB%%llvm37/include/lldb/API/SBExecutionContext.h -%%LLDB%%llvm37/include/lldb/API/SBExpressionOptions.h -%%LLDB%%llvm37/include/lldb/API/SBFileSpec.h -%%LLDB%%llvm37/include/lldb/API/SBFileSpecList.h -%%LLDB%%llvm37/include/lldb/API/SBFrame.h -%%LLDB%%llvm37/include/lldb/API/SBFunction.h -%%LLDB%%llvm37/include/lldb/API/SBHostOS.h -%%LLDB%%llvm37/include/lldb/API/SBInstruction.h -%%LLDB%%llvm37/include/lldb/API/SBInstructionList.h -%%LLDB%%llvm37/include/lldb/API/SBLanguageRuntime.h -%%LLDB%%llvm37/include/lldb/API/SBLaunchInfo.h -%%LLDB%%llvm37/include/lldb/API/SBLineEntry.h -%%LLDB%%llvm37/include/lldb/API/SBListener.h -%%LLDB%%llvm37/include/lldb/API/SBModule.h -%%LLDB%%llvm37/include/lldb/API/SBModuleSpec.h -%%LLDB%%llvm37/include/lldb/API/SBPlatform.h -%%LLDB%%llvm37/include/lldb/API/SBProcess.h -%%LLDB%%llvm37/include/lldb/API/SBQueue.h -%%LLDB%%llvm37/include/lldb/API/SBQueueItem.h -%%LLDB%%llvm37/include/lldb/API/SBSection.h -%%LLDB%%llvm37/include/lldb/API/SBSourceManager.h -%%LLDB%%llvm37/include/lldb/API/SBStream.h -%%LLDB%%llvm37/include/lldb/API/SBStringList.h -%%LLDB%%llvm37/include/lldb/API/SBSymbol.h -%%LLDB%%llvm37/include/lldb/API/SBSymbolContext.h -%%LLDB%%llvm37/include/lldb/API/SBSymbolContextList.h -%%LLDB%%llvm37/include/lldb/API/SBTarget.h -%%LLDB%%llvm37/include/lldb/API/SBThread.h -%%LLDB%%llvm37/include/lldb/API/SBThreadCollection.h -%%LLDB%%llvm37/include/lldb/API/SBThreadPlan.h -%%LLDB%%llvm37/include/lldb/API/SBType.h -%%LLDB%%llvm37/include/lldb/API/SBTypeCategory.h -%%LLDB%%llvm37/include/lldb/API/SBTypeEnumMember.h -%%LLDB%%llvm37/include/lldb/API/SBTypeFilter.h -%%LLDB%%llvm37/include/lldb/API/SBTypeFormat.h -%%LLDB%%llvm37/include/lldb/API/SBTypeNameSpecifier.h -%%LLDB%%llvm37/include/lldb/API/SBTypeSummary.h -%%LLDB%%llvm37/include/lldb/API/SBTypeSynthetic.h -%%LLDB%%llvm37/include/lldb/API/SBUnixSignals.h -%%LLDB%%llvm37/include/lldb/API/SBValue.h -%%LLDB%%llvm37/include/lldb/API/SBValueList.h -%%LLDB%%llvm37/include/lldb/API/SBVariablesOptions.h -%%LLDB%%llvm37/include/lldb/API/SBWatchpoint.h -%%LLDB%%llvm37/include/lldb/API/SystemInitializerFull.h -%%LLDB%%llvm37/include/lldb/Breakpoint/Breakpoint.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointID.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointIDList.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointList.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointLocation.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointLocationCollection.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointLocationList.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointOptions.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointResolver.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointResolverAddress.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointResolverFileLine.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointResolverFileRegex.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointResolverName.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointSite.h -%%LLDB%%llvm37/include/lldb/Breakpoint/BreakpointSiteList.h -%%LLDB%%llvm37/include/lldb/Breakpoint/Stoppoint.h -%%LLDB%%llvm37/include/lldb/Breakpoint/StoppointCallbackContext.h -%%LLDB%%llvm37/include/lldb/Breakpoint/StoppointLocation.h -%%LLDB%%llvm37/include/lldb/Breakpoint/Watchpoint.h -%%LLDB%%llvm37/include/lldb/Breakpoint/WatchpointList.h -%%LLDB%%llvm37/include/lldb/Breakpoint/WatchpointOptions.h -%%LLDB%%llvm37/include/lldb/Core/Address.h -%%LLDB%%llvm37/include/lldb/Core/AddressRange.h -%%LLDB%%llvm37/include/lldb/Core/AddressResolver.h -%%LLDB%%llvm37/include/lldb/Core/AddressResolverFileLine.h -%%LLDB%%llvm37/include/lldb/Core/AddressResolverName.h -%%LLDB%%llvm37/include/lldb/Core/ArchSpec.h -%%LLDB%%llvm37/include/lldb/Core/Baton.h -%%LLDB%%llvm37/include/lldb/Core/Broadcaster.h -%%LLDB%%llvm37/include/lldb/Core/ClangForward.h -%%LLDB%%llvm37/include/lldb/Core/Communication.h -%%LLDB%%llvm37/include/lldb/Core/Connection.h -%%LLDB%%llvm37/include/lldb/Core/ConnectionMachPort.h -%%LLDB%%llvm37/include/lldb/Core/ConnectionSharedMemory.h -%%LLDB%%llvm37/include/lldb/Core/ConstString.h -%%LLDB%%llvm37/include/lldb/Core/CxaDemangle.h -%%LLDB%%llvm37/include/lldb/Core/DataBuffer.h -%%LLDB%%llvm37/include/lldb/Core/DataBufferHeap.h -%%LLDB%%llvm37/include/lldb/Core/DataBufferMemoryMap.h -%%LLDB%%llvm37/include/lldb/Core/DataEncoder.h -%%LLDB%%llvm37/include/lldb/Core/DataExtractor.h -%%LLDB%%llvm37/include/lldb/Core/Debugger.h -%%LLDB%%llvm37/include/lldb/Core/Disassembler.h -%%LLDB%%llvm37/include/lldb/Core/EmulateInstruction.h -%%LLDB%%llvm37/include/lldb/Core/Error.h -%%LLDB%%llvm37/include/lldb/Core/Event.h -%%LLDB%%llvm37/include/lldb/Core/FastDemangle.h -%%LLDB%%llvm37/include/lldb/Core/FileLineResolver.h -%%LLDB%%llvm37/include/lldb/Core/FileSpecList.h -%%LLDB%%llvm37/include/lldb/Core/Flags.h -%%LLDB%%llvm37/include/lldb/Core/FormatEntity.h -%%LLDB%%llvm37/include/lldb/Core/History.h -%%LLDB%%llvm37/include/lldb/Core/IOHandler.h -%%LLDB%%llvm37/include/lldb/Core/IOStreamMacros.h -%%LLDB%%llvm37/include/lldb/Core/Language.h -%%LLDB%%llvm37/include/lldb/Core/Listener.h -%%LLDB%%llvm37/include/lldb/Core/Log.h -%%LLDB%%llvm37/include/lldb/Core/Logging.h -%%LLDB%%llvm37/include/lldb/Core/Mangled.h -%%LLDB%%llvm37/include/lldb/Core/MappedHash.h -%%LLDB%%llvm37/include/lldb/Core/Module.h -%%LLDB%%llvm37/include/lldb/Core/ModuleChild.h -%%LLDB%%llvm37/include/lldb/Core/ModuleList.h -%%LLDB%%llvm37/include/lldb/Core/ModuleSpec.h -%%LLDB%%llvm37/include/lldb/Core/Opcode.h -%%LLDB%%llvm37/include/lldb/Core/PluginInterface.h -%%LLDB%%llvm37/include/lldb/Core/PluginManager.h -%%LLDB%%llvm37/include/lldb/Core/RangeMap.h -%%LLDB%%llvm37/include/lldb/Core/RegisterValue.h -%%LLDB%%llvm37/include/lldb/Core/RegularExpression.h -%%LLDB%%llvm37/include/lldb/Core/STLUtils.h -%%LLDB%%llvm37/include/lldb/Core/Scalar.h -%%LLDB%%llvm37/include/lldb/Core/SearchFilter.h -%%LLDB%%llvm37/include/lldb/Core/Section.h -%%LLDB%%llvm37/include/lldb/Core/SourceManager.h -%%LLDB%%llvm37/include/lldb/Core/State.h -%%LLDB%%llvm37/include/lldb/Core/Stream.h -%%LLDB%%llvm37/include/lldb/Core/StreamAsynchronousIO.h -%%LLDB%%llvm37/include/lldb/Core/StreamBuffer.h -%%LLDB%%llvm37/include/lldb/Core/StreamCallback.h -%%LLDB%%llvm37/include/lldb/Core/StreamFile.h -%%LLDB%%llvm37/include/lldb/Core/StreamGDBRemote.h -%%LLDB%%llvm37/include/lldb/Core/StreamString.h -%%LLDB%%llvm37/include/lldb/Core/StreamTee.h -%%LLDB%%llvm37/include/lldb/Core/StringList.h -%%LLDB%%llvm37/include/lldb/Core/StructuredData.h -%%LLDB%%llvm37/include/lldb/Core/ThreadSafeDenseMap.h -%%LLDB%%llvm37/include/lldb/Core/ThreadSafeDenseSet.h -%%LLDB%%llvm37/include/lldb/Core/ThreadSafeSTLMap.h -%%LLDB%%llvm37/include/lldb/Core/ThreadSafeValue.h -%%LLDB%%llvm37/include/lldb/Core/Timer.h -%%LLDB%%llvm37/include/lldb/Core/UUID.h -%%LLDB%%llvm37/include/lldb/Core/UniqueCStringMap.h -%%LLDB%%llvm37/include/lldb/Core/UserID.h -%%LLDB%%llvm37/include/lldb/Core/UserSettingsController.h -%%LLDB%%llvm37/include/lldb/Core/VMRange.h -%%LLDB%%llvm37/include/lldb/Core/Value.h -%%LLDB%%llvm37/include/lldb/Core/ValueObject.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectCast.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectChild.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectConstResult.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectConstResultChild.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectConstResultImpl.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectDynamicValue.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectList.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectMemory.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectRegister.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectSyntheticFilter.h -%%LLDB%%llvm37/include/lldb/Core/ValueObjectVariable.h -%%LLDB%%llvm37/include/lldb/Core/dwarf.h -%%LLDB%%llvm37/include/lldb/DataFormatters/CXXFormatterFunctions.h -%%LLDB%%llvm37/include/lldb/DataFormatters/DataVisualization.h -%%LLDB%%llvm37/include/lldb/DataFormatters/FormatCache.h -%%LLDB%%llvm37/include/lldb/DataFormatters/FormatClasses.h -%%LLDB%%llvm37/include/lldb/DataFormatters/FormatManager.h -%%LLDB%%llvm37/include/lldb/DataFormatters/FormattersContainer.h -%%LLDB%%llvm37/include/lldb/DataFormatters/StringPrinter.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeCategory.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeCategoryMap.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeFormat.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeSummary.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeSynthetic.h -%%LLDB%%llvm37/include/lldb/DataFormatters/TypeValidator.h -%%LLDB%%llvm37/include/lldb/DataFormatters/ValueObjectPrinter.h -%%LLDB%%llvm37/include/lldb/DataFormatters/VectorType.h -%%LLDB%%llvm37/include/lldb/Expression/ASTDumper.h -%%LLDB%%llvm37/include/lldb/Expression/ASTResultSynthesizer.h -%%LLDB%%llvm37/include/lldb/Expression/ASTStructExtractor.h -%%LLDB%%llvm37/include/lldb/Expression/ClangASTSource.h -%%LLDB%%llvm37/include/lldb/Expression/ClangExpression.h -%%LLDB%%llvm37/include/lldb/Expression/ClangExpressionDeclMap.h -%%LLDB%%llvm37/include/lldb/Expression/ClangExpressionParser.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***