Update to clang-3.6.0 (2015-02-27)
Non-comprehensive list of changes in this release: - Support for AuroraUX has been removed. - Added support for a native object file-based bitcode wrapper format. - Added support for MSVC?s __vectorcall calling convention as x86_vectorcallcc.
This commit is contained in:
parent
e232297338
commit
f11d3036d7
3 changed files with 94 additions and 40 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.34 2015/01/29 11:38:29 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.35 2015/03/03 12:04:08 tnn Exp $
|
||||
|
||||
DISTNAME= clang-3.5.1
|
||||
DISTNAME= clang-3.6.0
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://llvm.org/releases/${PKGVERSION_NOREV}/
|
||||
DISTFILES= llvm-${PKGVERSION_NOREV}.src.tar.xz \
|
||||
|
|
104
lang/clang/PLIST
104
lang/clang/PLIST
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.14 2014/09/06 07:37:14 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.15 2015/03/03 12:04:08 tnn Exp $
|
||||
bin/FileCheck
|
||||
bin/bugpoint
|
||||
bin/c-index-test
|
||||
|
@ -18,6 +18,7 @@ bin/llvm-config
|
|||
bin/llvm-cov
|
||||
bin/llvm-diff
|
||||
bin/llvm-dis
|
||||
bin/llvm-dsymutil
|
||||
bin/llvm-dwarfdump
|
||||
bin/llvm-extract
|
||||
bin/llvm-link
|
||||
|
@ -33,9 +34,13 @@ bin/llvm-size
|
|||
bin/llvm-stress
|
||||
bin/llvm-symbolizer
|
||||
bin/llvm-tblgen
|
||||
bin/llvm-vtabledump
|
||||
bin/macho-dump
|
||||
bin/not
|
||||
bin/obj2yaml
|
||||
bin/opt
|
||||
bin/verify-uselistorder
|
||||
bin/yaml2obj
|
||||
include/c++/v1/__bit_reference
|
||||
include/c++/v1/__config
|
||||
include/c++/v1/__debug
|
||||
|
@ -92,6 +97,7 @@ include/c++/v1/experimental/__config
|
|||
include/c++/v1/experimental/dynarray
|
||||
include/c++/v1/experimental/optional
|
||||
include/c++/v1/experimental/string_view
|
||||
include/c++/v1/experimental/type_traits
|
||||
include/c++/v1/experimental/utility
|
||||
include/c++/v1/ext/__hash
|
||||
include/c++/v1/ext/hash_map
|
||||
|
@ -275,6 +281,7 @@ include/clang/Analysis/AnalysisDiagnostic.h
|
|||
include/clang/Analysis/CFG.h
|
||||
include/clang/Analysis/CFGStmtMap.h
|
||||
include/clang/Analysis/CallGraph.h
|
||||
include/clang/Analysis/CodeInjector.h
|
||||
include/clang/Analysis/DomainSpecific/CocoaConventions.h
|
||||
include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
|
||||
include/clang/Analysis/FlowSensitive/DataflowValues.h
|
||||
|
@ -292,6 +299,7 @@ include/clang/Basic/Builtins.h
|
|||
include/clang/Basic/BuiltinsAArch64.def
|
||||
include/clang/Basic/BuiltinsARM.def
|
||||
include/clang/Basic/BuiltinsHexagon.def
|
||||
include/clang/Basic/BuiltinsLe64.def
|
||||
include/clang/Basic/BuiltinsMips.def
|
||||
include/clang/Basic/BuiltinsNEON.def
|
||||
include/clang/Basic/BuiltinsNVPTX.def
|
||||
|
@ -342,7 +350,9 @@ include/clang/Basic/OperatorPrecedence.h
|
|||
include/clang/Basic/PartialDiagnostic.h
|
||||
include/clang/Basic/PlistSupport.h
|
||||
include/clang/Basic/PrettyStackTrace.h
|
||||
include/clang/Basic/SanitizerBlacklist.h
|
||||
include/clang/Basic/Sanitizers.def
|
||||
include/clang/Basic/Sanitizers.h
|
||||
include/clang/Basic/SourceLocation.h
|
||||
include/clang/Basic/SourceManager.h
|
||||
include/clang/Basic/SourceManagerInternals.h
|
||||
|
@ -411,6 +421,8 @@ include/clang/Frontend/MigratorOptions.h
|
|||
include/clang/Frontend/MultiplexConsumer.h
|
||||
include/clang/Frontend/PreprocessorOutputOptions.h
|
||||
include/clang/Frontend/SerializedDiagnosticPrinter.h
|
||||
include/clang/Frontend/SerializedDiagnosticReader.h
|
||||
include/clang/Frontend/SerializedDiagnostics.h
|
||||
include/clang/Frontend/TextDiagnostic.h
|
||||
include/clang/Frontend/TextDiagnosticBuffer.h
|
||||
include/clang/Frontend/TextDiagnosticPrinter.h
|
||||
|
@ -553,10 +565,12 @@ include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
|
|||
include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
|
||||
include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
|
||||
include/clang/StaticAnalyzer/Frontend/FrontendActions.h
|
||||
include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
|
||||
include/clang/Tooling/ArgumentsAdjusters.h
|
||||
include/clang/Tooling/CommonOptionsParser.h
|
||||
include/clang/Tooling/CompilationDatabase.h
|
||||
include/clang/Tooling/CompilationDatabasePluginRegistry.h
|
||||
include/clang/Tooling/Core/Replacement.h
|
||||
include/clang/Tooling/FileMatchTrie.h
|
||||
include/clang/Tooling/JSONCompilationDatabase.h
|
||||
include/clang/Tooling/Refactoring.h
|
||||
|
@ -643,6 +657,7 @@ include/llvm/ADT/iterator.h
|
|||
include/llvm/ADT/iterator_range.h
|
||||
include/llvm/Analysis/AliasAnalysis.h
|
||||
include/llvm/Analysis/AliasSetTracker.h
|
||||
include/llvm/Analysis/AssumptionCache.h
|
||||
include/llvm/Analysis/BlockFrequencyInfo.h
|
||||
include/llvm/Analysis/BlockFrequencyInfoImpl.h
|
||||
include/llvm/Analysis/BranchProbabilityInfo.h
|
||||
|
@ -661,7 +676,7 @@ include/llvm/Analysis/DependenceAnalysis.h
|
|||
include/llvm/Analysis/DomPrinter.h
|
||||
include/llvm/Analysis/DominanceFrontier.h
|
||||
include/llvm/Analysis/DominanceFrontierImpl.h
|
||||
include/llvm/Analysis/FindUsedTypes.h
|
||||
include/llvm/Analysis/FunctionTargetTransformInfo.h
|
||||
include/llvm/Analysis/IVUsers.h
|
||||
include/llvm/Analysis/InlineCost.h
|
||||
include/llvm/Analysis/InstructionSimplify.h
|
||||
|
@ -713,8 +728,10 @@ include/llvm/CodeGen/CallingConvLower.h
|
|||
include/llvm/CodeGen/CommandFlags.h
|
||||
include/llvm/CodeGen/DAGCombine.h
|
||||
include/llvm/CodeGen/DFAPacketizer.h
|
||||
include/llvm/CodeGen/DIE.h
|
||||
include/llvm/CodeGen/EdgeBundles.h
|
||||
include/llvm/CodeGen/FastISel.h
|
||||
include/llvm/CodeGen/ForwardControlFlowIntegrity.h
|
||||
include/llvm/CodeGen/FunctionLoweringInfo.h
|
||||
include/llvm/CodeGen/GCMetadata.h
|
||||
include/llvm/CodeGen/GCMetadataPrinter.h
|
||||
|
@ -722,7 +739,6 @@ include/llvm/CodeGen/GCStrategy.h
|
|||
include/llvm/CodeGen/GCs.h
|
||||
include/llvm/CodeGen/ISDOpcodes.h
|
||||
include/llvm/CodeGen/IntrinsicLowering.h
|
||||
include/llvm/CodeGen/JITCodeEmitter.h
|
||||
include/llvm/CodeGen/JumpInstrTables.h
|
||||
include/llvm/CodeGen/LatencyPriorityQueue.h
|
||||
include/llvm/CodeGen/LexicalScopes.h
|
||||
|
@ -740,8 +756,7 @@ include/llvm/CodeGen/MachORelocation.h
|
|||
include/llvm/CodeGen/MachineBasicBlock.h
|
||||
include/llvm/CodeGen/MachineBlockFrequencyInfo.h
|
||||
include/llvm/CodeGen/MachineBranchProbabilityInfo.h
|
||||
include/llvm/CodeGen/MachineCodeEmitter.h
|
||||
include/llvm/CodeGen/MachineCodeInfo.h
|
||||
include/llvm/CodeGen/MachineCombinerPattern.h
|
||||
include/llvm/CodeGen/MachineConstantPool.h
|
||||
include/llvm/CodeGen/MachineDominanceFrontier.h
|
||||
include/llvm/CodeGen/MachineDominators.h
|
||||
|
@ -762,7 +777,6 @@ include/llvm/CodeGen/MachinePassRegistry.h
|
|||
include/llvm/CodeGen/MachinePostDominators.h
|
||||
include/llvm/CodeGen/MachineRegionInfo.h
|
||||
include/llvm/CodeGen/MachineRegisterInfo.h
|
||||
include/llvm/CodeGen/MachineRelocation.h
|
||||
include/llvm/CodeGen/MachineSSAUpdater.h
|
||||
include/llvm/CodeGen/MachineScheduler.h
|
||||
include/llvm/CodeGen/MachineTraceMetrics.h
|
||||
|
@ -771,8 +785,8 @@ include/llvm/CodeGen/PBQP/CostAllocator.h
|
|||
include/llvm/CodeGen/PBQP/Graph.h
|
||||
include/llvm/CodeGen/PBQP/Math.h
|
||||
include/llvm/CodeGen/PBQP/ReductionRules.h
|
||||
include/llvm/CodeGen/PBQP/RegAllocSolver.h
|
||||
include/llvm/CodeGen/PBQP/Solution.h
|
||||
include/llvm/CodeGen/PBQPRAConstraint.h
|
||||
include/llvm/CodeGen/Passes.h
|
||||
include/llvm/CodeGen/PseudoSourceValue.h
|
||||
include/llvm/CodeGen/RegAllocPBQP.h
|
||||
|
@ -807,18 +821,30 @@ include/llvm/Config/Targets.def
|
|||
include/llvm/Config/config.h
|
||||
include/llvm/Config/llvm-config.h
|
||||
include/llvm/DebugInfo/DIContext.h
|
||||
include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h
|
||||
include/llvm/DebugInfo/DWARFAcceleratorTable.h
|
||||
include/llvm/DebugInfo/DWARFCompileUnit.h
|
||||
include/llvm/DebugInfo/DWARFContext.h
|
||||
include/llvm/DebugInfo/DWARFDebugAbbrev.h
|
||||
include/llvm/DebugInfo/DWARFDebugArangeSet.h
|
||||
include/llvm/DebugInfo/DWARFDebugAranges.h
|
||||
include/llvm/DebugInfo/DWARFDebugFrame.h
|
||||
include/llvm/DebugInfo/DWARFDebugInfoEntry.h
|
||||
include/llvm/DebugInfo/DWARFDebugLine.h
|
||||
include/llvm/DebugInfo/DWARFDebugLoc.h
|
||||
include/llvm/DebugInfo/DWARFDebugRangeList.h
|
||||
include/llvm/DebugInfo/DWARFFormValue.h
|
||||
include/llvm/DebugInfo/DWARFRelocMap.h
|
||||
include/llvm/DebugInfo/DWARFSection.h
|
||||
include/llvm/DebugInfo/DWARFTypeUnit.h
|
||||
include/llvm/DebugInfo/DWARFUnit.h
|
||||
include/llvm/ExecutionEngine/ExecutionEngine.h
|
||||
include/llvm/ExecutionEngine/GenericValue.h
|
||||
include/llvm/ExecutionEngine/Interpreter.h
|
||||
include/llvm/ExecutionEngine/JIT.h
|
||||
include/llvm/ExecutionEngine/JITEventListener.h
|
||||
include/llvm/ExecutionEngine/JITMemoryManager.h
|
||||
include/llvm/ExecutionEngine/MCJIT.h
|
||||
include/llvm/ExecutionEngine/OProfileWrapper.h
|
||||
include/llvm/ExecutionEngine/ObjectBuffer.h
|
||||
include/llvm/ExecutionEngine/ObjectCache.h
|
||||
include/llvm/ExecutionEngine/ObjectImage.h
|
||||
include/llvm/ExecutionEngine/RTDyldMemoryManager.h
|
||||
include/llvm/ExecutionEngine/RuntimeDyld.h
|
||||
include/llvm/ExecutionEngine/RuntimeDyldChecker.h
|
||||
|
@ -874,25 +900,30 @@ include/llvm/IR/IntrinsicsR600.td
|
|||
include/llvm/IR/IntrinsicsX86.td
|
||||
include/llvm/IR/IntrinsicsXCore.td
|
||||
include/llvm/IR/LLVMContext.h
|
||||
include/llvm/IR/LeakDetector.h
|
||||
include/llvm/IR/LegacyPassManager.h
|
||||
include/llvm/IR/LegacyPassManagers.h
|
||||
include/llvm/IR/LegacyPassNameParser.h
|
||||
include/llvm/IR/MDBuilder.h
|
||||
include/llvm/IR/Mangler.h
|
||||
include/llvm/IR/Metadata.def
|
||||
include/llvm/IR/Metadata.h
|
||||
include/llvm/IR/MetadataTracking.h
|
||||
include/llvm/IR/Module.h
|
||||
include/llvm/IR/NoFolder.h
|
||||
include/llvm/IR/OperandTraits.h
|
||||
include/llvm/IR/Operator.h
|
||||
include/llvm/IR/PassManager.h
|
||||
include/llvm/IR/PassManagerInternal.h
|
||||
include/llvm/IR/PatternMatch.h
|
||||
include/llvm/IR/PredIteratorCache.h
|
||||
include/llvm/IR/Statepoint.h
|
||||
include/llvm/IR/SymbolTableListTraits.h
|
||||
include/llvm/IR/TrackingMDRef.h
|
||||
include/llvm/IR/Type.h
|
||||
include/llvm/IR/TypeBuilder.h
|
||||
include/llvm/IR/TypeFinder.h
|
||||
include/llvm/IR/Use.h
|
||||
include/llvm/IR/UseListOrder.h
|
||||
include/llvm/IR/User.h
|
||||
include/llvm/IR/Value.h
|
||||
include/llvm/IR/ValueHandle.h
|
||||
|
@ -908,10 +939,6 @@ include/llvm/LinkAllIR.h
|
|||
include/llvm/LinkAllPasses.h
|
||||
include/llvm/Linker/Linker.h
|
||||
include/llvm/MC/ConstantPools.h
|
||||
include/llvm/MC/MCAnalysis/MCAtom.h
|
||||
include/llvm/MC/MCAnalysis/MCFunction.h
|
||||
include/llvm/MC/MCAnalysis/MCModule.h
|
||||
include/llvm/MC/MCAnalysis/MCModuleYAML.h
|
||||
include/llvm/MC/MCAsmBackend.h
|
||||
include/llvm/MC/MCAsmInfo.h
|
||||
include/llvm/MC/MCAsmInfoCOFF.h
|
||||
|
@ -945,10 +972,8 @@ include/llvm/MC/MCLabel.h
|
|||
include/llvm/MC/MCLinkerOptimizationHint.h
|
||||
include/llvm/MC/MCMachOSymbolFlags.h
|
||||
include/llvm/MC/MCMachObjectWriter.h
|
||||
include/llvm/MC/MCObjectDisassembler.h
|
||||
include/llvm/MC/MCObjectFileInfo.h
|
||||
include/llvm/MC/MCObjectStreamer.h
|
||||
include/llvm/MC/MCObjectSymbolizer.h
|
||||
include/llvm/MC/MCObjectWriter.h
|
||||
include/llvm/MC/MCParser/AsmCond.h
|
||||
include/llvm/MC/MCParser/AsmLexer.h
|
||||
|
@ -1007,9 +1032,15 @@ include/llvm/PassInfo.h
|
|||
include/llvm/PassManager.h
|
||||
include/llvm/PassRegistry.h
|
||||
include/llvm/PassSupport.h
|
||||
include/llvm/ProfileData/CoverageMapping.h
|
||||
include/llvm/ProfileData/CoverageMappingReader.h
|
||||
include/llvm/ProfileData/CoverageMappingWriter.h
|
||||
include/llvm/ProfileData/InstrProf.h
|
||||
include/llvm/ProfileData/InstrProfReader.h
|
||||
include/llvm/ProfileData/InstrProfWriter.h
|
||||
include/llvm/ProfileData/SampleProf.h
|
||||
include/llvm/ProfileData/SampleProfReader.h
|
||||
include/llvm/ProfileData/SampleProfWriter.h
|
||||
include/llvm/Support/AIXDataTypesFix.h
|
||||
include/llvm/Support/ARMBuildAttributes.h
|
||||
include/llvm/Support/ARMEHABI.h
|
||||
|
@ -1038,6 +1069,16 @@ include/llvm/Support/Debug.h
|
|||
include/llvm/Support/Dwarf.h
|
||||
include/llvm/Support/DynamicLibrary.h
|
||||
include/llvm/Support/ELF.h
|
||||
include/llvm/Support/ELFRelocs/AArch64.def
|
||||
include/llvm/Support/ELFRelocs/ARM.def
|
||||
include/llvm/Support/ELFRelocs/Hexagon.def
|
||||
include/llvm/Support/ELFRelocs/Mips.def
|
||||
include/llvm/Support/ELFRelocs/PowerPC.def
|
||||
include/llvm/Support/ELFRelocs/PowerPC64.def
|
||||
include/llvm/Support/ELFRelocs/Sparc.def
|
||||
include/llvm/Support/ELFRelocs/SystemZ.def
|
||||
include/llvm/Support/ELFRelocs/i386.def
|
||||
include/llvm/Support/ELFRelocs/${MACHINE_ARCH}.def
|
||||
include/llvm/Support/Endian.h
|
||||
include/llvm/Support/EndianStream.h
|
||||
include/llvm/Support/Errc.h
|
||||
|
@ -1054,7 +1095,6 @@ include/llvm/Support/GenericDomTree.h
|
|||
include/llvm/Support/GenericDomTreeConstruction.h
|
||||
include/llvm/Support/GraphWriter.h
|
||||
include/llvm/Support/Host.h
|
||||
include/llvm/Support/IncludeFile.h
|
||||
include/llvm/Support/LEB128.h
|
||||
include/llvm/Support/LICENSE.TXT
|
||||
include/llvm/Support/LineIterator.h
|
||||
|
@ -1070,6 +1110,7 @@ include/llvm/Support/MemoryObject.h
|
|||
include/llvm/Support/Mutex.h
|
||||
include/llvm/Support/MutexGuard.h
|
||||
include/llvm/Support/OnDiskHashTable.h
|
||||
include/llvm/Support/Options.h
|
||||
include/llvm/Support/OutputBuffer.h
|
||||
include/llvm/Support/Path.h
|
||||
include/llvm/Support/PluginLoader.h
|
||||
|
@ -1091,9 +1132,8 @@ include/llvm/Support/Signals.h
|
|||
include/llvm/Support/Solaris.h
|
||||
include/llvm/Support/SourceMgr.h
|
||||
include/llvm/Support/SpecialCaseList.h
|
||||
include/llvm/Support/StreamableMemoryObject.h
|
||||
include/llvm/Support/StreamingMemoryObject.h
|
||||
include/llvm/Support/StringPool.h
|
||||
include/llvm/Support/StringRefMemoryObject.h
|
||||
include/llvm/Support/SwapByteOrder.h
|
||||
include/llvm/Support/SystemUtils.h
|
||||
include/llvm/Support/TargetRegistry.h
|
||||
|
@ -1105,6 +1145,7 @@ include/llvm/Support/Timer.h
|
|||
include/llvm/Support/ToolOutputFile.h
|
||||
include/llvm/Support/Unicode.h
|
||||
include/llvm/Support/UnicodeCharRanges.h
|
||||
include/llvm/Support/UniqueLock.h
|
||||
include/llvm/Support/Valgrind.h
|
||||
include/llvm/Support/Watchdog.h
|
||||
include/llvm/Support/Win64EH.h
|
||||
|
@ -1130,7 +1171,6 @@ include/llvm/Target/TargetFrameLowering.h
|
|||
include/llvm/Target/TargetInstrInfo.h
|
||||
include/llvm/Target/TargetIntrinsicInfo.h
|
||||
include/llvm/Target/TargetItinerary.td
|
||||
include/llvm/Target/TargetJITInfo.h
|
||||
include/llvm/Target/TargetLibraryInfo.h
|
||||
include/llvm/Target/TargetLowering.h
|
||||
include/llvm/Target/TargetLoweringObjectFile.h
|
||||
|
@ -1166,6 +1206,7 @@ include/llvm/Transforms/Utils/SSAUpdater.h
|
|||
include/llvm/Transforms/Utils/SSAUpdaterImpl.h
|
||||
include/llvm/Transforms/Utils/SimplifyIndVar.h
|
||||
include/llvm/Transforms/Utils/SimplifyLibCalls.h
|
||||
include/llvm/Transforms/Utils/SymbolRewriter.h
|
||||
include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
|
||||
include/llvm/Transforms/Utils/UnrollLoop.h
|
||||
include/llvm/Transforms/Utils/ValueMapper.h
|
||||
|
@ -1174,13 +1215,20 @@ include/llvm/Transforms/Vectorize.h
|
|||
lib/BugpointPasses.${SOEXT}
|
||||
lib/LLVMHello.${SOEXT}
|
||||
lib/clang/${PKGVERSION}/include/Intrin.h
|
||||
lib/clang/${PKGVERSION}/include/__stddef_max_align_t.h
|
||||
lib/clang/${PKGVERSION}/include/__wmmintrin_aes.h
|
||||
lib/clang/${PKGVERSION}/include/__wmmintrin_pclmul.h
|
||||
lib/clang/${PKGVERSION}/include/adxintrin.h
|
||||
lib/clang/${PKGVERSION}/include/altivec.h
|
||||
lib/clang/${PKGVERSION}/include/ammintrin.h
|
||||
lib/clang/${PKGVERSION}/include/arm_acle.h
|
||||
lib/clang/${PKGVERSION}/include/arm_neon.h
|
||||
lib/clang/${PKGVERSION}/include/avx2intrin.h
|
||||
lib/clang/${PKGVERSION}/include/avx512bwintrin.h
|
||||
lib/clang/${PKGVERSION}/include/avx512erintrin.h
|
||||
lib/clang/${PKGVERSION}/include/avx512fintrin.h
|
||||
lib/clang/${PKGVERSION}/include/avx512vlbwintrin.h
|
||||
lib/clang/${PKGVERSION}/include/avx512vlintrin.h
|
||||
lib/clang/${PKGVERSION}/include/avxintrin.h
|
||||
lib/clang/${PKGVERSION}/include/bmi2intrin.h
|
||||
lib/clang/${PKGVERSION}/include/bmiintrin.h
|
||||
|
@ -1217,6 +1265,7 @@ lib/clang/${PKGVERSION}/include/shaintrin.h
|
|||
lib/clang/${PKGVERSION}/include/smmintrin.h
|
||||
lib/clang/${PKGVERSION}/include/stdalign.h
|
||||
lib/clang/${PKGVERSION}/include/stdarg.h
|
||||
lib/clang/${PKGVERSION}/include/stdatomic.h
|
||||
lib/clang/${PKGVERSION}/include/stdbool.h
|
||||
lib/clang/${PKGVERSION}/include/stddef.h
|
||||
lib/clang/${PKGVERSION}/include/stdint.h
|
||||
|
@ -1225,6 +1274,7 @@ lib/clang/${PKGVERSION}/include/tbmintrin.h
|
|||
lib/clang/${PKGVERSION}/include/tgmath.h
|
||||
lib/clang/${PKGVERSION}/include/tmmintrin.h
|
||||
lib/clang/${PKGVERSION}/include/unwind.h
|
||||
lib/clang/${PKGVERSION}/include/vadefs.h
|
||||
lib/clang/${PKGVERSION}/include/varargs.h
|
||||
lib/clang/${PKGVERSION}/include/wmmintrin.h
|
||||
lib/clang/${PKGVERSION}/include/x86intrin.h
|
||||
|
@ -1254,20 +1304,18 @@ lib/libLLVMCppBackendCodeGen.a
|
|||
lib/libLLVMCppBackendInfo.a
|
||||
lib/libLLVMDebugInfo.a
|
||||
lib/libLLVMExecutionEngine.a
|
||||
lib/libLLVMHexagonAsmPrinter.a
|
||||
lib/libLLVMHexagonCodeGen.a
|
||||
lib/libLLVMHexagonDesc.a
|
||||
lib/libLLVMHexagonDisassembler.a
|
||||
lib/libLLVMHexagonInfo.a
|
||||
lib/libLLVMIRReader.a
|
||||
lib/libLLVMInstCombine.a
|
||||
lib/libLLVMInstrumentation.a
|
||||
lib/libLLVMInterpreter.a
|
||||
lib/libLLVMJIT.a
|
||||
lib/libLLVMLTO.a
|
||||
lib/libLLVMLineEditor.a
|
||||
lib/libLLVMLinker.a
|
||||
lib/libLLVMMC.a
|
||||
lib/libLLVMMCAnalysis.a
|
||||
lib/libLLVMMCDisassembler.a
|
||||
lib/libLLVMMCJIT.a
|
||||
lib/libLLVMMCParser.a
|
||||
|
@ -1295,6 +1343,7 @@ lib/libLLVMPowerPCDesc.a
|
|||
lib/libLLVMPowerPCDisassembler.a
|
||||
lib/libLLVMPowerPCInfo.a
|
||||
lib/libLLVMProfileData.a
|
||||
lib/libLLVMR600AsmParser.a
|
||||
lib/libLLVMR600AsmPrinter.a
|
||||
lib/libLLVMR600CodeGen.a
|
||||
lib/libLLVMR600Desc.a
|
||||
|
@ -1360,6 +1409,7 @@ lib/libclangStaticAnalyzerCheckers.a
|
|||
lib/libclangStaticAnalyzerCore.a
|
||||
lib/libclangStaticAnalyzerFrontend.a
|
||||
lib/libclangTooling.a
|
||||
lib/libclangToolingCore.a
|
||||
man/man1/clang.1
|
||||
share/doc/llvm/html.tar.gz
|
||||
share/doc/llvm/html/Dummy.html
|
||||
|
@ -1370,8 +1420,11 @@ share/doc/llvm/html/doxygen.css
|
|||
share/doc/llvm/ps/clang.ps
|
||||
share/llvm/cmake/AddLLVM.cmake
|
||||
share/llvm/cmake/AddLLVMDefinitions.cmake
|
||||
share/llvm/cmake/AddOCaml.cmake
|
||||
share/llvm/cmake/AddSphinxTarget.cmake
|
||||
share/llvm/cmake/ChooseMSVCCRT.cmake
|
||||
share/llvm/cmake/CrossCompile.cmake
|
||||
share/llvm/cmake/FindOCaml.cmake
|
||||
share/llvm/cmake/FindSphinx.cmake
|
||||
share/llvm/cmake/GetSVN.cmake
|
||||
share/llvm/cmake/HandleLLVMOptions.cmake
|
||||
|
@ -1383,3 +1436,4 @@ share/llvm/cmake/LLVMExports.cmake
|
|||
share/llvm/cmake/LLVMParseArguments.cmake
|
||||
share/llvm/cmake/LLVMProcessSources.cmake
|
||||
share/llvm/cmake/TableGen.cmake
|
||||
@pkgdir share/doc/llvm/html/img
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
$NetBSD: distinfo,v 1.28 2015/01/29 11:38:29 adam Exp $
|
||||
$NetBSD: distinfo,v 1.29 2015/03/03 12:04:08 tnn Exp $
|
||||
|
||||
SHA1 (cfe-3.5.1.src.tar.xz) = 39d79c0b40cec548a602dcac3adfc594b18149fe
|
||||
RMD160 (cfe-3.5.1.src.tar.xz) = f2dfc60ef99aef5b19fab589c822acae695f67cb
|
||||
Size (cfe-3.5.1.src.tar.xz) = 8268140 bytes
|
||||
SHA1 (compiler-rt-3.5.1.src.tar.xz) = 620d59dcc375b24c5663f2793b2bcd74f848435d
|
||||
RMD160 (compiler-rt-3.5.1.src.tar.xz) = 6ed96be5124216b295a699e604a7ee64291d6cd2
|
||||
Size (compiler-rt-3.5.1.src.tar.xz) = 1092452 bytes
|
||||
SHA1 (libcxx-3.5.1.src.tar.xz) = aa8d221f4db99f5a8faef6b594cbf7742cc55ad2
|
||||
RMD160 (libcxx-3.5.1.src.tar.xz) = 46a5a2d9eaffe6b287d6245ab677d06e557d0687
|
||||
Size (libcxx-3.5.1.src.tar.xz) = 912248 bytes
|
||||
SHA1 (llvm-3.5.1.src.tar.xz) = 79638cf00584b08fd6eeb1e73ea69b331561e7f6
|
||||
RMD160 (llvm-3.5.1.src.tar.xz) = ae22e9f0e913a1a834dc6baa50f265ed228a1241
|
||||
Size (llvm-3.5.1.src.tar.xz) = 11869356 bytes
|
||||
SHA1 (cfe-3.6.0.src.tar.xz) = 06b252867a3d118c95ca279fd3c4ac05f6730551
|
||||
RMD160 (cfe-3.6.0.src.tar.xz) = 2e04853d2f8133fea493ee12d7f05bc6b27dc988
|
||||
Size (cfe-3.6.0.src.tar.xz) = 8640776 bytes
|
||||
SHA1 (compiler-rt-3.6.0.src.tar.xz) = 771cbf0535dce1ca3a3be022377781e32fdea70e
|
||||
RMD160 (compiler-rt-3.6.0.src.tar.xz) = 716cbd5e101959b064331ad73bfe18fcb98347c5
|
||||
Size (compiler-rt-3.6.0.src.tar.xz) = 1140616 bytes
|
||||
SHA1 (libcxx-3.6.0.src.tar.xz) = 5445194366ae2291092fd2204030cb3d01ad6272
|
||||
RMD160 (libcxx-3.6.0.src.tar.xz) = 9221db789b801dde45ad89f57c7a74fd3b082cf4
|
||||
Size (libcxx-3.6.0.src.tar.xz) = 946380 bytes
|
||||
SHA1 (llvm-3.6.0.src.tar.xz) = 6eb2b7381d924bb3f267281c9058c817d825d824
|
||||
RMD160 (llvm-3.6.0.src.tar.xz) = cd2216a21871ba5be52e193e28e444bd04dacee2
|
||||
Size (llvm-3.6.0.src.tar.xz) = 12750908 bytes
|
||||
SHA1 (patch-ab) = 8dd0da6d47a57ac25eea358996cf874dd3289e08
|
||||
SHA1 (patch-ac) = 0f0cc98d443ec957fc5374fb491809d27e4f9d4e
|
||||
SHA1 (patch-ad) = ad1f6720e4c73e57fce10ba968b03637a133602d
|
||||
|
|
Loading…
Reference in a new issue