hotspot/make/linux/makefiles/build_vm_def.sh
changeset 28743 a9eac944c97d
parent 28710 5b8db585a33c
parent 28742 e6ec6ed5be00
child 28744 4283637ac96e
child 28829 a8c81ce8d333
child 28834 4925a7f447b0
child 28921 c14a350e277a
--- a/hotspot/make/linux/makefiles/build_vm_def.sh	Wed Jul 05 20:17:33 2017 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-#!/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 --defined-only $* \
-    | awk '{
-              if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";"
-              if ($3 ~ /^UseSharedSpaces$/) print "\t" $3 ";"
-              if ($3 ~ /^_ZN9Arguments17SharedArchivePathE$/) print "\t" $3 ";"
-          }' \
-    | sort -u