hotspot/make/bsd/makefiles/build_vm_def.sh
author twisti
Tue, 20 Aug 2013 10:57:50 -0700
changeset 19336 ddceb0657500
parent 18431 f801ce7e5c12
permissions -rw-r--r--
8022956: Clang: enable return type warnings on BSD Reviewed-by: coleenp, sla

#!/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 }
   '