Norman,

Your script does not work on my non-intel Mac. There is no response,
just like the script with -d32 forced into the java line.

On Sun, Dec 5, 2010 at 12:39 PM, Norman Drinkwater
<[email protected]> wrote:
> On Intel OSX, the problem is that older versions are only 32-bit, while
> later ones have both 32- and 64-bit java.
>
> On an Intel Mac try this as the jwd script
>
> #!/bin/sh
> osver=`sw_vers -productVersion`
> jopt=-d32
> if [ "$osver" \< "10.5" ]
> then
>   jopt=''
> fi
> cd "`dirname "$0"`/.."
> java $jopt -Xss8000000 -Xdock:name=J -Xdock:icon=bin/icons/jred.icns
> -jar j.jar "$@"
>
> Note from the line starting with "java" down, all of the info should be
> on a single line.
>
> Norman
>
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to