Skip to content
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

Fix broken jar path #14

Open
moxaj opened this issue Mar 20, 2016 · 3 comments
Open

Fix broken jar path #14

moxaj opened this issue Mar 20, 2016 · 3 comments

Comments

@moxaj
Copy link

moxaj commented Mar 20, 2016

The leiningen plugin writes /C:/Users/<...>/nodisassemble-0.1.3.jar into the :jvm-opts as the path to the jar. This has a leading slash, which triggers the following error:

Error occurred during initialization of VM
agent library failed to init: instrument
Error opening zip file or JAR manifest missing <...>

If I setup the jvm-opts manually, without the leading slash, it seems to work.

@gtrak
Copy link
Owner

gtrak commented Mar 20, 2016

It sounds like a Windows-specific problem in the plugin. I'll take a look.
On Mar 20, 2016 2:41 PM, "Viktor Magyari" notifications@github.com wrote:

The leiningen plugin writes /C:/Users/<...>/nodisassemble-0.1.3.jar into
the :jvm-opts as the path to the jar. This has a leading slash, which
triggers the following error:

Error occurred during initialization of VM
agent library failed to init: instrument
Error opening zip file or JAR manifest missing <...>

If I setup the jvm-opts manually, without the leading slash, it seems to
work.


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#14

@kunstmusik
Copy link

I've just run this on Windows (Win 10, Java 1.8.0_72, Clojure 1.8) and am getting the same behavior and result that nodisassemble is not usable on this platform for me.

@kunstmusik
Copy link

I just experimented with this change to lein-nodisassemble.plugin and it worked to get the plugin working on Windows.

(defn middleware [project]
  (let [version (get-version project)
        project (update-in project [:dependencies] conj ['nodisassemble version])
        path (-> (find-dep project) .getAbsolutePath)]
    (update-in project [:jvm-opts] conj (str "-javaagent:\"" path "\""))))

The changes are in using .getAbsolutePath and also quoting the path when assembling the javaagent string. I have not tested on other platforms, however.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants