blob: eafd497ae2bcc85996a8879187e18fb9dc82ab57 [file] [log] [blame]
Andrew Geissler5082cc72023-09-11 08:41:39 -04001From e09ba80e342b3b24bb2a46e11dae1c30cc61c75c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 3 Sep 2023 08:48:42 -0700
4Subject: [PATCH] linker-script: Do not export _IO_stdin_used
5
6This is glibc specific toolhain issue, it should have been handled in
7toolchain instead of exposing to applications. This was done to fix
8
9https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=835550
10
11Upstream-Status: Pending
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 linker-script-binary.ver | 1 -
15 1 file changed, 1 deletion(-)
16
17diff --git a/linker-script-binary.ver b/linker-script-binary.ver
18index a2780c0..f030d35 100644
19--- a/linker-script-binary.ver
20+++ b/linker-script-binary.ver
21@@ -1,6 +1,5 @@
22 {
23 global:
24- _IO_stdin_used;
25 local:
26 *;
27 };
28--
292.42.0
30