make/bsd/makefiles/build_vm_def.sh

Thu, 25 Jul 2013 21:05:29 -0400

author
dholmes
date
Thu, 25 Jul 2013 21:05:29 -0400
changeset 5455
c65045599519
parent 5299
91acb82a8b7a
child 6876
710a3c8b516e
permissions
-rw-r--r--

8021314: minimal1.make needs to force off components not supported by the minimal VM
Reviewed-by: coleenp, bpittore

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

mercurial