有选择地抑制 glibc link 警告?
Selectively suppressing glibc link warnings?
glibc 使用以下 "technique" 生成 link 警告...
#define link_warning(symbol, msg) \
__make_section_unallocated (".gnu.warning." #symbol) \
static const char __evoke_link_warning_##symbol[] \
__attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
= msg;
对于由此产生的特定 link 警告,是否有任何命令行开关可以传递给 ld 或 gcc 以抑制它?
(对于编译时警告,您可以使用 `#pragma diagnostic foo ignore" 抑制)
is there any command-line switch that can be passed to ld or gcc in order to suppress it
没有
glibc 使用以下 "technique" 生成 link 警告...
#define link_warning(symbol, msg) \
__make_section_unallocated (".gnu.warning." #symbol) \
static const char __evoke_link_warning_##symbol[] \
__attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
= msg;
对于由此产生的特定 link 警告,是否有任何命令行开关可以传递给 ld 或 gcc 以抑制它?
(对于编译时警告,您可以使用 `#pragma diagnostic foo ignore" 抑制)
is there any command-line switch that can be passed to ld or gcc in order to suppress it
没有