-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java options? #24
Comments
installApp puts a runnable configuration in the build/dist dir. This is what I for example zip and provide as self-contained download of the FregeFX repl. For -Xss you may want to use the applicationDefaultJvmArgs property. I will follow up with an example on how to set it after I tried it myself. Dierk sent from:mobile
|
What about copy+paste? Is there another way to get the command I need to run what I've build? If not, why? Since gradle seems to know this command. |
The command is in the build/dist/bin/ Dierk sent from:mobile
|
This is how I run REPL via Gradle from frege-repl project: We can get the command that gradle invokes by adding It displays the command just before launching the REPL along with other
|
I use the frege-repl project and was able to build it and I can run it with
This is fine so far. But now I want, for example, more stackspace for running repl. I can see with --info that java is just started with no -Xss option.
By the way, is there a way to save the command that "run" executes to some file, so that I can run it without the gradle-overhead? I could then also include my preferred options, like more stack size.
I tried
installApp
but it doesn't seem to do anything useful. Do I have to resort to copy+paste?The text was updated successfully, but these errors were encountered: