mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-22687 Fix genren.pl not to skip C++ functions on Mac
This commit is contained in:
parent
1cedbbd90d
commit
00072801a5
1 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue