dev-debug/bpftrace: remove unused patches

Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
Part-of: https://github.com/gentoo/gentoo/pull/42602
Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2025-06-15 10:48:37 +02:00
parent dd313b8e1c
commit 7979b97edf
2 changed files with 0 additions and 46 deletions

View File

@@ -1,18 +0,0 @@
Patch adapted from from https://github.com/bpftrace/bpftrace/pull/3433
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2b60fa26d990..11927a434731 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -156,8 +156,8 @@ else()
find_package(LLVM REQUIRED)
endif()
-set(MIN_LLVM_MAJOR 6)
+set(MIN_LLVM_MAJOR 13)
-set(MAX_LLVM_MAJOR 18)
+set(MAX_LLVM_MAJOR 19)
if((${LLVM_VERSION_MAJOR} VERSION_LESS ${MIN_LLVM_MAJOR}) OR (${LLVM_VERSION_MAJOR} VERSION_GREATER ${MAX_LLVM_MAJOR}))
message(SEND_ERROR "Unsupported LLVM version found via ${LLVM_INCLUDE_DIRS}: ${LLVM_VERSION_MAJOR}")

View File

@@ -1,28 +0,0 @@
Patch from: https://github.com/bpftrace/bpftrace/commit/9996177e80f66e1d991f960fa9eb39c221ed7f45
From 9996177e80f66e1d991f960fa9eb39c221ed7f45 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Holger=20Hoffst=C3=A4tte?= <holger@applied-asynchrony.com>
Date: Tue, 20 Aug 2024 12:12:45 +0200
Subject: [PATCH] Explicitly include <cstdint> for gcc-15
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixes: https://github.com/bpftrace/bpftrace/issues/3406
Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
---
src/disasm.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/disasm.h b/src/disasm.h
index b5411f2e416c..d8d7fde8aa46 100644
--- a/src/disasm.h
+++ b/src/disasm.h
@@ -1,5 +1,6 @@
#pragma once
+#include <cstdint>
#include <memory>
#include <string>