-
Notifications
You must be signed in to change notification settings - Fork 287
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
Trying to rebuild with electron - V8 header errors #359
Comments
I too am having problems with electron and node-java. See #344 . It feels like the node-java package needs an upgrade to a new version of V8. I tried Node 4.5.0, 6.2.0, and 6.7.0, and all have show-stopping problems. Is a fix to this problem under development? |
I'm hoping an upgrade to node-nan will fix the issue. I'm not sure when I'll get around to fixing though. |
Do you anticipated days, or many months...? We were hoping to base a very large project on Electron and Java (to legacy jar files), and at the moment, we are completely blocked from moving forward. |
Thanks for taking a look! Unfortunately, it's still not working. I'm getting the same compiler error in the Java bridge code during the electron-rebuild:
Some warnings coming up as well. This happens when I use Node 6.2.0 or 6.7.0. Here is my package.json:
And here is my build script:
|
@joeferner You can fix this similarly to how I've fixed it in |
@enlight Thanks, glad you've got a solution for this! @joeferner , can you put the fix in? |
@joeferner can you provide a timeframe on when you can make this fix? |
Thanks for looking at it, @joeferner . I did the exact same steps as above, but now get this error from the electron-rebuild:
Ideas? I tried removing my node_modules directory entirely and running again (twice), and it produces the same error. John |
can you go into |
It's interesting -- it looks like the "electron-rebuild" is giving the error I said above, but it appears that the "fix" is actually still taking place. That is, after the error, I can then run "node_modules/electron/dist/electron index.js", and it runs as expected. That's great, but is there a way to make my build.sh script work, without getting an error message? |
@joeferner hi, issue were fixed by applying b6c0577 on electron 1.4.3, thanks~ |
@vrmerlin when I try this line(node_modules/electron/dist/electron index.js) I'm getting Uncaught Exception: Error: Module version mismatch. Expected 50, got 48. Maybe this is unrelated but trying to use your instructions so far to get setup. |
@gcstang did you run the electron-rebuild command? you need to do that after npm install, but before you run the code. More details are here: https://github.com/electron/electron-rebuild |
@joeferner do you know how i can avoid the "directory not empty, rmdir 'build/Release'" error during the electron-rebuild step, without a bunch of manual steps? |
@vrmerlin thank you that was it, now to see how to get java output to show in the window. |
@vrmerlin thank you very much for your help, I used this to get some output to a index.html file for now and it worked. https://github.com/joeferner/node-java/blob/master/testIntegration/webkit/index.html |
@joeferner -- can you help with the problem I described above (avoiding the "directory not empty" error), that's breaking the electron-rebuild step when recompiling the node-java bridge? And, will you be putting in a new version that includes the changes you recently made to fix the compile errors? |
@joeferner The code fix you created in the master branch, b6c0577, worked -- will you be cutting a new software version that I can point to? Any thoughts on the "directory not empty" issue? |
@joeferner Is there a path forward here? Are you maintaining node-java still? |
@joeferner Would you please help here? Can you at least cut the version that includes the fixes you made? |
published 0.8.0 |
Platform Windows 7
node-java 0.7.2
electron 1.4.2
using --dist-url to get electron versions of headers
node-gyp rebuild --target=1.4.2 --arch=x64 --dist-url=https://atom.io/download/atom-shell
..\src\utils.cpp(647): error C2039: 'SetHiddenValue': is not a member of 'v8::N
umberObject' [C:\excel-converter\node_modules\java\build\nodejavabridge_binding
s.vcxproj]
Clearly incompatible - the code's looking for something that's not there.
Two choices:
but which is it?
The text was updated successfully, but these errors were encountered: