pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/llvm



Module Name:    pkgsrc
Committed By:   pin
Date:           Fri Aug 12 08:37:58 UTC 2022

Modified Files:
        pkgsrc/lang/llvm: Makefile PLIST buildlink3.mk distinfo options.mk
            version.mk
        pkgsrc/lang/llvm/patches: patch-cmake_config-ix.cmake

Log Message:
lang/llvm: update to 14.0.6

Updated in wip by @wiz and myself.

14.0.6
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.
 This release fixes a bug that was introduced in 14.0.5.
 This will likely be the last 14.0.x release.

14.0.5
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.
 Note that we have adopted a new release schedule for the project, so there
 will be a new bug-fix release (14.0.x) every 2 weeks.
 14.0.5 is the last planned release, but we may do a 14.0.6 release if there
 are critical issues found in 14.0.5.

14.0.4
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.

14.0.0

Changes to the LLVM IR
    Using the legacy pass manager for the optimization pipeline is deprecated
    and will be removed after LLVM 14. In the meantime, only minimal effort will
    be made to maintain the legacy pass manager for the optimization pipeline.

    Max allowed integer type was reduced from 2^24-1 bits to 2^23 bits.

    Max allowed alignment was increased from 2^29 to 2^32.

Changes to building LLVM
    Building LLVM with Visual Studio now requires version 2019 or later.

Changes to the AArch64 Backend
    Added support for the Armv9-A, Armv9.1-A and Armv9.2-A architectures.

    The compiler now recognises the “tune-cpu” function attribute to support
    the use of the -mtune frontend flag. This allows certain scheduling features
    and optimisations to be enabled independently of the architecture.
    If the “tune-cpu” attribute is absent it tunes according to the
    “target-cpu”.

    Fixed relocations against temporary symbols (e.g. in jump tables and
    constant pools) in large COFF object files.

    Auto-vectorization now targets SVE by default when available.

Changes to the ARM Backend
    Added support for the Armv9-A, Armv9.1-A and Armv9.2-A architectures.

    Added support for the Armv8.1-M PACBTI-M extension.

    Changed the assembly comment string for MSVC targets to @ (consistent with
    the MinGW and ELF targets), freeing up ; to be used as statement separator.

Changes to the PowerPC Target
Linux improvements:
    Provided a number of builtins for compatibility with the XL compiler.

    Allow MMA builtin types in pre-P10 compilation units.

    Add support for Return Oriented Programming (ROP) protection for 32 bit.

    Refactored code to use more inclusive language.

    Switched to LLD as the default linker for pre-built Linux binaries.

    Enabled IEEE quad long double on Linux via PPC_LINUX_DEFAULT_IEEELONGDOUBLE
    in cmake config.

        Added __ibm128 type to represent IBM double-double format, also
        available as __attribute__((mode(IF))).

        -mfloat128 can now be used in Linux subtargets with VSX enabled.

    Added quadword atomic load/store support in codegen; not enabled by default.

    Codegen improvements for splat load, byval parameter, stack lowering, etc.

    Implemented P10 instruction scheduling model.

    Implemented P10 instruction fusion pairs.

    Improved handling of #pragma clang loop unroll_and_jam.

    Various bug fixes.

AIX Support/improvements:
    Variadic (ellipsis) functions with C complex types are now supported.

    Added toc-data support for AIX 64-bit.

    Added toc-data support for read-only globals.

    Updated default target on AIX from pwr4 to pwr7.

    AIX 64-bit code generation now uses fast-isel for O0.

    Added DWARF support for 32-bit XCOFF.

Changes to the RISC-V Target
    Codegen improvements for RV64 around the selection of addw/subw/mulw/slliw
    instructions and removal of redundant sext.w instructions (using the new
    RISCVSExtWRemoval pass).

    The various RISC-V vector extensions were updated to version 1.0 and are no
    longer experimental.

    The Zba, Zbb, Zbc, and Zbs bit-manipulation extensions were updated to
    version 1.0 and are no longer experimental.

    Added MC layer support for the ratified scalar cryptography extensions.

    The Zfh and Zfhmin extensions for half-precision floating point were updated
    to version 1.0 and are no longer experimental.

    Added support for the .insn directive.

    Various improvements to immediate materialisation, including when
    bit-manipulation extensions are enabled. Additionally, the constant pool is
    now used for large integers.

    Added support for constrained FP intrinsics for scalar types.

    Added support for CSRs introduced in the Sscofpmf, Smstateen, and Sstc
    extensions.

    The experimental ‘Zbproposedc’ extension was removed, as was the ‘B’
    extension (including all bit-manipulation sub-extensions). Individual ‘Zb*’
    extensions should be used instead.

Changes to the X86 Target
    Support for AVX512-FP16 instructions has been added.

    Removed incomplete support for Intel MPX. (D111517)

Changes to the AMDGPU Target

Changes to the Windows Target

    Changed how the .pdata sections refer to the code they’re describing, to
    avoid conflicting unwind info if weak symbols are overridden.

    Fixed code generation for calling support routines for converting 128 bit
    integers from/to floats on x86_64.

    The preferred path separator form (backslashes or forward slashes) can be
    configured in Windows builds of LLVM now, with the
    LLVM_WINDOWS_PREFER_FORWARD_SLASH CMake option. This defaults to true in
    MinGW builds of LLVM.

    Set proper COFF symbol types for function aliases (e.g. for Itanium C++
    constructors), making sure that GNU ld exports all of them correctly as
    functions, not data, when linking a DLL.

    Handling of temporary files on more uncommon file systems (network mounts,
    ramdisks) on Windows is fixed now (which previously either errored out or
    left stray files behind).

Changes to the C API

    LLVMSetInstDebugLocation has been deprecated in favor of the more general
    LLVMAddMetadataToInst.

    Fixed building LLVM-C.dll for i386 targets with MSVC, which had been broken
    since the LLVM 8.0.0 release.

