tst-sprintf-chk-ub \
tst-sprintf-ub \
tst-sscanf \
+ tst-stdio-static \
tst-swscanf \
tst-ungetwc1 \
tst-ungetwc2 \
tst_wscanf \
# tests
+tests-static += tst-stdio-static
+
$(objpfx)tst-popen-fork: $(shared-thread-library)
tests-internal = tst-vtables tst-vtables-interposed
$(objpfx)tst-bz24228-mem.out: $(objpfx)tst-bz24228.out
$(common-objpfx)malloc/mtrace $(objpfx)tst-bz24228.mtrace > $@; \
$(evaluate-test)
+
+# Test stdio.o with "strip --strip-unneeded".
+$(objpfx)tst-stdio-static: $(objpfx)stdio-stripped.o
+
+$(objpfx)stdio-stripped.o: $(objpfx)stdio.o
+ $(STRIP) --strip-unneeded -o $@ $<
#ifdef SHARED
# define libio_static_fn_required(name)
#else
-# define libio_static_fn_required(name) __asm (".globl " #name);
+# define libio_static_fn_required(name) \
+ static __typeof (name) *const name##_p __attribute__((used)) = name;
#endif
extern int _IO_do_write (FILE *, const char *, size_t);
--- /dev/null
+/* Test static stdio.o with "strip --strip-unneeded".
+ Copyright (C) 2025 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, see
+ <https://www.gnu.org/licenses/>. */
+
+#include <stdio.h>
+
+/* NB: Call main directly to trigger BZ #33300. */
+
+int
+main (void)
+{
+ printf ("OK\n");
+ return 0;
+}