From 00072801a51fce1014f86d47eeebdf80ada14ff3 Mon Sep 17 00:00:00 2001 From: Rich Gillam Date: Tue, 12 Mar 2024 15:11:04 -0700 Subject: [PATCH] ICU-22687 Fix genren.pl not to skip C++ functions on Mac --- icu4c/source/tools/genren/genren.pl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/icu4c/source/tools/genren/genren.pl b/icu4c/source/tools/genren/genren.pl index f85b96ac607..cf856724842 100755 --- a/icu4c/source/tools/genren/genren.pl +++ b/icu4c/source/tools/genren/genren.pl @@ -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 {