-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
94 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# SPDX-FileCopyrightText: 2023 Richard Masters <[email protected]> | ||
# SPDX-License-Identifier: MIT | ||
diff -r -u musl-1.2.3.orig/arch/i386/pthread_arch.h musl-1.2.3/arch/i386/pthread_arch.h | ||
--- musl-1.2.4/arch/i386/pthread_arch.h 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.4/arch/i386/pthread_arch.h 2023-04-07 12:07:07.929132587 +0000 | ||
--- musl-1.2.5/arch/i386/pthread_arch.h 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.5/arch/i386/pthread_arch.h 2023-04-07 12:07:07.929132587 +0000 | ||
@@ -1,8 +1,7 @@ | ||
+extern uintptr_t g_pthread; | ||
static inline uintptr_t __get_tp() | ||
|
@@ -15,16 +15,16 @@ diff -r -u musl-1.2.3.orig/arch/i386/pthread_arch.h musl-1.2.3/arch/i386/pthread | |
|
||
#define MC_PC gregs[REG_EIP] | ||
diff -r -u musl-1.2.3.orig/arch/i386/syscall_arch.h musl-1.2.3/arch/i386/syscall_arch.h | ||
--- musl-1.2.4/arch/i386/syscall_arch.h 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.4/arch/i386/syscall_arch.h 2022-12-20 17:28:21.734839560 +0000 | ||
--- musl-1.2.5/arch/i386/syscall_arch.h 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.5/arch/i386/syscall_arch.h 2022-12-20 17:28:21.734839560 +0000 | ||
@@ -1,3 +1,4 @@ | ||
+#define SYSCALL_NO_TLS 1 | ||
#define __SYSCALL_LL_E(x) \ | ||
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \ | ||
((union { long long ll; long l[2]; }){ .ll = x }).l[1] | ||
diff -r -u musl-1.2.3.orig/src/env/__init_tls.c musl-1.2.3/src/env/__init_tls.c | ||
--- musl-1.2.4/src/env/__init_tls.c 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.4/src/env/__init_tls.c 2023-04-07 12:07:38.677133193 +0000 | ||
--- musl-1.2.5/src/env/__init_tls.c 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.5/src/env/__init_tls.c 2023-04-07 12:07:38.677133193 +0000 | ||
@@ -10,20 +10,19 @@ | ||
#include "syscall.h" | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
.../musl-1.2.4/patches/avoid_sys_clone.patch → .../musl-1.2.5/patches/avoid_sys_clone.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# SPDX-FileCopyrightText: 2023 Richard Masters <[email protected]> | ||
# SPDX-License-Identifier: MIT | ||
--- musl-1.2.4/src/process/posix_spawn.c 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.4/src/process/posix_spawn.c 2023-04-07 12:01:57.217126467 +0000 | ||
--- musl-1.2.5/src/process/posix_spawn.c 2022-04-07 17:12:40.000000000 +0000 | ||
+++ musl-1.2.5/src/process/posix_spawn.c 2023-04-07 12:01:57.217126467 +0000 | ||
@@ -190,8 +190,11 @@ | ||
goto fail; | ||
} | ||
|
5 changes: 5 additions & 0 deletions
5
...usl-1.2.4/patches/mkcodepage_return.patch → ...usl-1.2.5/patches/mkcodepage_return.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
SPDX-FileCopyrightText: 2024 fosslinux <[email protected]> | ||
|
||
SPDX-License-Identifier: MIT | ||
(as per https://github.com/richfelker/musl-chartable-tools/issues/3) | ||
|
||
Inexplicable problem, where mkcodepage returns 3 instead of 0 on some inputs. | ||
Compilation error? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
https://musl.libc.org/releases/musl-1.2.4.tar.gz 7a35eae33d5372a7c0da1188de798726f68825513b7ae3ebe97aaaa52114f039 | ||
https://musl.libc.org/releases/musl-1.2.5.tar.gz a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4 | ||
https://github.com/richfelker/musl-chartable-tools/archive/78b213a868553b1154ee9627c96ff1f14a9a3b1b.tar.gz bb52d7c11b663c2d1c5957fd862758d1da7e65b53c0a8ecfb9110d02c04badb6 |