Changes to the LLVM tools

    llvm-cov: -name-allowlist is now accepted in addition to -name-whitelist.
    -name-whitelist is marked as deprecated and to be removed in future
    releases.

    llvm-ar now supports --thin for creating a thin archive. The modifier T has
    a different meaning in some ar implementations. (D116979)

    llvm-ar now supports reading big archives for XCOFF. (D111889)

    llvm-nm now demangles Rust symbols. (D111937)

    llvm-objcopy’s ELF port now avoids reordering section headers to preserve
    st_shndx fields of dynamic symbols. (D107653)

    llvm-objcopy now supports --update-section for ELF and Mach-O. (D112116)
    (D117281)

    llvm-objcopy now supports --subsystem for PE/COFF. (D116556)

    llvm-objcopy now supports mips64le relocations for ELF. (D115635)

    llvm-objcopy --rename-section now renames relocation sections together with
    their targets. (D110352)

    llvm-objdump --symbolize-operands now supports PowerPC. (D114492)

    llvm-objdump -p now dumps PE header. (D113356)

    llvm-objdump -R now supports ELF position-dependent executables. (D110595)

    llvm-objdump -T now prints symbol versions. (D108097)

    llvm-readobj: Improved printing of symbols in Windows unwind data.

    llvm-readobj now supports --elf-output-style=JSON for JSON output and
    --pretty-print for pretty printing of this output. (D114225)

    llvm-readobj now supports several dump styles (--needed-libs, --relocs,
    --syms) for XCOFF.

    llvm-symbolizer now supports –debuginfod. (D113717)

    llvm-cov now accepts “allowlist” spelling for -name-allowlist.

    llvm-nm now supports XCOFF object files.

    Added --needed-libs, aux header, and symbols support in llvm-readobj.

    Added --symbolize-operands support in llvm-objdump.

    Tools that read archive files now support reading AIX big format archive
    files.

    Added dump section support in obj2yaml.

    Added yaml2obj support for 64-bit XCOFF.

Changes to LLDB

    A change in Clang’s type printing has changed the way LLDB names array types
    (from int [N] to int[N]) - LLDB pretty printer type name matching code may
    need to be updated to handle this.

    The following commands now ignore non-address bits (e.g. AArch64 pointer
    signatures) in address arguments. In addition, non-address bits will not be
    shown in the output of the commands.

        memory find

        memory read

        memory region (see below)

        memory tag read

        memory tag write

    The memory region command and GetMemoryRegionInfo API method now ignore
    non-address bits in the address parameter. This also means that on systems
    with non-address bits the last (usually unmapped) memory region will not
    extend to 0xF…F. Instead it will end at the end of the mappable range that
    the virtual address size allows.

    The memory read command has a new option --show-tags. Use this option to
    show memory tags beside the contents of tagged memory ranges.

    Fixed continuing from breakpoints and singlestepping on Windows on ARM/ARM64.

    LLDB has been included in Windows on ARM64 binary release with Python
    support disabled.

Changes to BOLT

    BOLT project is added to the LLVM monorepo. BOLT is a post-link optimizer
    developed to speed up large applications. Build and usage instructions are
    given in README.

Additional Information

A wide variety of additional information is available on the LLVM web page, in
particular in the documentation section. The web page also contains versions of
the API documentation which is up-to-date with the Git version of the source
code. You can access versions of these documents specific to this release by
going into the llvm/docs/ directory in the LLVM tree.

If you have any questions or comments about LLVM, please feel free to contact
us via the mailing lists.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 pkgsrc/lang/llvm/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/lang/llvm/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/lang/llvm/buildlink3.mk
cvs rdiff -u -r1.34 -r1.35 pkgsrc/lang/llvm/distinfo
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/llvm/options.mk
cvs rdiff -u -r1.8 -r1.9 pkgsrc/lang/llvm/version.mk
cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/llvm/Makefile
diff -u pkgsrc/lang/llvm/Makefile:1.73 pkgsrc/lang/llvm/Makefile:1.74
--- pkgsrc/lang/llvm/Makefile:1.73      Sat Aug  6 16:49:59 2022
+++ pkgsrc/lang/llvm/Makefile   Fri Aug 12 08:37:58 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2022/08/06 16:49:59 he Exp $
+# $NetBSD: Makefile,v 1.74 2022/08/12 08:37:58 pin Exp $
 #
 # when updating this, please also update:
 # devel/include-what-you-use
@@ -21,7 +21,6 @@
 # Always update all */buildlink3.mk to require the latest stable release
 # version in BUILDLINK_API_DEPENDS, as there is no backwards compatibility
 
-PKGREVISION= 2
 .include "version.mk"
 
 DISTNAME=      llvm-${LLVM_VERSION}.src
@@ -38,7 +37,7 @@ USE_CMAKE=            yes
 GCC_REQD+=             5
 PYTHON_FOR_BUILD_ONLY= yes
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
+PYTHON_VERSIONS_INCOMPATIBLE=   27
 
 NOT_FOR_PLATFORM+=     *-*-alpha
 NOT_FOR_PLATFORM+=     *-*-vax

Index: pkgsrc/lang/llvm/PLIST
diff -u pkgsrc/lang/llvm/PLIST:1.19 pkgsrc/lang/llvm/PLIST:1.20
--- pkgsrc/lang/llvm/PLIST:1.19 Fri Nov 26 19:55:13 2021
+++ pkgsrc/lang/llvm/PLIST      Fri Aug 12 08:37:58 2022
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.19 2021/11/26 19:55:13 wiz Exp $
+@comment $NetBSD: PLIST,v 1.20 2022/08/12 08:37:58 pin Exp $
+@comment $NetBSD: PLIST,v 1.20 2022/08/12 08:37:58 pin Exp $
 bin/FileCheck
 bin/bugpoint
 bin/count
@@ -21,6 +22,7 @@ bin/llvm-cvtres
 bin/llvm-cxxdump
 bin/llvm-cxxfilt
 bin/llvm-cxxmap
+bin/llvm-debuginfod-find
 bin/llvm-diff
 bin/llvm-dis
 bin/llvm-dlltool
@@ -67,6 +69,7 @@ bin/llvm-strip
 bin/llvm-symbolizer
 bin/llvm-tapi-diff
 bin/llvm-tblgen
+bin/llvm-tli-checker
 bin/llvm-undname
 bin/llvm-windres
 bin/llvm-xray
@@ -86,6 +89,7 @@ include/llvm-c/Comdat.h
 include/llvm-c/Core.h
 include/llvm-c/DataTypes.h
 include/llvm-c/DebugInfo.h
+include/llvm-c/Deprecated.h
 include/llvm-c/Disassembler.h
 include/llvm-c/DisassemblerTypes.h
 include/llvm-c/Error.h
@@ -127,6 +131,7 @@ include/llvm/ADT/BitmaskEnum.h
 include/llvm/ADT/BreadthFirstIterator.h
 include/llvm/ADT/CachedHashString.h
 include/llvm/ADT/CoalescingBitVector.h
+include/llvm/ADT/CombinationGenerator.h
 include/llvm/ADT/DAGDeltaAlgorithm.h
 include/llvm/ADT/DeltaAlgorithm.h
 include/llvm/ADT/DenseMap.h
