make/bsd/makefiles/build_vm_def.sh

Thu, 29 Aug 2013 13:44:07 -0400

author
hseigel
date
Thu, 29 Aug 2013 13:44:07 -0400
changeset 5611
dfc126b2f659
parent 5299
91acb82a8b7a
child 6876
710a3c8b516e
permissions
-rw-r--r--

8022407: sun/misc/CopyMemory.java fails with SIGSEGV in Unsafe_SetByte+0x35
Summary: lower optimization level for unsafe.cpp due to MacOS Xcode 4.6.2 compiler optimization issue.
Reviewed-by: coleenp, twisti, dholmes
Contributed-by: lois.foltan@oracle.com

     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 -Uj $* | awk '
    11    { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
    12    '

mercurial