Wolfgang Steiner

Results 48 comments of Wolfgang Steiner

I spent quite some time yesterday and today the last couple of hours to figure out the right way to build a(ny) Node 8.x version with the latest Android NDK...

I think I will push my current progress as a new branch to my fork tomorrow. I have to clean everything up a bit before I do that, because I...

> You're missing the libandroid_support headers. @DanAlbert Thanks for the hint, I already dug through the mentioned issue to see that this is the problem. What I can not figure...

I have now made it to a point where the android support headers seem to be included property (I took the relevant parts from the NDK cmake files), but now...

I have managed to sort this out and also some linker errors after that, meaning I got a native j2v8 binary using Node.js 8.x for the first time ... but...

Not quite yet, but I think I'm still on the right track: ``` D/dalvikvm( 2306): Trying to load lib /data/app-lib/com.eclipsesource.v8.test-2/libj2v8.so 0xb1f707a0 E/dalvikvm( 2306): dlopen("/data/app-lib/com.eclipsesource.v8.test-2/libj2v8.so") failed: dlopen failed: cannot locate symbol...

I pushed my progress to an experimental branch, with the following additions for building with Node 8.x and the r16 NDK beta: - creating the [standalone-toolchain](https://github.com/drywolf/J2V8/blob/node8-experimental/docker/android/Dockerfile#L32-L33) from the NDK -...

Now I am trying to just use the NDK + toolchain.cmake file (based on your suggestion from above & this [blog post](https://chengyihe.wordpress.com/2017/04/26/android-ndk-use-cmake-to-build-a-native-module/)) When I do that I get the following...

@DanAlbert even if I manually correct this in CMake's installed script files and set "llvm" manually, I just return back to the point where I have to deal with missing...

I went back to the problem about `htons` not being defined and [found the following code](https://github.com/nodejs/node/blob/34d1b1144e1af8382dad71c28c8d956ebf709801/deps/nghttp2/lib/nghttp2_net.h#L42) in Node.js that when active just inlines its own implementations for those functions. It...