You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Pavel Pervov (JIRA)" <ji...@apache.org> on 2007/08/14 12:57:30 UTC

[jira] Updated: (HARMONY-4618) [drlvm][jedit] DRLVM doesn't support -ms and -mx options

     [ https://issues.apache.org/jira/browse/HARMONY-4618?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pavel Pervov updated HARMONY-4618:
----------------------------------

    Attachment: H4618.patch

Here is the simple patch to fix this.

> [drlvm][jedit] DRLVM doesn't support -ms and -mx options
> --------------------------------------------------------
>
>                 Key: HARMONY-4618
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4618
>             Project: Harmony
>          Issue Type: Bug
>          Components: App-Oriented Bug Reports, DRLVM
>            Reporter: Vasily Zakharov
>            Priority: Minor
>         Attachments: H4618.patch
>
>
> RI supports options -ms (equivalent to -Xms) and -mx (equivalent to -Xmx) though they're not documented or listed in help.
> However these options are used by some applications, for example by jEdit launcher script for Linux.
> DRLVM doesn't support these options, and because of this jEdit launcher doesn't work:
> $ jedit
> Unknown option -mx32m
> Use java -help to get help on command line options
> This problem is easily workarounded, as jEdit launcher is very simple and its jar can be easily launched manually, however this situation may confuse users.
> As a compact reproducer, the trivial test may be used:
> public class Test {
>     public static void main(String[] args) {
>         System.out.println("SUCCESS");
>     }
> }
> $ java -ms16M -mx32M Test
> Output on RI:
> SUCCESS
> Output on DRLVM:
> Unknown option -ms16M
> Use java -help to get help on command line options

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.