hotspot/make/bsd/makefiles/build_vm_def.sh
author weijun
Wed, 27 Aug 2014 11:33:45 +0800 (2014-08-27)
changeset 26218 98453f165e21
parent 18431 f801ce7e5c12
permissions -rw-r--r--
8048617: Tests for PKCS12 read operations Reviewed-by: weijun Contributed-by: Zaiyao Liu <zaiyao.liu@oracle.com>
#!/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 -Uj $* | awk '
   { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
   '