hotspot/make/bsd/makefiles/build_vm_def.sh
author erikj
Tue, 24 Nov 2015 12:18:25 +0100
changeset 34289 2d1821a50263
parent 18431 f801ce7e5c12
permissions -rw-r--r--
8142336: Convert the SA agent build to modular build-infra makefiles Reviewed-by: ihse, sla, dsamersoff, twisti

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