You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 9, 2018. It is now read-only.
Hi all, I'm working on combining atom-shell, Julia, and d3 to be used as a data visualizer. D3 needs contextify, but the problem is that the released versions of node use a earlier version of v8.
In v8 3.29, the function ContextDisposedNotification is no longer a static member function of the class V8, but rather a member function of v8::Isolate, and so contextify.cc will not compile
CXX(target) Release/obj.target/contextify/src/contextify.o
../src/contextify.cc:31:13: error: no member named 'ContextDisposedNotification' in namespace 'v8'
Luckily atom-shell provides sufficient defines to conditionally compile
The text was updated successfully, but these errors were encountered:
Hi all, I'm working on combining atom-shell, Julia, and d3 to be used as a data visualizer. D3 needs contextify, but the problem is that the released versions of node use a earlier version of v8.
In v8 3.29, the function ContextDisposedNotification is no longer a static member function of the class V8, but rather a member function of v8::Isolate, and so contextify.cc will not compile
Luckily atom-shell provides sufficient defines to conditionally compile
The text was updated successfully, but these errors were encountered: