Re: [v8-users] standalone static library

2018-03-20 Thread Jakob Kummerow
Have you read the official documentation? https://github.com/v8/v8/wiki/Getting-Started-with-Embedding Do those steps work for you? If not, what error(s) do they produce? On Tue, Mar 20, 2018 at 11:09 AM Eduardo Bolis wrote: > Hi, > > I successfully build V8 on

[v8-users] standalone static library

2018-03-20 Thread Eduardo Bolis
Hi, I successfully build V8 on Ubuntu 17 with GN, but what it generates is a set of static libraries and object files that I have no idea how to embedded into my project. I found an article that said: "Under gn, there is no way to have v8 build as a standalone static library." So, I ask if

[v8-users] Re: Large build size

2018-03-20 Thread Raman Budny
Found, that adding symbol_level = 1 to gn config helps to shrink libv8.so from 500M to 15M. On Tuesday, 20 March 2018 15:32:30 UTC+3, Raman Budny wrote: > > I'm using 6.6.346.12. > > On Thursday, 8 February 2018 02:58:35 UTC+3, Ryan Dahl wrote: >> >> Hi, >> >> I've noticed that the build size in

[v8-users] Re: Large build size

2018-03-20 Thread Raman Budny
I'm using 6.6.346.12. On Thursday, 8 February 2018 02:58:35 UTC+3, Ryan Dahl wrote: > > Hi, > > I've noticed that the build size in the latest V8 releases is very large. > > For example, on 6.5.257, I get > > -rw-r--r-- 1 rld staff 1.1G Feb 7 18:49 out/v8build/obj//libv8_base.a > > It's

[v8-users] Re: Large build size

2018-03-20 Thread Raman Budny
Same for me (host: x86_64, Ubuntu 16.04, target: armeabi-v7a) with the following gn arguments: is_official_build = true is_component_build = true is_debug = false is_clang = true target_cpu = "x86" v8_enable_i18n_support = false v8_use_snapshot = false v8_target_cpu = "arm" arm_arch = "armv7-a":