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
I get a compile error when I install this library with Node 16 because the header ".../node-gyp/16.15.1/include/node/v8-internal.h" declares "remove_cv_t" which is not recognized by "-std=c++11" currently set in this library's "binding.gyp"
So I think "binding.gyp" needs to change the flag "-std=c++11" to "-std=c++14" in order to make this library compatible with Node 16. Does that sound right?
The text was updated successfully, but these errors were encountered:
I get a compile error when I install this library with Node 16 because the header ".../node-gyp/16.15.1/include/node/v8-internal.h" declares "remove_cv_t" which is not recognized by "-std=c++11" currently set in this library's "binding.gyp"
Related info: "Does Google's V8 require C++14 standard?" https://stackoverflow.com/questions/64769506/does-googles-v8-require-c14-standard
So I think "binding.gyp" needs to change the flag "-std=c++11" to "-std=c++14" in order to make this library compatible with Node 16. Does that sound right?
The text was updated successfully, but these errors were encountered: