make/linux/makefiles/build_vm_def.sh

Tue, 03 Aug 2010 08:13:38 -0400

author
bobv
date
Tue, 03 Aug 2010 08:13:38 -0400
changeset 2036
126ea7725993
parent 1729
7de45b5044c3
child 2362
a5610f0862fe
permissions
-rw-r--r--

6953477: Increase portability and flexibility of building Hotspot
Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail.
Reviewed-by: phh, never, coleenp, dholmes

never@1729 1 #!/bin/sh
never@1729 2
bobv@2036 3 # If we're cross compiling use that path for nm
bobv@2036 4 if [ "$ALT_COMPILER_PATH" != "" ]; then
bobv@2036 5 NM=$ALT_COMPILER_PATH/nm
bobv@2036 6 else
bobv@2036 7 NM=nm
bobv@2036 8 fi
bobv@2036 9
bobv@2036 10 $NM --defined-only $* | awk '
never@1729 11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
never@1729 12 '

mercurial