aboutsummaryrefslogtreecommitdiffstats
path: root/main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch')
-rw-r--r--main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch b/main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch
new file mode 100644
index 00000000000..08d9ca397ea
--- /dev/null
+++ b/main/gcc/0036-gcc-go-Prefer-_off_t-over-_off64_t.patch
@@ -0,0 +1,30 @@
+From e6d4cdd4d03cceb01e8ed03bbe7d35b5798abc88 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=B6ren=20Tempel?= <soeren+git@soeren-tempel.net>
+Date: Sun, 30 Aug 2020 19:26:53 +0200
+Subject: [PATCH 36/39] gcc-go: Prefer _off_t over _off64_t
+
+musl does not seem to have _off64_t.
+---
+ libgo/mksysinfo.sh | 6 +-----
+ 1 file changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh
+index 972e2c379bc..8d6da15f983 100755
+--- a/libgo/mksysinfo.sh
++++ b/libgo/mksysinfo.sh
+@@ -379,11 +379,7 @@ fi
+ # Some basic types.
+ echo 'type Size_t _size_t' >> ${OUT}
+ echo "type Ssize_t _ssize_t" >> ${OUT}
+-if grep '^const _HAVE_OFF64_T = ' gen-sysinfo.go > /dev/null 2>&1; then
+- echo "type Offset_t _off64_t" >> ${OUT}
+-else
+- echo "type Offset_t _off_t" >> ${OUT}
+-fi
++echo "type Offset_t _off_t" >> ${OUT}
+ echo "type Mode_t _mode_t" >> ${OUT}
+ echo "type Pid_t _pid_t" >> ${OUT}
+ echo "type Uid_t _uid_t" >> ${OUT}
+--
+2.28.0
+