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

Trying to rebuild with electron - V8 header errors #359

Open
TimMurnaghan opened this issue Oct 4, 2016 · 24 comments
Open

Trying to rebuild with electron - V8 header errors #359

TimMurnaghan opened this issue Oct 4, 2016 · 24 comments

Comments

@TimMurnaghan
Copy link

TimMurnaghan commented Oct 4, 2016

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:

  • node-java shouldn't be looking
  • electron's V8 should have it

but which is it?

@vrmerlin
Copy link

vrmerlin commented Oct 4, 2016

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?

@joeferner
Copy link
Owner

I'm hoping an upgrade to node-nan will fix the issue. I'm not sure when I'll get around to fixing though.

@vrmerlin
Copy link

vrmerlin commented Oct 4, 2016

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.

@joeferner
Copy link
Owner

joeferner commented Oct 5, 2016

I update nan (d071069) and added node 6 to travis build (c6daaa2). Can you test your electron build with master? If that works I'll push a new version to npm.

@vrmerlin
Copy link

vrmerlin commented Oct 5, 2016

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:

../src/javaObject.cpp:350:18: error: ‘class v8::Object’ has no member named ‘SetHiddenValue’
   javaObjectObj->SetHiddenValue(Nan::New<v8::String>(V8_HIDDEN_MARKER_JAVA_OBJECT).ToLocalChecked(), Nan::New<v8::Boolean>(true));
                  ^
make: *** [Release/obj.target/nodejavabridge_bindings/src/javaObject.o] Error 1

Some warnings coming up as well.

This happens when I use Node 6.2.0 or 6.7.0.

Here is my package.json:

{
  "name": "nava_node_test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "electron": "^1.4.2",
    "java": "git+https://github.com/joeferner/node-java.git"
  },
  "devDependencies": {
    "electron-rebuild": "^1.2.1"
  }
}

And here is my build script:

#!/bin/bash
npm install 
./node_modules/.bin/electron-rebuild

@enlight
Copy link

enlight commented Oct 6, 2016

@joeferner You can fix this similarly to how I've fixed it in node-inspector (see node-inspector/v8-profiler#96). NAN probably won't get updated until Node upgrades to V8 5.2 or later.

@vrmerlin
Copy link

vrmerlin commented Oct 6, 2016

@enlight Thanks, glad you've got a solution for this! @joeferner , can you put the fix in?

@vrmerlin
Copy link

@joeferner can you provide a timeframe on when you can make this fix?

@joeferner
Copy link
Owner

Give it another try. Thanks @enlight for the tip.

b6c0577

@vrmerlin
Copy link

Thanks for looking at it, @joeferner . I did the exact same steps as above, but now get this error from the electron-rebuild:

gyp ERR! clean error 
gyp ERR! stack Error: ENOTEMPTY: directory not empty, rmdir 'build/Release'
gyp ERR! stack     at Error (native)
gyp ERR! System Linux 3.10.0-327.36.1.el7.x86_64
gyp ERR! command "/opt/node-v6.7.0-linux-x64/bin/node" "/u/fisher23/javaNodeTest/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /u/fisher23/javaNodeTest/node_modules/nslog
gyp ERR! node -v v6.7.0
gyp ERR! node-gyp -v v3.4.0
gyp ERR! not ok 

Ideas? I tried removing my node_modules directory entirely and running again (twice), and it produces the same error.

John

@joeferner
Copy link
Owner

can you go into node_modules/java directory and manually remove the build directory and run install from there

@vrmerlin
Copy link

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?

@Cheonsoon
Copy link

@joeferner hi, issue were fixed by applying b6c0577 on electron 1.4.3, thanks~

@gcstang
Copy link

gcstang commented Oct 14, 2016

@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.

@vrmerlin
Copy link

@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

@vrmerlin
Copy link

@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?

@gcstang
Copy link

gcstang commented Oct 14, 2016

@vrmerlin thank you that was it, now to see how to get java output to show in the window.

@gcstang
Copy link

gcstang commented Oct 14, 2016

@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

@vrmerlin
Copy link

vrmerlin commented Oct 18, 2016

@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?

@vrmerlin
Copy link

@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?

@Cheonsoon
Copy link

@vrmerlin while, b6c0577 seems buggy at some point. While I intergate it with newest electron, and frequently comes out Memory Error..About 2-3times per day

@vrmerlin
Copy link

@joeferner Is there a path forward here? Are you maintaining node-java still?

@vrmerlin
Copy link

@joeferner Would you please help here? Can you at least cut the version that includes the fixes you made?

@joeferner
Copy link
Owner

published 0.8.0

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

6 participants