Changeset 278 for trunk/openjdk/hotspot/agent/make/saenv.sh
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/hotspot/agent/make/saenv.sh
r2 r278 1 1 #!/bin/sh 2 2 # 3 # Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.3 # Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved. 4 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 # … … 18 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 # 20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 # CA 95054 USA or visit www.sun.com if you need additional information or22 # have anyquestions.20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 # or visit www.oracle.com if you need additional information or have any 22 # questions. 23 23 # 24 24 # … … 49 49 fi 50 50 else 51 LD_AUDIT_32=$STARTDIR/../src/os/solaris/proc/`uname -p`/libsaproc_audit.so 52 export LD_AUDIT_32 51 # configure audit helper library if SA_ALTROOT is set 52 if [ -n "$SA_ALTROOT" ]; then 53 LD_AUDIT_32=$STARTDIR/../src/os/solaris/proc/`uname -p`/libsaproc_audit.so 54 export LD_AUDIT_32 55 if [ ! -f $LD_AUDIT_32 ]; then 56 echo "SA_ALTROOT is set and can't find libsaproc_audit.so." 57 echo "Make sure to build it with 'make natives'." 58 exit 1 59 fi 60 fi 53 61 SA_LIBPATH=$STARTDIR/../src/os/solaris/proc/`uname -p`:$STARTDIR/solaris/`uname -p` 54 62 OPTIONS="-Dsa.library.path=$SA_LIBPATH -Dsun.jvm.hotspot.debugger.useProcDebugger"
Note:
See TracChangeset
for help on using the changeset viewer.