Hi,
I'm trying to compile for Visual Studio 2017 using:
gn gen out/Debug --args="is_debug=true is_clang=false use_lld=false visual_studio_version=2017 rtc_include_tests=false rtc_build_tools=false rtc_include_tests=false rtc_build_examples=false"
I'm using a x64 native command prompt to compile using
ninja -C out/Debug
When I try to link, I do not have a symbol __dyn_tls_on_demand_init that is only found in protobuf. I could not find a definition anywhere for this symbol. __tls_guard is also missing.
Is it possible that I am linking with clang without knowing?
Am I using the correct gn command to generate my project?
Thanks!
Eric