comparison make/bsd/makefiles/build_vm_def.sh @ 11026:91acb82a8b7a

8014326: [OSX] All libjvm symbols are exported Summary: Add support for a MacOS X compatible form of the libjvm mapfile. Reviewed-by: dcubed, rdurbin, coleenp
author dholmes
date Wed, 19 Jun 2013 13:14:03 -0700
parents f08d439fab8c
children
comparison
equal deleted inserted replaced
10988:cd54c7e92908 11026:91acb82a8b7a
5 NM=$ALT_COMPILER_PATH/nm 5 NM=$ALT_COMPILER_PATH/nm
6 else 6 else
7 NM=nm 7 NM=nm
8 fi 8 fi
9 9
10 $NM --defined-only $* | awk ' 10 $NM -Uj $* | awk '
11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" } 11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
12 ' 12 '