mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-02 18:02:19 +00:00
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From a865b3569ace118cc1c1cd8d5d130ec316b0307d Mon Sep 17 00:00:00 2001
|
|
From: Jan200101 <sentrycraft123@gmail.com>
|
|
Date: Tue, 14 Apr 2026 19:04:40 +0200
|
|
Subject: [PATCH 1/2] remove native lib directories from rpath
|
|
|
|
Signed-off-by: Jan200101 <sentrycraft123@gmail.com>
|
|
---
|
|
src/main.zig | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
diff --git a/src/main.zig b/src/main.zig
|
|
index 0395a21a5f..86b6d9f86b 100644
|
|
--- a/src/main.zig
|
|
+++ b/src/main.zig
|
|
@@ -4102,6 +4102,15 @@ fn createModule(
|
|
|
|
try create_module.lib_directories.ensureUnusedCapacity(arena, paths.lib_dirs.items.len);
|
|
for (paths.lib_dirs.items) |path| addLibDirectoryWarn2(io, &create_module.lib_directories, path, true);
|
|
+
|
|
+ for (paths.lib_dirs.items) |native_lib_dir| {
|
|
+ for (0.., create_module.rpath_list.items) |i, rpath_dir| {
|
|
+ if (std.mem.eql(u8, native_lib_dir, rpath_dir)) {
|
|
+ _ = create_module.rpath_list.orderedRemove(i);
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
}
|
|
|
|
if (create_module.libc_paths_file) |paths_file| {
|
|
--
|
|
2.53.0
|
|
|