aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-05-04 16:36:57 -0400
committerGitHub <noreply@github.com>2022-05-04 16:36:57 -0400
commita839ccc15322e63b13083da8f44959113a5e3313 (patch)
tree76ec52086b5346c1f4157db53c66bbae2ef21e96 /src
parent28ef79ea808fdb8e00b6d88d1565314a9e412768 (diff)
parent2477a95d29caa3d24177094a991f1b1162915348 (diff)
downloadzig-a839ccc15322e63b13083da8f44959113a5e3313.tar.gz
zig-a839ccc15322e63b13083da8f44959113a5e3313.zip
Merge pull request #11575 from ifreund/musl123
musl: update to 1.2.3
Diffstat (limited to 'src')
-rw-r--r--src/musl.zig6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/musl.zig b/src/musl.zig
index c576dbec84..d061addc9a 100644
--- a/src/musl.zig
+++ b/src/musl.zig
@@ -118,7 +118,7 @@ pub fn buildCRTFile(comp: *Compilation, crt_file: CRTFile) !void {
try addSrcFile(arena, &source_table, src_file);
}
- const time32_compat_arch_list = [_][]const u8{ "arm", "i386", "mips", "powerpc" };
+ const time32_compat_arch_list = [_][]const u8{ "arm", "i386", "mips", "powerpc", "m68k" };
for (time32_compat_arch_list) |time32_compat_arch| {
if (mem.eql(u8, arch_name, time32_compat_arch)) {
for (compat_time32_files) |compat_time32_file| {
@@ -766,6 +766,7 @@ const src_files = [_][]const u8{
"musl/src/locale/setlocale.c",
"musl/src/locale/strcoll.c",
"musl/src/locale/strfmon.c",
+ "musl/src/locale/strtod_l.c",
"musl/src/locale/strxfrm.c",
"musl/src/locale/textdomain.c",
"musl/src/locale/uselocale.c",
@@ -1780,6 +1781,7 @@ const src_files = [_][]const u8{
"musl/src/stdlib/llabs.c",
"musl/src/stdlib/lldiv.c",
"musl/src/stdlib/qsort.c",
+ "musl/src/stdlib/qsort_nr.c",
"musl/src/stdlib/strtod.c",
"musl/src/stdlib/strtol.c",
"musl/src/stdlib/wcstod.c",
@@ -1990,6 +1992,7 @@ const src_files = [_][]const u8{
"musl/src/thread/pthread_getattr_np.c",
"musl/src/thread/pthread_getconcurrency.c",
"musl/src/thread/pthread_getcpuclockid.c",
+ "musl/src/thread/pthread_getname_np.c",
"musl/src/thread/pthread_getschedparam.c",
"musl/src/thread/pthread_getspecific.c",
"musl/src/thread/pthread_join.c",
@@ -2208,6 +2211,7 @@ const src_files = [_][]const u8{
"musl/src/unistd/writev.c",
"musl/src/unistd/x32/lseek.c",
};
+
const compat_time32_files = [_][]const u8{
"musl/compat/time32/__xstat.c",
"musl/compat/time32/adjtime32.c",