make/aix/makefiles/build_vm_def.sh

Fri, 06 Sep 2013 20:08:29 +0200

author
simonis
date
Fri, 06 Sep 2013 20:08:29 +0200
changeset 6464
b83f7d608548
parent 0
f90c822e73f8
permissions
-rw-r--r--

8023034: PPC64 (part 14): Implement AIX/PPC64 support in HotSpot makefiles
Reviewed-by: kvn

     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 # On AIX we have to prevent that we pick up the 'nm' version from the GNU binutils
     8 # which may be installed under /opt/freeware/bin. So better use an absolute path here! 
     9 NM=/usr/bin/nm
    10 fi
    12 $NM -X64 -B -C $* \
    13     | awk '{
    14               if (($2="d" || $2="D") && ($3 ~ /^__vft/ || $3 ~ /^gHotSpotVM/)) print "\t" $3 ";"
    15               if ($3 ~ /^UseSharedSpaces$/) print "\t" $3 ";"
    16               if ($3 ~ /^SharedArchivePath__9Arguments$/) print "\t" $3 ";"
    17           }' \
    18     | sort -u

mercurial