view make/bsd/makefiles/build_vm_def.sh @ 15312:7f5c9079e24a

Truffle: fixes to the inlining heuristic.
author Christian Humer <christian.humer@gmail.com>
date Tue, 15 Apr 2014 18:31:23 +0200
parents 91acb82a8b7a
children
line wrap: on
line source

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