Add support of passing jvm arguments to "ceylon" command
See original GitHub issueDesired syntax is something like ceylon run foo.bar.baz/3.2.2 --jvm-opts="-Xcomp XX:+PrintStubCode"
. At the moment this can be achieved by putting arguments to environment variable $JAVA_OPTS
Issue Analytics
- State:
- Created 7 years ago
- Comments:27 (27 by maintainers)
Top Results From Across the Web
A guide to JVM parameters for Java developers
This article introduces some basic JVM parameters to help in these scenarios… ... To switch between available JDKs, run the command again:
Read more >Is it possible to pass JVM arguments on the command line ...
I'm trying to find a way to pass command line arguments to the JVM when starting Liberty via "server start" or "server run"....
Read more >Command-line interface: attention to details - Eclipse Ceylon
The named tool is loaded and configured with the remaining command line arguments and control passes to that tool. * 'all' - Compiles...
Read more >How can I pass VM arguments to gradle from command line?
Using -P a property is passed as gradle project property. ... First make sure you have enabled add VM options at Modify Options...
Read more >Troubleshooting Guide for Java SE 6 with HotSpot VM - Oracle
This document is a guide to help troubleshoot problems that might arise with applications that are developed using the release of Java Platform, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you, you did the hard work – I had the fortune to work with a sensible language 😉
@lucaswerkmeister I think I finally got something that works. Turns out you can at least quote arguments with special characters by simply surrounding them with double quotes, you just have to be careful how you use the variables that handle them inside the scripts (with or without quotes, using things like
%~xx
etc).But that still leaves us with the fact that you might see an example written for Linux/Mac like in my previous message that won’t work without being quoted. So I decided to add an error message that, if you use the unquoted version, will give you:
I think this is the best we can do.