hotspot/make/linux/makefiles/build_vm_def.sh
author dholmes
Thu, 09 Dec 2010 20:12:06 -0500
changeset 7445 57d387675180
parent 6176 4d9030fe341f
child 10559 a94d067da388
permissions -rw-r--r--
7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage Summary: Check for CROSS_COMPILE_ARCH being set as an indicator to use ALT_COMPILER_PATH Reviewed-by: acorn, ohair

#!/bin/sh

# If we're cross compiling use that path for nm
if [ "$CROSS_COMPILE_ARCH" != "" ]; then 
NM=$ALT_COMPILER_PATH/nm
else
NM=nm
fi

$NM --defined-only $* | awk '
   { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
   '