Hi,
I was updating an old V8 app to the latest API but I was having some linker errors (VS2019) related with this call:
std::unique_ptr<v8::Platform> platform = v8::platform::NewDefaultPlatform()
I found that now V8 uses a custom libcxx that I really don't want to propagate to my app so i tried to disable it... without success.
My V8 compile settings are:
is_debug=false
is_component_build = true
target_cpu = "x64"
v8_enable_i18n_support=false
use_lld = false
v8_use_external_startup_data = false
use_glib=false
use_custom_libcxx=false
use_prebuilt_instrumented_libraries=false
is_clang=false
v8_enable_embedded_builtins=false
use_locally_built_instrumented_libraries=false
v8_use_snapshot=true
To be able to get v8.dll, v8_libplatform.dll and v8_libbase.dll not depending of the new custom libcxx I had to checkout the tag 7.5.168.... none of the next versions works.
Is there a new setting that I have to use with the newest tags to compile a v8.dll that doesn't depends on the custom libcxx?
thanks