Replies: 2 comments
-
I assume you are talking about a "project" as the Visual Studio IDE understands them. I have not actively used Visual Studio in decades, so I am mostly guessing.
That looks to me like a implementation detail in the standard library.
It is hard to say, because we don't know how you compiled / linked your application. The first thing that comes to mind is checking that your application uses the same CRT options as vcpkg used when compiling the libraries: https://learn.microsoft.com/en-us/cpp/c-runtime-library/crt-library-features?view=msvc-170 This discussion also seems like it could be relevant: |
Beta Was this translation helpful? Give feedback.
-
Hey, lucaramo, I've just had the same problem and I found the solution for me. Hope it helps |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm trying to use cpp libraries for the v1 "speech to text" api. I successfully built the libraries with vcpkg. then i created a small c++ console project with microsoft msvc 2019. at the time of link i get the following error:
google_cloud_cpp_common.lib(tracing_options.cc.obj) : error LNK2019: unresolved external symbol ___std_find_trivial_1@12 referenced in function "char const * __cdecl __std_find_trivial<char const ,char>(char const *,char const *,char)"
___std_find_trivial_1@12 what does this symbol refer to? How can I solve the problem?
Beta Was this translation helpful? Give feedback.
All reactions