- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
ensime+debugger: how to launch the debuggee with my "-D" properties?
Fri, 2011-04-08, 14:43
Hi again, ensime users.. would you please suggest a way to get this to work?
I would like to pass the app I am debugging some custom-properties on the command-line using the "-D" jvm-arg format
Ensime's debugger is already great at prompting for *application* args; is there a way to
a. get it to prompt for jvm-args? Or
b. set some appropriate key(s) in the ".ensime" file?
the ensime manual refers to ENSIME_JVM_ARGS in the server start-script; is that a viable option?
-- OP
I would like to pass the app I am debugging some custom-properties on the command-line using the "-D" jvm-arg format
Ensime's debugger is already great at prompting for *application* args; is there a way to
a. get it to prompt for jvm-args? Or
b. set some appropriate key(s) in the ".ensime" file?
the ensime manual refers to ENSIME_JVM_ARGS in the server start-script; is that a viable option?
-- OP
ENSIME_JVM_ARGS are the args ENSIME's jvm -- you don't need to change those.
There's not really a great way to pass jvm args right now.. but here's a workaround:
ENSIME uses jdb. From the jdb manual:
So all you need to do is modify the command that ENSIME uses to start jdb. This command is stored as a list of strings and keywords in ensime-db-cmd-template defined in ensime-debug.el. You could change as follows:
(setq ensime-db-cmd-template '("jdb" "-JYOUR_OPTION" "YOUR_VALUE" "-classpath" :classpath "-sourcepath" :sourcepath :debug-class :debug-args))
Hope that helps.
On Fri, Apr 8, 2011 at 6:43 AM, OP <ovr.pron8r@gmail.com> wrote: