i8c-beta-stream-rhel8
changed/i8c-beta-stream-rhel8/lld-17.0.6-1.module+el8.10.0+20808+e12784c0
commit
77b7f887cc
@ -0,0 +1,2 @@
|
||||
SOURCES/lld-17.0.6.src.tar.xz
|
||||
SOURCES/lld-17.0.6.src.tar.xz.sig
|
@ -0,0 +1,2 @@
|
||||
abe5d45ebea2b9994a5e6ed31268a2114f4fa14f SOURCES/lld-17.0.6.src.tar.xz
|
||||
849136b25fe7afb56131cdb31ffb08593b6ed997 SOURCES/lld-17.0.6.src.tar.xz.sig
|
@ -0,0 +1,497 @@
|
||||
From 9df81767571465ef1f2e7370299e21c64fe34f40 Mon Sep 17 00:00:00 2001
|
||||
From: serge-sans-paille <sguelton@redhat.com>
|
||||
Date: Thu, 25 Feb 2021 14:24:14 +0100
|
||||
Subject: [PATCH][lld] Import compact_unwind_encoding.h from libunwind
|
||||
|
||||
This avoids an implicit cross package dependency
|
||||
---
|
||||
lld/include/mach-o/compact_unwind_encoding.h | 477 +++++++++++++++++++
|
||||
1 file changed, 477 insertions(+)
|
||||
create mode 100644 lld/include/mach-o/compact_unwind_encoding.h
|
||||
|
||||
diff --git a/lld/include/mach-o/compact_unwind_encoding.h b/lld/include/mach-o/compact_unwind_encoding.h
|
||||
new file mode 100644
|
||||
index 000000000000..5301b1055ef9
|
||||
--- /dev/null
|
||||
+++ b/lld/include/mach-o/compact_unwind_encoding.h
|
||||
@@ -0,0 +1,477 @@
|
||||
+//===------------------ mach-o/compact_unwind_encoding.h ------------------===//
|
||||
+//
|
||||
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
+// See https://llvm.org/LICENSE.txt for license information.
|
||||
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
+//
|
||||
+//
|
||||
+// Darwin's alternative to DWARF based unwind encodings.
|
||||
+//
|
||||
+//===----------------------------------------------------------------------===//
|
||||
+
|
||||
+
|
||||
+#ifndef __COMPACT_UNWIND_ENCODING__
|
||||
+#define __COMPACT_UNWIND_ENCODING__
|
||||
+
|
||||
+#include <stdint.h>
|
||||
+
|
||||
+//
|
||||
+// Compilers can emit standard DWARF FDEs in the __TEXT,__eh_frame section
|
||||
+// of object files. Or compilers can emit compact unwind information in
|
||||
+// the __LD,__compact_unwind section.
|
||||
+//
|
||||
+// When the linker creates a final linked image, it will create a
|
||||
+// __TEXT,__unwind_info section. This section is a small and fast way for the
|
||||
+// runtime to access unwind info for any given function. If the compiler
|
||||
+// emitted compact unwind info for the function, that compact unwind info will
|
||||
+// be encoded in the __TEXT,__unwind_info section. If the compiler emitted
|
||||
+// DWARF unwind info, the __TEXT,__unwind_info section will contain the offset
|
||||
+// of the FDE in the __TEXT,__eh_frame section in the final linked image.
|
||||
+//
|
||||
+// Note: Previously, the linker would transform some DWARF unwind infos into
|
||||
+// compact unwind info. But that is fragile and no longer done.
|
||||
+
|
||||
+
|
||||
+//
|
||||
+// The compact unwind endoding is a 32-bit value which encoded in an
|
||||
+// architecture specific way, which registers to restore from where, and how
|
||||
+// to unwind out of the function.
|
||||
+//
|
||||
+typedef uint32_t compact_unwind_encoding_t;
|
||||
+
|
||||
+
|
||||
+// architecture independent bits
|
||||
+enum {
|
||||
+ UNWIND_IS_NOT_FUNCTION_START = 0x80000000,
|
||||
+ UNWIND_HAS_LSDA = 0x40000000,
|
||||
+ UNWIND_PERSONALITY_MASK = 0x30000000,
|
||||
+};
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+//
|
||||
+// x86
|
||||
+//
|
||||
+// 1-bit: start
|
||||
+// 1-bit: has lsda
|
||||
+// 2-bit: personality index
|
||||
+//
|
||||
+// 4-bits: 0=old, 1=ebp based, 2=stack-imm, 3=stack-ind, 4=DWARF
|
||||
+// ebp based:
|
||||
+// 15-bits (5*3-bits per reg) register permutation
|
||||
+// 8-bits for stack offset
|
||||
+// frameless:
|
||||
+// 8-bits stack size
|
||||
+// 3-bits stack adjust
|
||||
+// 3-bits register count
|
||||
+// 10-bits register permutation
|
||||
+//
|
||||
+enum {
|
||||
+ UNWIND_X86_MODE_MASK = 0x0F000000,
|
||||
+ UNWIND_X86_MODE_EBP_FRAME = 0x01000000,
|
||||
+ UNWIND_X86_MODE_STACK_IMMD = 0x02000000,
|
||||
+ UNWIND_X86_MODE_STACK_IND = 0x03000000,
|
||||
+ UNWIND_X86_MODE_DWARF = 0x04000000,
|
||||
+
|
||||
+ UNWIND_X86_EBP_FRAME_REGISTERS = 0x00007FFF,
|
||||
+ UNWIND_X86_EBP_FRAME_OFFSET = 0x00FF0000,
|
||||
+
|
||||
+ UNWIND_X86_FRAMELESS_STACK_SIZE = 0x00FF0000,
|
||||
+ UNWIND_X86_FRAMELESS_STACK_ADJUST = 0x0000E000,
|
||||
+ UNWIND_X86_FRAMELESS_STACK_REG_COUNT = 0x00001C00,
|
||||
+ UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION = 0x000003FF,
|
||||
+
|
||||
+ UNWIND_X86_DWARF_SECTION_OFFSET = 0x00FFFFFF,
|
||||
+};
|
||||
+
|
||||
+enum {
|
||||
+ UNWIND_X86_REG_NONE = 0,
|
||||
+ UNWIND_X86_REG_EBX = 1,
|
||||
+ UNWIND_X86_REG_ECX = 2,
|
||||
+ UNWIND_X86_REG_EDX = 3,
|
||||
+ UNWIND_X86_REG_EDI = 4,
|
||||
+ UNWIND_X86_REG_ESI = 5,
|
||||
+ UNWIND_X86_REG_EBP = 6,
|
||||
+};
|
||||
+
|
||||
+//
|
||||
+// For x86 there are four modes for the compact unwind encoding:
|
||||
+// UNWIND_X86_MODE_EBP_FRAME:
|
||||
+// EBP based frame where EBP is push on stack immediately after return address,
|
||||
+// then ESP is moved to EBP. Thus, to unwind ESP is restored with the current
|
||||
+// EPB value, then EBP is restored by popping off the stack, and the return
|
||||
+// is done by popping the stack once more into the pc.
|
||||
+// All non-volatile registers that need to be restored must have been saved
|
||||
+// in a small range in the stack that starts EBP-4 to EBP-1020. The offset/4
|
||||
+// is encoded in the UNWIND_X86_EBP_FRAME_OFFSET bits. The registers saved
|
||||
+// are encoded in the UNWIND_X86_EBP_FRAME_REGISTERS bits as five 3-bit entries.
|
||||
+// Each entry contains which register to restore.
|
||||
+// UNWIND_X86_MODE_STACK_IMMD:
|
||||
+// A "frameless" (EBP not used as frame pointer) function with a small
|
||||
+// constant stack size. To return, a constant (encoded in the compact
|
||||
+// unwind encoding) is added to the ESP. Then the return is done by
|
||||
+// popping the stack into the pc.
|
||||
+// All non-volatile registers that need to be restored must have been saved
|
||||
+// on the stack immediately after the return address. The stack_size/4 is
|
||||
+// encoded in the UNWIND_X86_FRAMELESS_STACK_SIZE (max stack size is 1024).
|
||||
+// The number of registers saved is encoded in UNWIND_X86_FRAMELESS_STACK_REG_COUNT.
|
||||
+// UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION constains which registers were
|
||||
+// saved and their order.
|
||||
+// UNWIND_X86_MODE_STACK_IND:
|
||||
+// A "frameless" (EBP not used as frame pointer) function large constant
|
||||
+// stack size. This case is like the previous, except the stack size is too
|
||||
+// large to encode in the compact unwind encoding. Instead it requires that
|
||||
+// the function contains "subl $nnnnnnnn,ESP" in its prolog. The compact
|
||||
+// encoding contains the offset to the nnnnnnnn value in the function in
|
||||
+// UNWIND_X86_FRAMELESS_STACK_SIZE.
|
||||
+// UNWIND_X86_MODE_DWARF:
|
||||
+// No compact unwind encoding is available. Instead the low 24-bits of the
|
||||
+// compact encoding is the offset of the DWARF FDE in the __eh_frame section.
|
||||
+// This mode is never used in object files. It is only generated by the
|
||||
+// linker in final linked images which have only DWARF unwind info for a
|
||||
+// function.
|
||||
+//
|
||||
+// The permutation encoding is a Lehmer code sequence encoded into a
|
||||
+// single variable-base number so we can encode the ordering of up to
|
||||
+// six registers in a 10-bit space.
|
||||
+//
|
||||
+// The following is the algorithm used to create the permutation encoding used
|
||||
+// with frameless stacks. It is passed the number of registers to be saved and
|
||||
+// an array of the register numbers saved.
|
||||
+//
|
||||
+//uint32_t permute_encode(uint32_t registerCount, const uint32_t registers[6])
|
||||
+//{
|
||||
+// uint32_t renumregs[6];
|
||||
+// for (int i=6-registerCount; i < 6; ++i) {
|
||||
+// int countless = 0;
|
||||
+// for (int j=6-registerCount; j < i; ++j) {
|
||||
+// if ( registers[j] < registers[i] )
|
||||
+// ++countless;
|
||||
+// }
|
||||
+// renumregs[i] = registers[i] - countless -1;
|
||||
+// }
|
||||
+// uint32_t permutationEncoding = 0;
|
||||
+// switch ( registerCount ) {
|
||||
+// case 6:
|
||||
+// permutationEncoding |= (120*renumregs[0] + 24*renumregs[1]
|
||||
+// + 6*renumregs[2] + 2*renumregs[3]
|
||||
+// + renumregs[4]);
|
||||
+// break;
|
||||
+// case 5:
|
||||
+// permutationEncoding |= (120*renumregs[1] + 24*renumregs[2]
|
||||
+// + 6*renumregs[3] + 2*renumregs[4]
|
||||
+// + renumregs[5]);
|
||||
+// break;
|
||||
+// case 4:
|
||||
+// permutationEncoding |= (60*renumregs[2] + 12*renumregs[3]
|
||||
+// + 3*renumregs[4] + renumregs[5]);
|
||||
+// break;
|
||||
+// case 3:
|
||||
+// permutationEncoding |= (20*renumregs[3] + 4*renumregs[4]
|
||||
+// + renumregs[5]);
|
||||
+// break;
|
||||
+// case 2:
|
||||
+// permutationEncoding |= (5*renumregs[4] + renumregs[5]);
|
||||
+// break;
|
||||
+// case 1:
|
||||
+// permutationEncoding |= (renumregs[5]);
|
||||
+// break;
|
||||
+// }
|
||||
+// return permutationEncoding;
|
||||
+//}
|
||||
+//
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+//
|
||||
+// x86_64
|
||||
+//
|
||||
+// 1-bit: start
|
||||
+// 1-bit: has lsda
|
||||
+// 2-bit: personality index
|
||||
+//
|
||||
+// 4-bits: 0=old, 1=rbp based, 2=stack-imm, 3=stack-ind, 4=DWARF
|
||||
+// rbp based:
|
||||
+// 15-bits (5*3-bits per reg) register permutation
|
||||
+// 8-bits for stack offset
|
||||
+// frameless:
|
||||
+// 8-bits stack size
|
||||
+// 3-bits stack adjust
|
||||
+// 3-bits register count
|
||||
+// 10-bits register permutation
|
||||
+//
|
||||
+enum {
|
||||
+ UNWIND_X86_64_MODE_MASK = 0x0F000000,
|
||||
+ UNWIND_X86_64_MODE_RBP_FRAME = 0x01000000,
|
||||
+ UNWIND_X86_64_MODE_STACK_IMMD = 0x02000000,
|
||||
+ UNWIND_X86_64_MODE_STACK_IND = 0x03000000,
|
||||
+ UNWIND_X86_64_MODE_DWARF = 0x04000000,
|
||||
+
|
||||
+ UNWIND_X86_64_RBP_FRAME_REGISTERS = 0x00007FFF,
|
||||
+ UNWIND_X86_64_RBP_FRAME_OFFSET = 0x00FF0000,
|
||||
+
|
||||
+ UNWIND_X86_64_FRAMELESS_STACK_SIZE = 0x00FF0000,
|
||||
+ UNWIND_X86_64_FRAMELESS_STACK_ADJUST = 0x0000E000,
|
||||
+ UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT = 0x00001C00,
|
||||
+ UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION = 0x000003FF,
|
||||
+
|
||||
+ UNWIND_X86_64_DWARF_SECTION_OFFSET = 0x00FFFFFF,
|
||||
+};
|
||||
+
|
||||
+enum {
|
||||
+ UNWIND_X86_64_REG_NONE = 0,
|
||||
+ UNWIND_X86_64_REG_RBX = 1,
|
||||
+ UNWIND_X86_64_REG_R12 = 2,
|
||||
+ UNWIND_X86_64_REG_R13 = 3,
|
||||
+ UNWIND_X86_64_REG_R14 = 4,
|
||||
+ UNWIND_X86_64_REG_R15 = 5,
|
||||
+ UNWIND_X86_64_REG_RBP = 6,
|
||||
+};
|
||||
+//
|
||||
+// For x86_64 there are four modes for the compact unwind encoding:
|
||||
+// UNWIND_X86_64_MODE_RBP_FRAME:
|
||||
+// RBP based frame where RBP is push on stack immediately after return address,
|
||||
+// then RSP is moved to RBP. Thus, to unwind RSP is restored with the current
|
||||
+// EPB value, then RBP is restored by popping off the stack, and the return
|
||||
+// is done by popping the stack once more into the pc.
|
||||
+// All non-volatile registers that need to be restored must have been saved
|
||||
+// in a small range in the stack that starts RBP-8 to RBP-2040. The offset/8
|
||||
+// is encoded in the UNWIND_X86_64_RBP_FRAME_OFFSET bits. The registers saved
|
||||
+// are encoded in the UNWIND_X86_64_RBP_FRAME_REGISTERS bits as five 3-bit entries.
|
||||
+// Each entry contains which register to restore.
|
||||
+// UNWIND_X86_64_MODE_STACK_IMMD:
|
||||
+// A "frameless" (RBP not used as frame pointer) function with a small
|
||||
+// constant stack size. To return, a constant (encoded in the compact
|
||||
+// unwind encoding) is added to the RSP. Then the return is done by
|
||||
+// popping the stack into the pc.
|
||||
+// All non-volatile registers that need to be restored must have been saved
|
||||
+// on the stack immediately after the return address. The stack_size/8 is
|
||||
+// encoded in the UNWIND_X86_64_FRAMELESS_STACK_SIZE (max stack size is 2048).
|
||||
+// The number of registers saved is encoded in UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT.
|
||||
+// UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION constains which registers were
|
||||
+// saved and their order.
|
||||
+// UNWIND_X86_64_MODE_STACK_IND:
|
||||
+// A "frameless" (RBP not used as frame pointer) function large constant
|
||||
+// stack size. This case is like the previous, except the stack size is too
|
||||
+// large to encode in the compact unwind encoding. Instead it requires that
|
||||
+// the function contains "subq $nnnnnnnn,RSP" in its prolog. The compact
|
||||
+// encoding contains the offset to the nnnnnnnn value in the function in
|
||||
+// UNWIND_X86_64_FRAMELESS_STACK_SIZE.
|
||||
+// UNWIND_X86_64_MODE_DWARF:
|
||||
+// No compact unwind encoding is available. Instead the low 24-bits of the
|
||||
+// compact encoding is the offset of the DWARF FDE in the __eh_frame section.
|
||||
+// This mode is never used in object files. It is only generated by the
|
||||
+// linker in final linked images which have only DWARF unwind info for a
|
||||
+// function.
|
||||
+//
|
||||
+
|
||||
+
|
||||
+// ARM64
|
||||
+//
|
||||
+// 1-bit: start
|
||||
+// 1-bit: has lsda
|
||||
+// 2-bit: personality index
|
||||
+//
|
||||
+// 4-bits: 4=frame-based, 3=DWARF, 2=frameless
|
||||
+// frameless:
|
||||
+// 12-bits of stack size
|
||||
+// frame-based:
|
||||
+// 4-bits D reg pairs saved
|
||||
+// 5-bits X reg pairs saved
|
||||
+// DWARF:
|
||||
+// 24-bits offset of DWARF FDE in __eh_frame section
|
||||
+//
|
||||
+enum {
|
||||
+ UNWIND_ARM64_MODE_MASK = 0x0F000000,
|
||||
+ UNWIND_ARM64_MODE_FRAMELESS = 0x02000000,
|
||||
+ UNWIND_ARM64_MODE_DWARF = 0x03000000,
|
||||
+ UNWIND_ARM64_MODE_FRAME = 0x04000000,
|
||||
+
|
||||
+ UNWIND_ARM64_FRAME_X19_X20_PAIR = 0x00000001,
|
||||
+ UNWIND_ARM64_FRAME_X21_X22_PAIR = 0x00000002,
|
||||
+ UNWIND_ARM64_FRAME_X23_X24_PAIR = 0x00000004,
|
||||
+ UNWIND_ARM64_FRAME_X25_X26_PAIR = 0x00000008,
|
||||
+ UNWIND_ARM64_FRAME_X27_X28_PAIR = 0x00000010,
|
||||
+ UNWIND_ARM64_FRAME_D8_D9_PAIR = 0x00000100,
|
||||
+ UNWIND_ARM64_FRAME_D10_D11_PAIR = 0x00000200,
|
||||
+ UNWIND_ARM64_FRAME_D12_D13_PAIR = 0x00000400,
|
||||
+ UNWIND_ARM64_FRAME_D14_D15_PAIR = 0x00000800,
|
||||
+
|
||||
+ UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK = 0x00FFF000,
|
||||
+ UNWIND_ARM64_DWARF_SECTION_OFFSET = 0x00FFFFFF,
|
||||
+};
|
||||
+// For arm64 there are three modes for the compact unwind encoding:
|
||||
+// UNWIND_ARM64_MODE_FRAME:
|
||||
+// This is a standard arm64 prolog where FP/LR are immediately pushed on the
|
||||
+// stack, then SP is copied to FP. If there are any non-volatile registers
|
||||
+// saved, then are copied into the stack frame in pairs in a contiguous
|
||||
+// range right below the saved FP/LR pair. Any subset of the five X pairs
|
||||
+// and four D pairs can be saved, but the memory layout must be in register
|
||||
+// number order.
|
||||
+// UNWIND_ARM64_MODE_FRAMELESS:
|
||||
+// A "frameless" leaf function, where FP/LR are not saved. The return address
|
||||
+// remains in LR throughout the function. If any non-volatile registers
|
||||
+// are saved, they must be pushed onto the stack before any stack space is
|
||||
+// allocated for local variables. The stack sized (including any saved
|
||||
+// non-volatile registers) divided by 16 is encoded in the bits
|
||||
+// UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK.
|
||||
+// UNWIND_ARM64_MODE_DWARF:
|
||||
+// No compact unwind encoding is available. Instead the low 24-bits of the
|
||||
+// compact encoding is the offset of the DWARF FDE in the __eh_frame section.
|
||||
+// This mode is never used in object files. It is only generated by the
|
||||
+// linker in final linked images which have only DWARF unwind info for a
|
||||
+// function.
|
||||
+//
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+////////////////////////////////////////////////////////////////////////////////
|
||||
+//
|
||||
+// Relocatable Object Files: __LD,__compact_unwind
|
||||
+//
|
||||
+////////////////////////////////////////////////////////////////////////////////
|
||||
+
|
||||
+//
|
||||
+// A compiler can generated compact unwind information for a function by adding
|
||||
+// a "row" to the __LD,__compact_unwind section. This section has the
|
||||
+// S_ATTR_DEBUG bit set, so the section will be ignored by older linkers.
|
||||
+// It is removed by the new linker, so never ends up in final executables.
|
||||
+// This section is a table, initially with one row per function (that needs
|
||||
+// unwind info). The table columns and some conceptual entries are:
|
||||
+//
|
||||
+// range-start pointer to start of function/range
|
||||
+// range-length
|
||||
+// compact-unwind-encoding 32-bit encoding
|
||||
+// personality-function or zero if no personality function
|
||||
+// lsda or zero if no LSDA data
|
||||
+//
|
||||
+// The length and encoding fields are 32-bits. The other are all pointer sized.
|
||||
+//
|
||||
+// In x86_64 assembly, these entry would look like:
|
||||
+//
|
||||
+// .section __LD,__compact_unwind,regular,debug
|
||||
+//
|
||||
+// #compact unwind for _foo
|
||||
+// .quad _foo
|
||||
+// .set L1,LfooEnd-_foo
|
||||
+// .long L1
|
||||
+// .long 0x01010001
|
||||
+// .quad 0
|
||||
+// .quad 0
|
||||
+//
|
||||
+// #compact unwind for _bar
|
||||
+// .quad _bar
|
||||
+// .set L2,LbarEnd-_bar
|
||||
+// .long L2
|
||||
+// .long 0x01020011
|
||||
+// .quad __gxx_personality
|
||||
+// .quad except_tab1
|
||||
+//
|
||||
+//
|
||||
+// Notes: There is no need for any labels in the the __compact_unwind section.
|
||||
+// The use of the .set directive is to force the evaluation of the
|
||||
+// range-length at assembly time, instead of generating relocations.
|
||||
+//
|
||||
+// To support future compiler optimizations where which non-volatile registers
|
||||
+// are saved changes within a function (e.g. delay saving non-volatiles until
|
||||
+// necessary), there can by multiple lines in the __compact_unwind table for one
|
||||
+// function, each with a different (non-overlapping) range and each with
|
||||
+// different compact unwind encodings that correspond to the non-volatiles
|
||||
+// saved at that range of the function.
|
||||
+//
|
||||
+// If a particular function is so wacky that there is no compact unwind way
|
||||
+// to encode it, then the compiler can emit traditional DWARF unwind info.
|
||||
+// The runtime will use which ever is available.
|
||||
+//
|
||||
+// Runtime support for compact unwind encodings are only available on 10.6
|
||||
+// and later. So, the compiler should not generate it when targeting pre-10.6.
|
||||
+
|
||||
+
|
||||
+
|
||||
+
|
||||
+////////////////////////////////////////////////////////////////////////////////
|
||||
+//
|
||||
+// Final Linked Images: __TEXT,__unwind_info
|
||||
+//
|
||||
+////////////////////////////////////////////////////////////////////////////////
|
||||
+
|
||||
+//
|
||||
+// The __TEXT,__unwind_info section is laid out for an efficient two level lookup.
|
||||
+// The header of the section contains a coarse index that maps function address
|
||||
+// to the page (4096 byte block) containing the unwind info for that function.
|
||||
+//
|
||||
+
|
||||
+#define UNWIND_SECTION_VERSION 1
|
||||
+struct unwind_info_section_header
|
||||
+{
|
||||
+ uint32_t version; // UNWIND_SECTION_VERSION
|
||||
+ uint32_t commonEncodingsArraySectionOffset;
|
||||
+ uint32_t commonEncodingsArrayCount;
|
||||
+ uint32_t personalityArraySectionOffset;
|
||||
+ uint32_t personalityArrayCount;
|
||||
+ uint32_t indexSectionOffset;
|
||||
+ uint32_t indexCount;
|
||||
+ // compact_unwind_encoding_t[]
|
||||
+ // uint32_t personalities[]
|
||||
+ // unwind_info_section_header_index_entry[]
|
||||
+ // unwind_info_section_header_lsda_index_entry[]
|
||||
+};
|
||||
+
|
||||
+struct unwind_info_section_header_index_entry
|
||||
+{
|
||||
+ uint32_t functionOffset;
|
||||
+ uint32_t secondLevelPagesSectionOffset; // section offset to start of regular or compress page
|
||||
+ uint32_t lsdaIndexArraySectionOffset; // section offset to start of lsda_index array for this range
|
||||
+};
|
||||
+
|
||||
+struct unwind_info_section_header_lsda_index_entry
|
||||
+{
|
||||
+ uint32_t functionOffset;
|
||||
+ uint32_t lsdaOffset;
|
||||
+};
|
||||
+
|
||||
+//
|
||||
+// There are two kinds of second level index pages: regular and compressed.
|
||||
+// A compressed page can hold up to 1021 entries, but it cannot be used
|
||||
+// if too many different encoding types are used. The regular page holds
|
||||
+// 511 entries.
|
||||
+//
|
||||
+
|
||||
+struct unwind_info_regular_second_level_entry
|
||||
+{
|
||||
+ uint32_t functionOffset;
|
||||
+ compact_unwind_encoding_t encoding;
|
||||
+};
|
||||
+
|
||||
+#define UNWIND_SECOND_LEVEL_REGULAR 2
|
||||
+struct unwind_info_regular_second_level_page_header
|
||||
+{
|
||||
+ uint32_t kind; // UNWIND_SECOND_LEVEL_REGULAR
|
||||
+ uint16_t entryPageOffset;
|
||||
+ uint16_t entryCount;
|
||||
+ // entry array
|
||||
+};
|
||||
+
|
||||
+#define UNWIND_SECOND_LEVEL_COMPRESSED 3
|
||||
+struct unwind_info_compressed_second_level_page_header
|
||||
+{
|
||||
+ uint32_t kind; // UNWIND_SECOND_LEVEL_COMPRESSED
|
||||
+ uint16_t entryPageOffset;
|
||||
+ uint16_t entryCount;
|
||||
+ uint16_t encodingsPageOffset;
|
||||
+ uint16_t encodingsCount;
|
||||
+ // 32-bit entry array
|
||||
+ // encodings array
|
||||
+};
|
||||
+
|
||||
+#define UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entry) (entry & 0x00FFFFFF)
|
||||
+#define UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entry) ((entry >> 24) & 0xFF)
|
||||
+
|
||||
+
|
||||
+
|
||||
+#endif
|
||||
+
|
||||
--
|
||||
2.30.2
|
||||
|
@ -0,0 +1,104 @@
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
9RmlwZlOTFGcWBYl/cfRONn9qi9a6w==
|
||||
=Lvw+
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mQINBFrqgT0BEAC7xo0WH+eNrLlU5LrCk59KmImn1abFcmWNd8kYr5XfqmJKyVqo
|
||||
EY7A/yRjf+Yn1621EDkpKPjbql7q7MlZMpqKVdOWKWgmhvz08IOKJxaIABd/iIRT
|
||||
FwhIvB68YjtmzcoOJRi1wLnwuG55fJ9E69HyZ33jgAlRaWV3bE/YyszoTlZriUOE
|
||||
RbzC5WzX004cE9evlrr+YLt5Y6z7tntOdSXPLyGOFAO5LYMsHsEdi2JBYWrjlslG
|
||||
6iJr5iEt9v442PrJ79YYbu5QWe/6APRWtI3AtKBp7y250oon2lbj+bIVD7U9fOBB
|
||||
n/Frqx54UN22sJycET63hgYW4pIjIi5zq+FF15aU+ZqBdtNltoX4hEN7wlDpuNc0
|
||||
ezVu2Z8hdt8thpjiFUioTQ1t3RmsN6N548VwxmHdoYpAmiZqPIYBYvm85JB7S/3h
|
||||
RLuoeGxufBhXGCpnG8ghTOGtbbdanuLB/UROFXTdyZbTCBN5S6jvwkPSaHG7H35Z
|
||||
3fazMriTXwL1RGAbKITSWhDe5dXy/yOInWe8emJx+35vwQYCB2L4S8wRyQyRw6x4
|
||||
YoXCscW041DUMBX2CC7SjMCcmAC39UX1c3GbTpS3rkJR9cmXt50nviMnKpIwlIPd
|
||||
ZYhmxKifwTJ70+c4GVK2o0MG9bTYvpYhLnYxv6iJCfgmT40E+qkDSzSoZwARAQAB
|
||||
tCJUb20gU3RlbGxhcmQgPHRzdGVsbGFyQHJlZGhhdC5jb20+iQI/BBMBAgApBQJa
|
||||
6oE9AhsDBQkB4TOABwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQoseUqYZB
|
||||
nYp8Gg//RmX6Nup/Dv05jTL7dKRBSD08MF400tRtTmRhIuAgGv27qO2hbqzprKVu
|
||||
vd20vKBB9CNZpXC2oY8k9VhGv2PZNi/X7iuULIYmzjeFMbJ5CjU6XvuUBmNasITH
|
||||
6K/0KLhGebPs5h/DNtd7lbzDm86dLcjxgl6LXUULaSyYvTAKn6YB6mAv5J3qJs2X
|
||||
lfTmenNh9p7TPFTfcMHcS70ywjqKXlDiH0q9bRKJnSX7xUFlTHjKkNnAcRjlPaGf
|
||||
wUUhIPrnpDboqfwfcmScLrHANW9nwFWSFkNAJu1HQUEuF+An/RZUHDxFbLPKKAIp
|
||||
hwZ0aORTfBVZ80AjehDMYCbmp1DJeTyLjC1/94un6mlxPIKnPPPM8rMxr83xnrvP
|
||||
+Y1+pJaDUL7ZvKnmt2LrGRa9GvsNiYKpCNCORfiwZTeSxxXb+LgaodnbCHvGBnk7
|
||||
nlbLdMY08vNlxSx8LNyG0krFxJw/rq260+73yc+qjENeG68fozTEy/4jSVrF4t3m
|
||||
8AAUu5r6i/Aomo7Q27TjU928bbCVunpvDpserfDqr3zsA96LO9k8T6THR6zC9i+R
|
||||
LiN9Vjl+Rr2YuU26DjFYkCNEA2kNflYCWPJi5I0eodTPZrIPBWJ+H0YTRX31bMH9
|
||||
X88FnWJuCwaqAMN3rWlX/lXNCouWDdCuPWseZApISAMnVDE2mM+JAlYEEwEIAEAC
|
||||
GwMHCwkIBwMCAQYVCAIJCgsEFgIDAQIeAQIXgBYhBEdOIjFqv0eFqIxujqLHlKmG
|
||||
QZ2KBQJgkytfBQkJaxEiAAoJEKLHlKmGQZ2Kv8YP/jNPjcMAP0ZTpUcYV46mGKwf
|
||||
aQ0g5FUMSfxP7uJHtctj2dUckPGpA9SAH+ApiJutVgTQpWqNJKPd2vVxOiu5sywN
|
||||
iDKCOMlKug5m6lgLX5h3zBvSN90Hpn4I0qHRA3rgENLoPs/UYBxohvFPIhOOjPqO
|
||||
HIUuSPhAIuIZawxtqlADswHiKPy38Ao5GnWRb60zKfrB+N+ZiOtg7ITrlTGYm2tX
|
||||
0W9iWUG32gIA/RX2qmFPoLrDFqsk66Eir0Ghk5gppRrmpEl/M1lqA8bxlqWto/8w
|
||||
V8yDbSEu5fmM3WN3OUcSA23lYJi4j656Q4hS5PU+IWuZbBhcpYwDGexV5+m/ySZb
|
||||
wtHZMIb4Au+dgJHCvRiSqHgplyfiamxX5CfA0DJVHoGXpBOw8a2geRT0+DrjSbOS
|
||||
+CDDnlfmQLfHgjEuyQPU8V0Wlb0tJEvnPPqNPmAv0Rv7MC4qmD/zDrgwuddpfr1x
|
||||
H+nWus2plR8E6p/x9uvPLb3plJ94ri1XjXiJPyPvqzBAwA40Zeg0rE7sTVwCC3E9
|
||||
RZa7dHh17exkcZdOIS/vRQ1G/VNaOVUwrcC/vIMgZSe37bCLeOKViMtacAiBJDjo
|
||||
INC1QJ2F3CYVwktrcgmuz9S8e2WrqdTWwijjConB80EwfHQllz5sp/jU6Bgv297X
|
||||
UXkgpk1y+ibQ9/syRQpFuQINBFrqgT0BEADB2vDHMuexkaUm3rPi6SvyMGcsHWle
|
||||
feAWm+UjROKIaV77rHwo0/8ncKbtoQx4ZZjDXdI77M2bXB7tPgyEML90bWDMMGN/
|
||||
gnpwWSsiDRWpFIV/+hD6B+l9UaEi4UvEstUbIchOkGrZgPZ4Qism4FSVosEK+FE7
|
||||
EKCT4PSS+LiBKSxJZB8/g2uX+3pJvVxYurvcVpTmiNlXvUyll4KMpzy5e0KKa/0y
|
||||
w9h7SAre5399cSM8E7PDQZQDb1EwbyVyO2yDLgs+p3yzPtRJAydaqRPmT1JbSCYf
|
||||
hcihTrViMA4EDN5GRjH2EElI37+2HMpgLs4rc6Abz1F4FUVFhqWJXCKUcAIrG17w
|
||||
A7YUlYg38S6Xws2Xj1VfZ/WP7/qIMJZidYTHZbN9WWCaifCPfLlE5VDNsa8y6Mxm
|
||||
uFMBAB4PpB1gmmP9pPZsOzV9SmeYt8h2P8cVKDW2f56azpBZvZX6NFn8e0+ZDXS4
|
||||
8BQz31G2Xdfa3uOEV0J3JxPXcEbfuPzDHb7OMYP+2Ypjox1TozT1e9zr46SQl9OF
|
||||
MglOBnwLZJ9baA/IqZkqLq5iu5Oqda44EIVNAntQ3gebi3+q3YG1SvNUseIy2+8y
|
||||
cNWtdDuWv366Af0okCdrKAdap8+KbREer9uXhamtvxc49RCoWwuKoKfBz0RdVvMv
|
||||
R/Py2xV8A7PaIQARAQABiQIlBBgBAgAPBQJa6oE9AhsMBQkB4TOAAAoJEKLHlKmG
|
||||
QZ2KAaMQALHif2E0PBLVt09vlr4i8jAsQvDrzRajmVPd2B9RpfNU6HJe/y93SZd2
|
||||
udr9vzgmfd2o5u12vbegKNiMRgp1VyHQDmYlce27jrH5aPuKmos78+o5/p5yPWCv
|
||||
Rj8zxGKh7le7UPO+7UveKu+bgb3zwTj6bEuHX7fVI+WjGmEH3bbjDGamWxXrpfGc
|
||||
7+Jr8TN4ZO2OwYBcFOS9U2ZQ6TxrPaCSIm6+j8f+a9HPOuuDc62mMuV/EWQZy0i7
|
||||
DhDqU2PNpVjQDWQNpHA8oLDrjNFAoJS8gbHABVsFM1VnwBNT2MKcZQmm05dlQ+ll
|
||||
S6meHNCvTniKIKC+Giz1Yd5JVGDACZWWPxEz6VhpQW/twkxRqwlUdpFt7UgDquTL
|
||||
M1beQUCZRt81yJTNdrggbhQ2POxOdIO0CPiQv7U1IzndZp6baedeBw4a7FCbj6GY
|
||||
cQeHxQCrWpQrwigiseG5uhhS9aiaVFEHja9baSLfXlZu/vsR4MdDG5/iEpier/Xw
|
||||
h1qnpTSY+r31Uw3lTUlPHzlg47PMgPslaIhCzfVggxh9bTqxcDbuYJ7NuoMho3tN
|
||||
yWfeofTJ7PhKzoXM2Y/rRFoM5gNh1RVA19ngLT5Jwiof8fPZvHJ/9ZkHn+O7eMNm
|
||||
m5++gYza3pnn2/PoGpGGAKok+sfJiq5Tb7RUefyJTeZiyTZ/XJrA
|
||||
=tMzl
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
@ -0,0 +1,386 @@
|
||||
%bcond_with snapshot_build
|
||||
|
||||
%if %{with snapshot_build}
|
||||
# Unlock LLVM Snapshot LUA functions
|
||||
%{llvm_sb_verbose}
|
||||
%{llvm_sb}
|
||||
%endif
|
||||
|
||||
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587
|
||||
%undefine _include_frame_pointers
|
||||
|
||||
%bcond_without check
|
||||
%bcond_with compat_build
|
||||
|
||||
%global maj_ver 17
|
||||
%global min_ver 0
|
||||
%global patch_ver 6
|
||||
#global rc_ver 4
|
||||
|
||||
%if %{with snapshot_build}
|
||||
%undefine rc_ver
|
||||
%global maj_ver %{llvm_snapshot_version_major}
|
||||
%global min_ver %{llvm_snapshot_version_minor}
|
||||
%global patch_ver %{llvm_snapshot_version_patch}
|
||||
%endif
|
||||
|
||||
%global lld_version %{maj_ver}.%{min_ver}.%{patch_ver}
|
||||
|
||||
%global lld_srcdir lld-%{lld_version}%{?rc_ver:rc%{rc_ver}}.src
|
||||
|
||||
%if %{with compat_build}
|
||||
%global pkg_name lld%{maj_ver}
|
||||
%global install_prefix %{_libdir}/llvm%{maj_ver}
|
||||
%global install_includedir %{install_prefix}/include
|
||||
%global install_libdir %{install_prefix}/lib
|
||||
%global install_datadir %{install_prefix}/share
|
||||
%else
|
||||
%global pkg_name lld
|
||||
%global install_prefix /usr
|
||||
%global install_includedir %{_includedir}
|
||||
%global install_libdir %{_libdir}
|
||||
%global install_datadir %{_datadir}
|
||||
%endif
|
||||
|
||||
%bcond_with ld_alternative
|
||||
|
||||
Name: %{pkg_name}
|
||||
Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
||||
Release: 1%{?dist}
|
||||
Summary: The LLVM Linker
|
||||
|
||||
License: NCSA
|
||||
URL: http://llvm.org
|
||||
%if %{with snapshot_build}
|
||||
Source0: %{llvm_snapshot_source_prefix}lld-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
||||
%{llvm_snapshot_extra_source_tags}
|
||||
%else
|
||||
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{lld_srcdir}.tar.xz
|
||||
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{lld_srcdir}.tar.xz.sig
|
||||
Source2: release-keys.asc
|
||||
%endif
|
||||
|
||||
ExcludeArch: s390x
|
||||
|
||||
# Bundle libunwind header need during build for MachO support
|
||||
Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch
|
||||
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake
|
||||
BuildRequires: ninja-build
|
||||
%if %{with compat_build}
|
||||
BuildRequires: llvm%{maj_ver}-devel = %{version}
|
||||
BuildRequires: llvm%{maj_ver}-cmake-utils = %{version}
|
||||
%else
|
||||
BuildRequires: llvm-devel = %{version}
|
||||
BuildRequires: llvm-cmake-utils = %{version}
|
||||
BuildRequires: llvm-test = %{version}
|
||||
BuildRequires: llvm-googletest = %{version}
|
||||
%endif
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: python3-devel
|
||||
|
||||
# For make check:
|
||||
BuildRequires: python3-rpm-macros
|
||||
BuildRequires: python3-lit
|
||||
|
||||
# For gpg source verification
|
||||
BuildRequires: gnupg2
|
||||
|
||||
%if %{with ld_alternative}
|
||||
Requires(post): %{_sbindir}/alternatives
|
||||
Requires(preun): %{_sbindir}/alternatives
|
||||
%endif
|
||||
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
%description
|
||||
The LLVM project linker.
|
||||
|
||||
%package devel
|
||||
Summary: Libraries and header files for LLD
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
%if %{without compat_build}
|
||||
# lld tools are referenced in the cmake files, so we need to add lld as a
|
||||
# dependency.
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
%endif
|
||||
|
||||
%description devel
|
||||
This package contains library and header files needed to develop new native
|
||||
programs that use the LLD infrastructure.
|
||||
|
||||
%package libs
|
||||
Summary: LLD shared libraries
|
||||
|
||||
%description libs
|
||||
Shared libraries for LLD.
|
||||
|
||||
%prep
|
||||
%if %{without snapshot_build}
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%endif
|
||||
|
||||
%autosetup -n %{lld_srcdir} -p2
|
||||
|
||||
%if %{with compat_build}
|
||||
# For compat builds, we don't want to build the actual lld binary. While there is an
|
||||
# LLD_BUILD_TOOLS cmake option, it is incomplete in various ways (e.g. still leaves install
|
||||
# targets and symlinks), so instead skip the tools/lld build entirely.
|
||||
# We can't simply delete the binaries after the fact, because this would leave checks for
|
||||
# their existence in the cmake exports.
|
||||
sed 's/add_subdirectory(tools\/lld)//' -i CMakeLists.txt
|
||||
%endif
|
||||
|
||||
%build
|
||||
|
||||
%undefine __cmake_in_source_build
|
||||
|
||||
%cmake \
|
||||
-GNinja \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_INSTALL_PREFIX=%{install_prefix} \
|
||||
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
||||
-DLLVM_DYLIB_COMPONENTS="all" \
|
||||
-DLLVM_COMMON_CMAKE_UTILS=%{install_datadir}/llvm/cmake \
|
||||
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
||||
-DPYTHON_EXECUTABLE=%{__python3} \
|
||||
%if %{with compat_build}
|
||||
-DLLVM_CMAKE_DIR=%{install_libdir}/cmake/llvm \
|
||||
-DLLVM_INCLUDE_TESTS=OFF \
|
||||
%else
|
||||
-DLLVM_INCLUDE_TESTS=ON \
|
||||
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
||||
-DLLVM_LIT_ARGS="-sv \
|
||||
--path %{_libdir}/llvm" \
|
||||
%if %{with snapshot_build}
|
||||
-DLLVM_VERSION_SUFFIX="%{llvm_snapshot_version_suffix}" \
|
||||
%endif
|
||||
%if 0%{?__isa_bits} == 64
|
||||
-DLLVM_LIBDIR_SUFFIX=64 \
|
||||
%else
|
||||
-DLLVM_LIBDIR_SUFFIX= \
|
||||
%endif
|
||||
%endif
|
||||
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src
|
||||
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
|
||||
# Install libraries and binaries
|
||||
%cmake_install
|
||||
|
||||
# This is generated by Patch1 during build and (probably) must be removed afterward
|
||||
rm %{buildroot}%{install_includedir}/mach-o/compact_unwind_encoding.h
|
||||
|
||||
install -D -m 644 -t %{buildroot}%{_mandir}/man1/ docs/ld.lld.1
|
||||
|
||||
%if %{with ld_alternative}
|
||||
# Required when using update-alternatives:
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Alternatives/
|
||||
touch %{buildroot}%{_bindir}/ld
|
||||
|
||||
%post
|
||||
%{_sbindir}/update-alternatives --install %{_bindir}/ld ld %{_bindir}/ld.lld 1
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
%{_sbindir}/update-alternatives --remove ld %{_bindir}/ld.lld
|
||||
fi
|
||||
%endif
|
||||
|
||||
%check
|
||||
|
||||
%if %{without compat_build}
|
||||
%if %{with check}
|
||||
%cmake_build --target check-lld
|
||||
%endif
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
%endif
|
||||
|
||||
%if %{without compat_build}
|
||||
%files
|
||||
%license LICENSE.TXT
|
||||
%if %{with ld_alternative}
|
||||
%ghost %{_bindir}/ld
|
||||
%endif
|
||||
%{_bindir}/lld*
|
||||
%{_bindir}/ld.lld
|
||||
%{_bindir}/ld64.lld
|
||||
%{_bindir}/wasm-ld
|
||||
%{_mandir}/man1/ld.lld.1*
|
||||
%endif
|
||||
|
||||
%files devel
|
||||
%{install_includedir}/lld
|
||||
%{install_libdir}/liblld*.so
|
||||
%{install_libdir}/cmake/lld/
|
||||
|
||||
%files libs
|
||||
%{install_libdir}/liblld*.so.*
|
||||
|
||||
%changelog
|
||||
* Wed Apr 03 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 17.0.6-1
|
||||
- Rebuilt for MSVSphere 8.10 beta
|
||||
|
||||
* Wed Nov 29 2023 Nikita Popov <npopov@redhat.com> - 17.0.6-1
|
||||
- Update to LLVM 17.0.6
|
||||
|
||||
* Wed Oct 04 2023 Nikita Popov <npopov@redhat.com> - 17.0.2-1
|
||||
- Update to LLVM 17.0.2
|
||||
|
||||
* Fri Jun 30 2023 Tom Stellard <tstellar@redhat.com> - 16.0.6-1
|
||||
- 16.0.6 Release
|
||||
|
||||
* Fri Apr 28 2023 Tom Stellard <tstellar@redhat.com> - 16.0.0-1
|
||||
- 16.0.0 Release
|
||||
|
||||
* Thu Jan 19 2023 Tom Stellard <tstellar@redhat.com> - 15.0.7-1
|
||||
- Update to LLVM 15.0.7
|
||||
|
||||
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
||||
- Update to LLVM 15.0.0
|
||||
|
||||
* Tue Jun 28 2022 Tom Stellard <tstellar@redhat.com> - 14.0.6-1
|
||||
- 14.0.6 Release
|
||||
|
||||
* Fri May 06 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2
|
||||
- Backport ignoring --no-add-needed
|
||||
|
||||
* Thu Apr 07 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
||||
- Update to 14.0.0
|
||||
|
||||
* Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
||||
- 13.0.1 Release
|
||||
|
||||
* Thu Dec 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-2
|
||||
- Drop lld-test package
|
||||
|
||||
* Fri Oct 15 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
||||
- 13.0.0 Release
|
||||
|
||||
* Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
|
||||
- 12.0.1 release
|
||||
|
||||
* Thu May 6 2021 sguelton@redhat.com - 12.0.0-1
|
||||
- 12.0.0 release
|
||||
|
||||
* Mon Nov 09 2020 sguelton@redhat.com - 11.0.0-3
|
||||
- Exclude s390x, see rhbz#1894927
|
||||
|
||||
* Thu Oct 29 2020 sguelton@redhat.com - 11.0.0-1
|
||||
- 11.0.0 final
|
||||
|
||||
* Fri Sep 18 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
|
||||
- 11.0.0-rc2 Release
|
||||
|
||||
* Fri Jul 24 2020 sguelton@redhat.com - 10.0.1-1
|
||||
- 10.0.1 release
|
||||
|
||||
* Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-2
|
||||
- Fix arch-dependent tarball
|
||||
|
||||
* Thu Apr 9 2020 sguelton@redhat.com - 10.0.0-1
|
||||
- 10.0.0 final
|
||||
|
||||
* Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.1-1
|
||||
- 9.0.1 Release
|
||||
|
||||
* Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-5
|
||||
- Fix some rpmdiff errors
|
||||
|
||||
* Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-4
|
||||
- Remove build artifacts installed with unittests
|
||||
|
||||
* Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-3
|
||||
- Add lld-test package
|
||||
|
||||
* Thu Nov 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
|
||||
- Add explicit lld-libs requires to fix rpmdiff errors
|
||||
|
||||
* Thu Sep 26 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
||||
- 9.0.0 Release
|
||||
|
||||
* Thu Aug 1 2019 sguelton@redhat.com - 8.0.1-1
|
||||
- 8.0.1 release
|
||||
|
||||
* Mon Jun 17 2019 sguelton@redhat.com - 8.0.1-0.2.rc2
|
||||
- Remove unnecessary threading patch
|
||||
|
||||
* Thu Jun 13 2019 sguelton@redhat.com - 8.0.1-0.1.rc2
|
||||
- 8.0.1rc2 Release
|
||||
|
||||
* Tue Apr 16 2019 sguelton@redhat.com - 8.0.0-1
|
||||
- 8.0.0 Release
|
||||
|
||||
* Mon Jan 14 2019 sguelton@redhat.com - 7.0.1-3
|
||||
- Fix lld + annobin integration & Setup basic CI tests
|
||||
|
||||
* Sat Dec 15 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-2
|
||||
- Bump required python3-lit version
|
||||
|
||||
* Fri Dec 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-1
|
||||
- 7.0.1-1 Release
|
||||
|
||||
* Mon Dec 10 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-0.2.rc3
|
||||
- 7.0.1-rc3 Release
|
||||
|
||||
* Tue Nov 27 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
||||
- 7.0.0 Release
|
||||
|
||||
* Mon Oct 01 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-2
|
||||
- Drop scl macros
|
||||
|
||||
* Wed Jun 27 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
||||
- 6.0.1 Release
|
||||
|
||||
* Fri May 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
|
||||
- 6.0.1-rc1 Release
|
||||
|
||||
* Thu Mar 08 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
||||
- 6.0.0 Release
|
||||
|
||||
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
|
||||
- 6.0.0-rc2 Release
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
||||
- 6.0.0-rc1 Release
|
||||
|
||||
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
||||
- 5.0.1 Release
|
||||
|
||||
* Mon Sep 11 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
||||
- 5.0.0 Release
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jul 06 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-2
|
||||
- Backport r307092
|
||||
|
||||
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
||||
- 4.0.1 Release
|
||||
|
||||
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-4
|
||||
- Fix build without llvm-static
|
||||
|
||||
* Wed May 31 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-3
|
||||
- Remove llvm-static dependency
|
||||
|
||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
||||
|
||||
* Tue Mar 14 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
||||
- lld 4.0.0 Final Release
|
Loading…
Reference in new issue