Hi V8 Users, 
I configured my V8 build with:

  is_component_build=false
  v8_monolithic=true
  v8_use_external_startup_data=false
  v8_enable_i18n_support=true
  use_custom_libcxx=false
  use_sysroot=false
  is_debug=false
  is_clang=false
  use_sysroot=false

and am building on a debian buster with gcc (Debian 8.2.0-12) 8.2.0

and only after changing build/config/compiler/BUILD.gn
    if (!is_clang) {
      cflags_cc += [
        # See comment for -Wno-c++11-narrowing.
        "-Wno-narrowing",
      ]
to also contain
        "-Wno-error=class-memaccess",
        "-Wno-class-memaccess",
        "-Wno-error=subobject-linkage",
        "-Wno-stringop-overflow",
it stopped flodding warnings at me. 

Is this intended? or am I doing something else wrong?

Cheers, 
Willi

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to