diff 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
line wrap: on
line diff
--- a/make/bsd/makefiles/build_vm_def.sh	Tue Jun 18 09:08:35 2013 -0700
+++ b/make/bsd/makefiles/build_vm_def.sh	Wed Jun 19 13:14:03 2013 -0700
@@ -7,6 +7,6 @@
 NM=nm
 fi
 
-$NM --defined-only $* | awk '
-   { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
+$NM -Uj $* | awk '
+   { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
    '