make/linux/makefiles/build_vm_def.sh

Tue, 30 Aug 2011 00:54:09 -0700

author
never
date
Tue, 30 Aug 2011 00:54:09 -0700
changeset 3095
19241ae0d839
parent 2362
a5610f0862fe
child 3150
da0999c4b733
permissions
-rw-r--r--

7082263: Reflection::resolve_field/field_get/field_set are broken
Reviewed-by: kvn, dholmes, stefank, coleenp

     1 #!/bin/sh
     3 # If we're cross compiling use that path for nm
     4 if [ "$CROSS_COMPILE_ARCH" != "" ]; then 
     5 NM=$ALT_COMPILER_PATH/nm
     6 else
     7 NM=nm
     8 fi
    10 $NM --defined-only $* | awk '
    11    { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
    12    '

mercurial