ICU-22687 Fix genren.pl not to skip C++ functions on Mac

This commit is contained in:
Rich Gillam 2024-03-12 15:11:04 -07:00 committed by Rich Gillam
parent 1cedbbd90d
commit 00072801a5

View file

@ -154,9 +154,17 @@ for(;@ARGV; shift(@ARGV)) {
chop $qtype;
} elsif ($mode =~ /Mach-O/) {
($address, $type, $_) = split(/ /);
if(/^_(.*)$/) {
if (/^(.*)\(/) {
# on Mac, C++ functions and methods are NOT prefixed with an underscore,
# but do contain their parameter lists (in patentheses)-- remove
# the parameter list
$_ = $1;
} elsif(/^_(.*)$/) {
# C function names (and maybe also C++ functions on Linux?) are all
# prefixed with an underscore-- remove it
$_ = $1;
} else {
# skip symbols in any other format
next;
}
} else {