glibc/0023-Sw64-add-getopt-weak-alias.patch
swcompiler 55189b18b5 Sw64: Add Sw64 ISA support
(cherry picked from commit 7c7ae25b26c3c937686ae3f686a768532b14ec36)
2025-01-04 15:06:39 +08:00

33 lines
918 B
Diff
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

From 25fb8c292c498ad0eaeb62ccb443f0e034da7c10 Mon Sep 17 00:00:00 2001
From: swcompiler <lc@wxiat.com>
Date: Fri, 29 Nov 2024 17:27:15 +0800
Subject: [PATCH 23/23] Sw64: add getopt weak alias
---
posix/getopt1.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/posix/getopt1.c b/posix/getopt1.c
index 49323aa8..ee2e7510 100644
--- a/posix/getopt1.c
+++ b/posix/getopt1.c
@@ -64,6 +64,15 @@ _getopt_long_only_r (int argc, char **argv, const char *options,
1, d, 0);
}
+#ifndef SW_64
+int getopt_long_only (int argc, char *__getopt_argv_const *argv,
+ const char *options,
+ const struct option *long_options,
+ int *opt_index) __attribute__ ((weak));
+int _getopt_long_only_r (int argc, char **argv, const char *options,
+ const struct option *long_options, int *opt_index,
+ struct _getopt_data *d) __attribute__ ((weak));
+#endif
#ifdef TEST
--
2.25.1