@@ -140,6 +145,9 @@ include/llvm/ADT/EquivalenceClasses.h
 include/llvm/ADT/FloatingPointMode.h
 include/llvm/ADT/FoldingSet.h
 include/llvm/ADT/FunctionExtras.h
+include/llvm/ADT/GenericCycleImpl.h
+include/llvm/ADT/GenericCycleInfo.h
+include/llvm/ADT/GenericSSAContext.h
 include/llvm/ADT/GraphTraits.h
 include/llvm/ADT/Hashing.h
 include/llvm/ADT/ImmutableList.h
@@ -161,8 +169,10 @@ include/llvm/ADT/PostOrderIterator.h
 include/llvm/ADT/PriorityQueue.h
 include/llvm/ADT/PriorityWorklist.h
 include/llvm/ADT/SCCIterator.h
+include/llvm/ADT/STLArrayExtras.h
 include/llvm/ADT/STLExtras.h
 include/llvm/ADT/STLForwardCompat.h
+include/llvm/ADT/STLFunctionalExtras.h
 include/llvm/ADT/ScopeExit.h
 include/llvm/ADT/ScopedHashTable.h
 include/llvm/ADT/Sequence.h
@@ -188,10 +198,10 @@ include/llvm/ADT/Triple.h
 include/llvm/ADT/Twine.h
 include/llvm/ADT/TypeSwitch.h
 include/llvm/ADT/UniqueVector.h
-include/llvm/ADT/Waymarking.h
 include/llvm/ADT/bit.h
 include/llvm/ADT/edit_distance.h
 include/llvm/ADT/fallible_iterator.h
+include/llvm/ADT/identity.h
 include/llvm/ADT/ilist.h
 include/llvm/ADT/ilist_base.h
 include/llvm/ADT/ilist_iterator.h
@@ -224,6 +234,8 @@ include/llvm/Analysis/CmpInstAnalysis.h
 include/llvm/Analysis/CodeMetrics.h
 include/llvm/Analysis/ConstantFolding.h
 include/llvm/Analysis/ConstraintSystem.h
+include/llvm/Analysis/CostModel.h
+include/llvm/Analysis/CycleAnalysis.h
 include/llvm/Analysis/DDG.h
 include/llvm/Analysis/DDGPrinter.h
 include/llvm/Analysis/DOTGraphTraitsPass.h
@@ -249,8 +261,10 @@ include/llvm/Analysis/IndirectCallVisito
 include/llvm/Analysis/InlineAdvisor.h
 include/llvm/Analysis/InlineCost.h
 include/llvm/Analysis/InlineModelFeatureMaps.h
+include/llvm/Analysis/InlineOrder.h
 include/llvm/Analysis/InlineSizeEstimatorAnalysis.h
 include/llvm/Analysis/InstCount.h
+include/llvm/Analysis/InstSimplifyFolder.h
 include/llvm/Analysis/InstructionPrecedenceTracking.h
 include/llvm/Analysis/InstructionSimplify.h
 include/llvm/Analysis/Interval.h
@@ -281,9 +295,11 @@ include/llvm/Analysis/MemoryDependenceAn
 include/llvm/Analysis/MemoryLocation.h
 include/llvm/Analysis/MemorySSA.h
 include/llvm/Analysis/MemorySSAUpdater.h
+include/llvm/Analysis/ModelUnderTrainingRunner.h
 include/llvm/Analysis/ModuleDebugInfoPrinter.h
 include/llvm/Analysis/ModuleSummaryAnalysis.h
 include/llvm/Analysis/MustExecute.h
+include/llvm/Analysis/NoInferenceModelRunner.h
 include/llvm/Analysis/ObjCARCAliasAnalysis.h
 include/llvm/Analysis/ObjCARCAnalysisUtils.h
 include/llvm/Analysis/ObjCARCInstKind.h
@@ -301,6 +317,7 @@ include/llvm/Analysis/RegionInfoImpl.h
 include/llvm/Analysis/RegionIterator.h
 include/llvm/Analysis/RegionPass.h
 include/llvm/Analysis/RegionPrinter.h
+include/llvm/Analysis/ReleaseModeModelRunner.h
 include/llvm/Analysis/ReplayInlineAdvisor.h
 include/llvm/Analysis/ScalarEvolution.h
 include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
@@ -370,6 +387,8 @@ include/llvm/BinaryFormat/MsgPack.h
 include/llvm/BinaryFormat/MsgPackDocument.h
 include/llvm/BinaryFormat/MsgPackReader.h
 include/llvm/BinaryFormat/MsgPackWriter.h
+include/llvm/BinaryFormat/Swift.def
+include/llvm/BinaryFormat/Swift.h
 include/llvm/BinaryFormat/Wasm.h
 include/llvm/BinaryFormat/WasmRelocs.def
 include/llvm/BinaryFormat/WasmTraits.h
@@ -395,6 +414,7 @@ include/llvm/CodeGen/BasicTTIImpl.h
 include/llvm/CodeGen/CSEConfigBase.h
 include/llvm/CodeGen/CalcSpillWeights.h
 include/llvm/CodeGen/CallingConvLower.h
+include/llvm/CodeGen/CodeGenCommonISel.h
 include/llvm/CodeGen/CodeGenPassBuilder.h
 include/llvm/CodeGen/CommandFlags.h
 include/llvm/CodeGen/CostTable.h
@@ -434,6 +454,7 @@ include/llvm/CodeGen/GlobalISel/Legaliza
 include/llvm/CodeGen/GlobalISel/Legalizer.h
 include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
 include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
+include/llvm/CodeGen/GlobalISel/LoadStoreOpt.h
 include/llvm/CodeGen/GlobalISel/Localizer.h
 include/llvm/CodeGen/GlobalISel/LostDebugLocObserver.h
 include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
@@ -469,6 +490,7 @@ include/llvm/CodeGen/MIRFormatter.h
 include/llvm/CodeGen/MIRParser/MIParser.h
 include/llvm/CodeGen/MIRParser/MIRParser.h
 include/llvm/CodeGen/MIRPrinter.h
+include/llvm/CodeGen/MIRSampleProfile.h
 include/llvm/CodeGen/MIRYamlMapping.h
 include/llvm/CodeGen/MachORelocation.h
 include/llvm/CodeGen/MachineBasicBlock.h
@@ -476,6 +498,7 @@ include/llvm/CodeGen/MachineBlockFrequen
 include/llvm/CodeGen/MachineBranchProbabilityInfo.h
 include/llvm/CodeGen/MachineCombinerPattern.h
 include/llvm/CodeGen/MachineConstantPool.h
+include/llvm/CodeGen/MachineCycleAnalysis.h
 include/llvm/CodeGen/MachineDominanceFrontier.h
 include/llvm/CodeGen/MachineDominators.h
 include/llvm/CodeGen/MachineFrameInfo.h
@@ -502,6 +525,7 @@ include/llvm/CodeGen/MachinePipeliner.h
 include/llvm/CodeGen/MachinePostDominators.h
 include/llvm/CodeGen/MachineRegionInfo.h
 include/llvm/CodeGen/MachineRegisterInfo.h
+include/llvm/CodeGen/MachineSSAContext.h
 include/llvm/CodeGen/MachineSSAUpdater.h
 include/llvm/CodeGen/MachineScheduler.h
 include/llvm/CodeGen/MachineSizeOpts.h
@@ -569,6 +593,7 @@ include/llvm/CodeGen/TargetSchedule.h
 include/llvm/CodeGen/TargetSubtargetInfo.h
 include/llvm/CodeGen/TileShapeInfo.h
 include/llvm/CodeGen/UnreachableBlockElim.h
+include/llvm/CodeGen/VLIWMachineScheduler.h
 include/llvm/CodeGen/ValueTypes.h
 include/llvm/CodeGen/ValueTypes.td
 include/llvm/CodeGen/VirtRegMap.h
@@ -577,6 +602,7 @@ include/llvm/CodeGen/WinEHFuncInfo.h
 include/llvm/Config/AsmParsers.def
 include/llvm/Config/AsmPrinters.def
 include/llvm/Config/Disassemblers.def
+include/llvm/Config/TargetMCAs.def
 include/llvm/Config/Targets.def
 include/llvm/Config/abi-breaking.h
 include/llvm/Config/llvm-config.h
@@ -823,9 +849,13 @@ include/llvm/DebugInfo/PDB/PDBSymbolUnkn
 include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
 include/llvm/DebugInfo/PDB/PDBTypes.h
 include/llvm/DebugInfo/PDB/UDTLayout.h
+include/llvm/DebugInfo/Symbolize/DIFetcher.h
 include/llvm/DebugInfo/Symbolize/DIPrinter.h
 include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
 include/llvm/DebugInfo/Symbolize/Symbolize.h
+include/llvm/Debuginfod/DIFetcher.h
+include/llvm/Debuginfod/Debuginfod.h
+include/llvm/Debuginfod/HTTPClient.h
 include/llvm/Demangle/Demangle.h
 include/llvm/Demangle/DemangleConfig.h
 include/llvm/Demangle/ItaniumDemangle.h
@@ -839,6 +869,7 @@ include/llvm/ExecutionEngine/Interpreter
 include/llvm/ExecutionEngine/JITEventListener.h
 include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
 include/llvm/ExecutionEngine/JITLink/ELF.h
+include/llvm/ExecutionEngine/JITLink/ELF_aarch64.h
 include/llvm/ExecutionEngine/JITLink/ELF_riscv.h
 include/llvm/ExecutionEngine/JITLink/ELF_x86_64.h
 include/llvm/ExecutionEngine/JITLink/JITLink.h
@@ -847,6 +878,9 @@ include/llvm/ExecutionEngine/JITLink/JIT
 include/llvm/ExecutionEngine/JITLink/MachO.h
 include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
 include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
+include/llvm/ExecutionEngine/JITLink/MemoryFlags.h
+include/llvm/ExecutionEngine/JITLink/TableManager.h
+include/llvm/ExecutionEngine/JITLink/aarch64.h
 include/llvm/ExecutionEngine/JITLink/riscv.h
 include/llvm/ExecutionEngine/JITLink/x86_64.h
 include/llvm/ExecutionEngine/JITSymbol.h
@@ -858,9 +892,15 @@ include/llvm/ExecutionEngine/Orc/Compile
 include/llvm/ExecutionEngine/Orc/Core.h
 include/llvm/ExecutionEngine/Orc/DebugObjectManagerPlugin.h
 include/llvm/ExecutionEngine/Orc/DebugUtils.h
+include/llvm/ExecutionEngine/Orc/DebuggerSupportPlugin.h
+include/llvm/ExecutionEngine/Orc/ELFNixPlatform.h
 include/llvm/ExecutionEngine/Orc/EPCDebugObjectRegistrar.h
 include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h
 include/llvm/ExecutionEngine/Orc/EPCEHFrameRegistrar.h
+include/llvm/ExecutionEngine/Orc/EPCGenericDylibManager.h
+include/llvm/ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.h
+include/llvm/ExecutionEngine/Orc/EPCGenericMemoryAccess.h
+include/llvm/ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.h
 include/llvm/ExecutionEngine/Orc/EPCIndirectionUtils.h
 include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
 include/llvm/ExecutionEngine/Orc/ExecutorProcessControl.h
@@ -869,38 +909,37 @@ include/llvm/ExecutionEngine/Orc/IRTrans
 include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
 include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
 include/llvm/ExecutionEngine/Orc/LLJIT.h
-include/llvm/ExecutionEngine/Orc/LLVMSPSSerializers.h
 include/llvm/ExecutionEngine/Orc/Layer.h
 include/llvm/ExecutionEngine/Orc/LazyReexports.h
+include/llvm/ExecutionEngine/Orc/LookupAndRecordAddrs.h
 include/llvm/ExecutionEngine/Orc/MachOPlatform.h
 include/llvm/ExecutionEngine/Orc/Mangling.h
+include/llvm/ExecutionEngine/Orc/ObjectFileInterface.h
 include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
 include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
 include/llvm/ExecutionEngine/Orc/OrcABISupport.h
-include/llvm/ExecutionEngine/Orc/OrcRPCExecutorProcessControl.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
 include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
+include/llvm/ExecutionEngine/Orc/Shared/AllocationActions.h
 include/llvm/ExecutionEngine/Orc/Shared/ExecutorAddress.h
-include/llvm/ExecutionEngine/Orc/Shared/FDRawByteChannel.h
 include/llvm/ExecutionEngine/Orc/Shared/OrcError.h
-include/llvm/ExecutionEngine/Orc/Shared/RPCUtils.h
-include/llvm/ExecutionEngine/Orc/Shared/RawByteChannel.h
-include/llvm/ExecutionEngine/Orc/Shared/Serialization.h
+include/llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h
 include/llvm/ExecutionEngine/Orc/Shared/SimplePackedSerialization.h
