make/bsd/makefiles/build_vm_def.sh

changeset 0
f90c822e73f8
child 6876
710a3c8b516e
equal deleted inserted replaced
-1:000000000000 0:f90c822e73f8
1 #!/bin/sh
2
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
9
10 $NM -Uj $* | awk '
11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
12 '

mercurial