We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a7c206 + 3b6796b commit b245ce4Copy full SHA for b245ce4
config/find_common_syms
@@ -109,7 +109,7 @@ sub object_find {
109
# that turns out to be the case, we can try switching to "nm -P", which is
110
# supposed to activate the "portable" (yet ugly) format. It's also unclear
111
# at this point how common support for "nm -P" is.
112
- open(NM, '-|', "nm '${obj}' 2>/dev/null | egrep '\\s[cC]\\s'");
+ open(NM, '-|', "nm '${obj}' 2>/dev/null | grep -E '\\s[cC]\\s'");
113
SYMBOL: while (my $sym_line = <NM>) {
114
if (!$all and is_allowlisted($sym_line)) {
115
next SYMBOL;
0 commit comments