+include/llvm/ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.h
 include/llvm/ExecutionEngine/Orc/Shared/TargetProcessControlTypes.h
 include/llvm/ExecutionEngine/Orc/Shared/WrapperFunctionUtils.h
+include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
 include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
 include/llvm/ExecutionEngine/Orc/Speculation.h
 include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/ExecutorBootstrapService.h
 include/llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.h
-include/llvm/ExecutionEngine/Orc/TargetProcess/OrcRPCTPCServer.h
 include/llvm/ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorDylibManager.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorMemoryManager.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleRemoteEPCServer.h
 include/llvm/ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.h
+include/llvm/ExecutionEngine/Orc/TaskDispatch.h
 include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
-include/llvm/ExecutionEngine/OrcMCJITReplacement.h
-include/llvm/ExecutionEngine/OrcV1Deprecation.h
 include/llvm/ExecutionEngine/RTDyldMemoryManager.h
 include/llvm/ExecutionEngine/RuntimeDyld.h
 include/llvm/ExecutionEngine/RuntimeDyldChecker.h
@@ -913,6 +952,7 @@ include/llvm/Frontend/OpenACC/ACC.td
 include/llvm/Frontend/OpenMP/OMP.h.inc
 include/llvm/Frontend/OpenMP/OMP.inc
 include/llvm/Frontend/OpenMP/OMP.td
+include/llvm/Frontend/OpenMP/OMPAssume.h
 include/llvm/Frontend/OpenMP/OMPConstants.h
 include/llvm/Frontend/OpenMP/OMPContext.h
 include/llvm/Frontend/OpenMP/OMPGridValues.h
@@ -931,6 +971,7 @@ include/llvm/IR/Assumptions.h
 include/llvm/IR/Attributes.h
 include/llvm/IR/Attributes.inc
 include/llvm/IR/Attributes.td
+include/llvm/IR/AttributesAMDGPU.td
 include/llvm/IR/AutoUpgrade.h
 include/llvm/IR/BasicBlock.h
 include/llvm/IR/BuiltinGCs.h
@@ -963,7 +1004,6 @@ include/llvm/IR/GVMaterializer.h
 include/llvm/IR/GetElementPtrTypeIterator.h
 include/llvm/IR/GlobalAlias.h
 include/llvm/IR/GlobalIFunc.h
-include/llvm/IR/GlobalIndirectSymbol.h
 include/llvm/IR/GlobalObject.h
 include/llvm/IR/GlobalValue.h
 include/llvm/IR/GlobalVariable.h
@@ -1043,6 +1083,7 @@ include/llvm/IR/ProfileSummary.h
 include/llvm/IR/PseudoProbe.h
 include/llvm/IR/ReplaceConstant.h
 include/llvm/IR/RuntimeLibcalls.def
+include/llvm/IR/SSAContext.h
 include/llvm/IR/SafepointIRVerifier.h
 include/llvm/IR/Statepoint.h
 include/llvm/IR/StructuralHash.h
@@ -1065,7 +1106,6 @@ include/llvm/InitializePasses.h
 include/llvm/InterfaceStub/ELFObjHandler.h
 include/llvm/InterfaceStub/IFSHandler.h
 include/llvm/InterfaceStub/IFSStub.h
-include/llvm/LTO/Caching.h
 include/llvm/LTO/Config.h
 include/llvm/LTO/LTO.h
 include/llvm/LTO/LTOBackend.h
@@ -1086,6 +1126,7 @@ include/llvm/MC/MCAsmInfo.h
 include/llvm/MC/MCAsmInfoCOFF.h
 include/llvm/MC/MCAsmInfoDarwin.h
 include/llvm/MC/MCAsmInfoELF.h
+include/llvm/MC/MCAsmInfoGOFF.h
 include/llvm/MC/MCAsmInfoWasm.h
 include/llvm/MC/MCAsmInfoXCOFF.h
 include/llvm/MC/MCAsmLayout.h
@@ -1163,6 +1204,7 @@ include/llvm/MC/MachineLocation.h
 include/llvm/MC/SectionKind.h
 include/llvm/MC/StringTableBuilder.h
 include/llvm/MC/SubtargetFeature.h
+include/llvm/MC/TargetRegistry.h
 include/llvm/MCA/CodeEmitter.h
 include/llvm/MCA/Context.h
 include/llvm/MCA/CustomBehaviour.h
@@ -1186,6 +1228,7 @@ include/llvm/MCA/Stages/MicroOpQueueStag
 include/llvm/MCA/Stages/RetireStage.h
 include/llvm/MCA/Stages/Stage.h
 include/llvm/MCA/Support.h
+include/llvm/MCA/View.h
 include/llvm/Object/Archive.h
 include/llvm/Object/ArchiveWriter.h
 include/llvm/Object/Binary.h
@@ -1244,6 +1287,7 @@ include/llvm/PassAnalysisSupport.h
 include/llvm/PassInfo.h
 include/llvm/PassRegistry.h
 include/llvm/PassSupport.h
+include/llvm/Passes/OptimizationLevel.h
 include/llvm/Passes/PassBuilder.h
 include/llvm/Passes/PassPlugin.h
 include/llvm/Passes/StandardInstrumentations.h
@@ -1252,10 +1296,13 @@ include/llvm/ProfileData/Coverage/Covera
 include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
 include/llvm/ProfileData/GCOV.h
 include/llvm/ProfileData/InstrProf.h
+include/llvm/ProfileData/InstrProfCorrelator.h
 include/llvm/ProfileData/InstrProfData.inc
 include/llvm/ProfileData/InstrProfReader.h
 include/llvm/ProfileData/InstrProfWriter.h
+include/llvm/ProfileData/MemProfData.inc
 include/llvm/ProfileData/ProfileCommon.h
+include/llvm/ProfileData/RawMemProfReader.h
 include/llvm/ProfileData/SampleProf.h
 include/llvm/ProfileData/SampleProfReader.h
 include/llvm/ProfileData/SampleProfWriter.h
@@ -1309,6 +1356,7 @@ include/llvm/Support/CFGUpdate.h
 include/llvm/Support/COM.h
 include/llvm/Support/CRC.h
 include/llvm/Support/CachePruning.h
+include/llvm/Support/Caching.h
 include/llvm/Support/Capacity.h
 include/llvm/Support/Casting.h
 include/llvm/Support/CheckedArithmetic.h
