1 Star 0 Fork 161

junhe_arm/glibc

forked from src-openEuler/glibc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0023-Sw64-add-getopt-weak-alias.patch 918 Bytes
一键复制 编辑 原始数据 按行查看 历史
swcompiler 提交于 2024-12-17 04:02 +08:00 . Sw64: Add Sw64 ISA support
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/junhe_arm/glibc.git
git@gitee.com:junhe_arm/glibc.git
junhe_arm
glibc
glibc
master

搜索帮助