[v8-users] Re: Missing libv8_libplatform.cr.so in Android build

2020-06-16 Thread Elmi Ahmadov
This is the complete gn args that I use to build V8 8.3.110.9 for Android: target_os = "android" target_cpu = "arm64" v8_target_cpu = "arm64" is_component_build = false is_debug = false use_custom_libcxx = false v8_monolithic = true v8_use_external_startup_data = false v8_enable_i18n_support= fals

[v8-users] Re: Missing libv8_libplatform.cr.so in Android build

2020-06-16 Thread Tommaso Bossi
Thanks, but it didn't work. Anyway I managed to build the missing piece by running: ninja -C out.gn/arm64.release v8_libplatform ninja -C out.gn/arm64.release v8 I have not yet understood why android build behaves differently from the others, though. Il giorno lunedì 15 giugno 2020 17:39:29 UT

[v8-users] Re: Missing libv8_libplatform.cr.so in Android build

2020-06-15 Thread Elmi Ahmadov
I don't know your exact use case but with `symbol_level = 0`, it works for me on V8 *8.3.110.9* On Monday, June 15, 2020 at 5:31:40 PM UTC+2, Tommaso Bossi wrote: > > Actually I don't think the issue is related to this specific version. I > have tried with version 8.1 and I get the same result.

[v8-users] Re: Missing libv8_libplatform.cr.so in Android build

2020-06-15 Thread Tommaso Bossi
Actually I don't think the issue is related to this specific version. I have tried with version 8.1 and I get the same result. Il giorno sabato 13 giugno 2020 11:29:01 UTC+2, Tommaso Bossi ha scritto: > > Hi everyone, > > I'm trying to compile V8 as a shared library for all platforms. The > comp