@@ -1327,6 +1375,8 @@ include/llvm/Support/DataTypes.h
 include/llvm/Support/Debug.h
 include/llvm/Support/DebugCounter.h
 include/llvm/Support/Discriminator.h
+include/llvm/Support/DivisionByConstantInfo.h
+include/llvm/Support/Duration.h
 include/llvm/Support/DynamicLibrary.h
 include/llvm/Support/ELFAttributeParser.h
 include/llvm/Support/ELFAttributes.h
@@ -1357,6 +1407,7 @@ include/llvm/Support/GenericDomTreeConst
 include/llvm/Support/GenericIteratedDominanceFrontier.h
 include/llvm/Support/GlobPattern.h
 include/llvm/Support/GraphWriter.h
+include/llvm/Support/HashBuilder.h
 include/llvm/Support/Host.h
 include/llvm/Support/InitLLVM.h
 include/llvm/Support/InstructionCost.h
@@ -1370,6 +1421,8 @@ include/llvm/Support/Locale.h
 include/llvm/Support/LockFileManager.h
 include/llvm/Support/LowLevelTypeImpl.h
 include/llvm/Support/MD5.h
+include/llvm/Support/MSP430AttributeParser.h
+include/llvm/Support/MSP430Attributes.h
 include/llvm/Support/MSVCErrorWorkarounds.h
 include/llvm/Support/MachineValueType.h
 include/llvm/Support/ManagedStatic.h
@@ -1383,6 +1436,7 @@ include/llvm/Support/Mutex.h
 include/llvm/Support/NativeFormatting.h
 include/llvm/Support/OnDiskHashTable.h
 include/llvm/Support/OptimizedStructLayout.h
+include/llvm/Support/PGOOptions.h
 include/llvm/Support/Parallel.h
 include/llvm/Support/Path.h
 include/llvm/Support/PluginLoader.h
@@ -1393,6 +1447,7 @@ include/llvm/Support/Process.h
 include/llvm/Support/Program.h
 include/llvm/Support/RISCVAttributeParser.h
 include/llvm/Support/RISCVAttributes.h
+include/llvm/Support/RISCVISAInfo.h
 include/llvm/Support/RISCVTargetParser.def
 include/llvm/Support/RWMutex.h
 include/llvm/Support/RandomNumberGenerator.h
@@ -1422,7 +1477,6 @@ include/llvm/Support/SystemUtils.h
 include/llvm/Support/TarWriter.h
 include/llvm/Support/TargetOpcodes.def
 include/llvm/Support/TargetParser.h
-include/llvm/Support/TargetRegistry.h
 include/llvm/Support/TargetSelect.h
 include/llvm/Support/TaskQueue.h
 include/llvm/Support/ThreadLocal.h
@@ -1533,6 +1587,7 @@ include/llvm/Transforms/IPO/Internalize.
 include/llvm/Transforms/IPO/LoopExtractor.h
 include/llvm/Transforms/IPO/LowerTypeTests.h
 include/llvm/Transforms/IPO/MergeFunctions.h
+include/llvm/Transforms/IPO/ModuleInliner.h
 include/llvm/Transforms/IPO/OpenMPOpt.h
 include/llvm/Transforms/IPO/PartialInlining.h
 include/llvm/Transforms/IPO/PassManagerBuilder.h
@@ -1547,7 +1602,6 @@ include/llvm/Transforms/IPO/SyntheticCou
 include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
 include/llvm/Transforms/IPO/WholeProgramDevirt.h
 include/llvm/Transforms/InstCombine/InstCombine.h
-include/llvm/Transforms/InstCombine/InstCombineWorklist.h
 include/llvm/Transforms/InstCombine/InstCombiner.h
 include/llvm/Transforms/Instrumentation.h
 include/llvm/Transforms/Instrumentation/AddressSanitizer.h
@@ -1582,6 +1636,7 @@ include/llvm/Transforms/Scalar/DFAJumpTh
 include/llvm/Transforms/Scalar/DeadStoreElimination.h
 include/llvm/Transforms/Scalar/DivRemPairs.h
 include/llvm/Transforms/Scalar/EarlyCSE.h
+include/llvm/Transforms/Scalar/FlattenCFG.h
 include/llvm/Transforms/Scalar/Float2Int.h
 include/llvm/Transforms/Scalar/GVN.h
 include/llvm/Transforms/Scalar/GVNExpression.h
@@ -1658,6 +1713,7 @@ include/llvm/Transforms/Utils/Canonicali
 include/llvm/Transforms/Utils/CanonicalizeFreezeInLoops.h
 include/llvm/Transforms/Utils/Cloning.h
 include/llvm/Transforms/Utils/CodeExtractor.h
+include/llvm/Transforms/Utils/CodeLayout.h
 include/llvm/Transforms/Utils/CodeMoverUtils.h
 include/llvm/Transforms/Utils/CtorUtils.h
 include/llvm/Transforms/Utils/Debugify.h
@@ -1672,6 +1728,7 @@ include/llvm/Transforms/Utils/GuardUtils
 include/llvm/Transforms/Utils/HelloWorld.h
 include/llvm/Transforms/Utils/InjectTLIMappings.h
 include/llvm/Transforms/Utils/InstructionNamer.h
+include/llvm/Transforms/Utils/InstructionWorklist.h
 include/llvm/Transforms/Utils/IntegerDivision.h
 include/llvm/Transforms/Utils/LCSSA.h
 include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
@@ -1697,6 +1754,7 @@ include/llvm/Transforms/Utils/SCCPSolver
 include/llvm/Transforms/Utils/SSAUpdater.h
 include/llvm/Transforms/Utils/SSAUpdaterBulk.h
 include/llvm/Transforms/Utils/SSAUpdaterImpl.h
+include/llvm/Transforms/Utils/SampleProfileInference.h
 include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h
 include/llvm/Transforms/Utils/SampleProfileLoaderBaseUtil.h
 include/llvm/Transforms/Utils/SanitizerStats.h
@@ -1748,12 +1806,15 @@ lib/cmake/llvm/AddSphinxTarget.cmake
 lib/cmake/llvm/CheckAtomic.cmake
 lib/cmake/llvm/CheckCompilerVersion.cmake
 lib/cmake/llvm/ChooseMSVCCRT.cmake
+lib/cmake/llvm/CoverageReport.cmake
 lib/cmake/llvm/CrossCompile.cmake
 lib/cmake/llvm/DetermineGCCCompatible.cmake
+lib/cmake/llvm/FindFFI.cmake
 lib/cmake/llvm/FindGRPC.cmake
 lib/cmake/llvm/FindLibpfm.cmake
 lib/cmake/llvm/FindOCaml.cmake
 lib/cmake/llvm/FindSphinx.cmake
+lib/cmake/llvm/FindTerminfo.cmake
 lib/cmake/llvm/FindZ3.cmake
 lib/cmake/llvm/GenerateVersionFromVCS.cmake
 lib/cmake/llvm/GetErrcMessages.cmake
@@ -1777,7 +1838,7 @@ lib/cmake/llvm/TensorFlowCompile.cmake
 lib/cmake/llvm/UseLibtool.cmake
 lib/cmake/llvm/VersionFromVCS.cmake
 lib/libLLVM-${PKGVERSION}.${SOEXT}
-lib/libLLVM-13.so
+lib/libLLVM-14.so
 lib/libLLVM.${SOEXT}
 ${PLIST.AArch64}lib/libLLVMAArch64AsmParser.a
 ${PLIST.AArch64}lib/libLLVMAArch64CodeGen.a
@@ -1790,6 +1851,7 @@ ${PLIST.AMDGPU}lib/libLLVMAMDGPUCodeGen.
 ${PLIST.AMDGPU}lib/libLLVMAMDGPUDesc.a
 ${PLIST.AMDGPU}lib/libLLVMAMDGPUDisassembler.a
 ${PLIST.AMDGPU}lib/libLLVMAMDGPUInfo.a
+${PLIST.AMDGPU}lib/libLLVMAMDGPUTargetMCA.a
 ${PLIST.AMDGPU}lib/libLLVMAMDGPUUtils.a
 ${PLIST.ARM}lib/libLLVMARMAsmParser.a
 ${PLIST.ARM}lib/libLLVMARMCodeGen.a
@@ -1828,7 +1890,9 @@ lib/libLLVMDebugInfoDWARF.a
 lib/libLLVMDebugInfoGSYM.a
 lib/libLLVMDebugInfoMSF.a
 lib/libLLVMDebugInfoPDB.a
+lib/libLLVMDebuginfod.a
 lib/libLLVMDemangle.a
+lib/libLLVMDiff.a
 lib/libLLVMDlltoolDriver.a
 lib/libLLVMExecutionEngine.a
 lib/libLLVMExegesis.a
@@ -1864,7 +1928,6 @@ lib/libLLVMLineEditor.a
 lib/libLLVMLinker.a
 lib/libLLVMMC.a
 lib/libLLVMMCA.a
-${PLIST.AMDGPU}lib/libLLVMMCACustomBehaviourAMDGPU.a
 lib/libLLVMMCDisassembler.a
 lib/libLLVMMCJIT.a
 lib/libLLVMMCParser.a
@@ -1935,6 +1998,7 @@ ${PLIST.X86}lib/libLLVMX86CodeGen.a
 ${PLIST.X86}lib/libLLVMX86Desc.a
 ${PLIST.X86}lib/libLLVMX86Disassembler.a
 ${PLIST.X86}lib/libLLVMX86Info.a
+${PLIST.X86}lib/libLLVMX86TargetMCA.a
 ${PLIST.XCore}lib/libLLVMXCoreCodeGen.a
 ${PLIST.XCore}lib/libLLVMXCoreDesc.a
 ${PLIST.XCore}lib/libLLVMXCoreDisassembler.a
@@ -1942,9 +2006,9 @@ ${PLIST.XCore}lib/libLLVMXCoreInfo.a
 lib/libLLVMXRay.a
 lib/libLLVMipo.a
 lib/libLTO.${SOEXT}
-${PLIST.notdylib}lib/libLTO.${SOEXT}.13
+${PLIST.notdylib}lib/libLTO.${SOEXT}.14
 lib/libRemarks.${SOEXT}
-${PLIST.notdylib}lib/libRemarks.${SOEXT}.13
+${PLIST.notdylib}lib/libRemarks.${SOEXT}.14
 share/opt-viewer/opt-diff.py
 share/opt-viewer/opt-stats.py
 share/opt-viewer/opt-viewer.py

Index: pkgsrc/lang/llvm/buildlink3.mk
diff -u pkgsrc/lang/llvm/buildlink3.mk:1.18 pkgsrc/lang/llvm/buildlink3.mk:1.19
--- pkgsrc/lang/llvm/buildlink3.mk:1.18 Tue Jun 28 11:34:13 2022
+++ pkgsrc/lang/llvm/buildlink3.mk      Fri Aug 12 08:37:58 2022
@@ -1,12 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.18 2022/06/28 11:34:13 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.19 2022/08/12 08:37:58 pin Exp $
 
 BUILDLINK_TREE+=       llvm
 
 .if !defined(LLVM_BUILDLINK3_MK)
 LLVM_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.llvm+=   llvm>=10.0.1
-BUILDLINK_ABI_DEPENDS.llvm+=   llvm>=13.0.1nb2
+BUILDLINK_API_DEPENDS.llvm+=   llvm>=14
 BUILDLINK_PKGSRCDIR.llvm?=     ../../lang/llvm
 
 LLVM_CONFIG_PATH?=             ${BUILDLINK_PREFIX.llvm}/bin/llvm-config
@@ -33,6 +32,7 @@ BUILDLINK_FILES.llvm+=                bin/llvm-cvtres
 BUILDLINK_FILES.llvm+=         bin/llvm-cxxdump
 BUILDLINK_FILES.llvm+=         bin/llvm-cxxfilt
 BUILDLINK_FILES.llvm+=         bin/llvm-cxxmap
+BUILDLINK_FILES.llvm+=         bin/llvm-debuginfod-find
 BUILDLINK_FILES.llvm+=         bin/llvm-diff
 BUILDLINK_FILES.llvm+=         bin/llvm-dis
 BUILDLINK_FILES.llvm+=         bin/llvm-dlltool
@@ -79,6 +79,7 @@ BUILDLINK_FILES.llvm+=                bin/llvm-strip
 BUILDLINK_FILES.llvm+=         bin/llvm-symbolizer
 BUILDLINK_FILES.llvm+=         bin/llvm-tapi-diff
 BUILDLINK_FILES.llvm+=         bin/llvm-tblgen
+BUILDLINK_FILES.llvm+=         bin/llvm-tli-checker
 BUILDLINK_FILES.llvm+=         bin/llvm-undname
 BUILDLINK_FILES.llvm+=         bin/llvm-windres
 BUILDLINK_FILES.llvm+=         bin/llvm-xray

