aboutsummaryrefslogtreecommitdiff
path: root/packages/binutils/2.43.1/0008-gold-Deal-with-absence-of-uchar-on-macOS.patch
blob: 011c80c6ae1c3bc80508456b621c7efef84aa2a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From 5e16cd42ed6c0b626ee47601396517ddb8a6065f Mon Sep 17 00:00:00 2001
From: Bryan Hundven <bryanhundven@gmail.com>
Date: Tue, 6 Feb 2024 16:34:38 +1300
Subject: [PATCH 8/8] gold: Deal with absence of <uchar> on macOS

Add code to provide fallback definitions of char16_t/char32_t on macOS.
---
 gold/output.cc     |    2 ++
 gold/stringpool.cc |    2 ++
 2 files changed, 4 insertions(+)

--- a/gold/output.cc
+++ b/gold/output.cc
@@ -29,7 +29,9 @@
 #include <unistd.h>
 #include <sys/stat.h>
 #include <algorithm>
+#if !defined(__APPLE__)
 #include <uchar.h>
+#endif
 
 #ifdef HAVE_SYS_MMAN_H
 #include <sys/mman.h>
--- a/gold/stringpool.cc
+++ b/gold/stringpool.cc
@@ -25,7 +25,9 @@
 #include <cstring>
 #include <algorithm>
 #include <vector>
+#if !defined(__APPLE__)
 #include <uchar.h>
+#endif
 
 #include "output.h"
 #include "parameters.h"