Index: pkgsrc/lang/llvm/distinfo
diff -u pkgsrc/lang/llvm/distinfo:1.34 pkgsrc/lang/llvm/distinfo:1.35
--- pkgsrc/lang/llvm/distinfo:1.34      Thu Feb  3 20:38:39 2022
+++ pkgsrc/lang/llvm/distinfo   Fri Aug 12 08:37:58 2022
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.34 2022/02/03 20:38:39 adam Exp $
+$NetBSD: distinfo,v 1.35 2022/08/12 08:37:58 pin Exp $
 
-BLAKE2s (llvm-13.0.1.src.tar.xz) = 5fff4c8506340cc14b2160478be6403c80f526841209a4b1b3a9f16cf61dcc05
-SHA512 (llvm-13.0.1.src.tar.xz) = 05fbe8708ac3d0dfef3a9135ee88185a95ed492095429a97d33b8aadb0187e59ad42d1a7184f02b5c84fdd31f3d7227c65bd292ed0aa039b29522e59cf90a965
-Size (llvm-13.0.1.src.tar.xz) = 45479112 bytes
+BLAKE2s (llvm-14.0.6.src.tar.xz) = 2d44946453add45426569fd4187654f83881341c5c0109e4ffacc60e8f73af60
+SHA512 (llvm-14.0.6.src.tar.xz) = 6461bdde27aac17fa44c3e99a85ec47ffb181d0d4e5c3ef1c4286a59583e3b0c51af3c8081a300f45b99524340773a3011380059e3b3a571c3b0a8733e96fc1d
+Size (llvm-14.0.6.src.tar.xz) = 49660136 bytes
 SHA1 (patch-CMakeLists.txt) = 78e2dab2bf73f7e466ca2788fe6444e39b4ebd80
-SHA1 (patch-cmake_config-ix.cmake) = 72d15d43d6d8eb3bd8b2c1ff7d416bd6b2421908
+SHA1 (patch-cmake_config-ix.cmake) = bd4ad5b56f49c356f162994524e6e708005dace8
 SHA1 (patch-cmake_modules_AddLLVM.cmake) = 148897aeba8c29b9cf55eade62554710ae0f63f3
 SHA1 (patch-include_llvm-c_DataTypes.h) = 790c9458d6590a0d6985fdcbd8785da340b9779b
 SHA1 (patch-include_llvm_Analysis_ConstantFolding.h) = 56b9374da236c346565897977040255b9766cab8

Index: pkgsrc/lang/llvm/options.mk
diff -u pkgsrc/lang/llvm/options.mk:1.13 pkgsrc/lang/llvm/options.mk:1.14
--- pkgsrc/lang/llvm/options.mk:1.13    Sat Jun 11 13:44:05 2022
+++ pkgsrc/lang/llvm/options.mk Fri Aug 12 08:37:58 2022
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.13 2022/06/11 13:44:05 fcambus Exp $
+# $NetBSD: options.mk,v 1.14 2022/08/12 08:37:58 pin Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.llvm
 
@@ -26,7 +26,7 @@ PKG_SUGGESTED_OPTIONS+=               terminfo
 PKG_SUGGESTED_OPTIONS+=        llvm-target-sparc
 .elif !empty(MACHINE_ARCH:Mpowerpc*)
 PKG_SUGGESTED_OPTIONS+=        llvm-target-powerpc
-.elif !empty(MACHINE_ARCH:Maarch64)
+.elif ${MACHINE_ARCH} == aarch64
 PKG_SUGGESTED_OPTIONS+=        llvm-target-aarch64
 PKG_SUGGESTED_OPTIONS+=        llvm-target-webassembly
 .elif !empty(MACHINE_ARCH:Mearm*)

Index: pkgsrc/lang/llvm/version.mk
diff -u pkgsrc/lang/llvm/version.mk:1.8 pkgsrc/lang/llvm/version.mk:1.9
--- pkgsrc/lang/llvm/version.mk:1.8     Sat May 28 01:51:16 2022
+++ pkgsrc/lang/llvm/version.mk Fri Aug 12 08:37:58 2022
@@ -1,4 +1,4 @@
-# $NetBSD: version.mk,v 1.8 2022/05/28 01:51:16 gutteridge Exp $
+# $NetBSD: version.mk,v 1.9 2022/08/12 08:37:58 pin Exp $
 # used by devel/lld
 # used by devel/lldb
 # used by devel/polly
@@ -12,7 +12,7 @@
 # used by lang/wasi-libcxx
 # used by parallel/openmp
 
-LLVM_VERSION=  13.0.1
+LLVM_VERSION=  14.0.6
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=llvm/}
 GITHUB_PROJECT=        llvm-project
 GITHUB_RELEASE=        llvmorg-${PKGVERSION_NOREV}

Index: pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake
diff -u pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake:1.6 pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake:1.7
--- pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake:1.6    Sun Dec 26 21:52:11 2021
+++ pkgsrc/lang/llvm/patches/patch-cmake_config-ix.cmake        Fri Aug 12 08:37:58 2022
@@ -1,9 +1,9 @@
-$NetBSD: patch-cmake_config-ix.cmake,v 1.6 2021/12/26 21:52:11 he Exp $
+$NetBSD: patch-cmake_config-ix.cmake,v 1.7 2022/08/12 08:37:58 pin Exp $
 
 Do not generate invalid llvm-config in pkgsrc.
 Allow override of pthread library selection via PKGSRC_LLVM_PTHREADLIB.
 
---- cmake/config-ix.cmake.orig 2021-04-06 16:38:18.000000000 +0000
+--- cmake/config-ix.cmake.orig 2022-06-22 16:46:24.000000000 +0000
 +++ cmake/config-ix.cmake
 @@ -113,7 +113,11 @@ if(HAVE_LIBPTHREAD)
    set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
@@ -18,12 +18,3 @@ Allow override of pthread library select
  endif()
  
  if(LLVM_ENABLE_ZLIB)
-@@ -176,7 +180,7 @@ if(NOT LLVM_USE_SANITIZER MATCHES "Memor
-       set(MAYBE_REQUIRED)
-     endif()
-     if(LLVM_ENABLE_TERMINFO)
--      find_library(TERMINFO_LIB NAMES terminfo tinfo curses ncurses ncursesw ${MAYBE_REQUIRED})
-+      find_library(TERMINFO_LIB NAMES terminfo curses ncurses ncursesw tinfo ${MAYBE_REQUIRED})
-     endif()
-     if(TERMINFO_LIB)
-       set(LLVM_ENABLE_TERMINFO 1)



Home | Main Index | Thread Index | Old Index