Derek Huang
Derek Huang
No problem, thanks for the kind words. I ran into this a while ago but finally found some time to poke around. Glad that it was relatively easy to fix...
Got it, thanks for the information. I've been working on a pretty ancient codebase that depends on CLAPACK, albeit in a bit of a roundabout manner to avoid including [`f2c.h`](https://www.netlib.org/clapack/f2c.h)...
Noticed the same issue when calling `boost::posix_time::time_from_string` from multiple threads. Can at least the [documentation](https://www.boost.org/doc/libs/1_84_0/doc/html/date_time/posix_time.html#:~:text=ptime%20time_from_string(std%3A%3Astring)) be updated to indicate that the function is not thread-safe? It would be nice (but...
Seems like [#790](https://github.com/scikit-learn/scikit-learn/issues/790) validates your assumption about the computation effects of using precomputed vs. callable as kernel. However, to implement your suggestion, at the very least the way that scikit-learn...
If this is accepted maybe it can also address #3843 as it provides an "official" workaround via [`CMAKE_DEBUG_POSTFIX`](https://cmake.org/cmake/help/latest/variable/CMAKE_CONFIG_POSTFIX.html).
> `benchmark` build tutorial is very comprehensive and detailed, considering a variety of situations and multiple platforms Yes, I just looked at their `README.md` and it has good instructions for...
Bumping this. Would be nice to have this as part of the online docs unless this is considered an "unsupported" build method.
I vaguely remember the Google Test CMake quickstart not having the `FetchContent` stuff a while ago (1.10.0 was the latest release at the time). At that time, I think `find_package`...
> I am indeed on a Windows environment, but I believe that whether it's Linux or Windows, we should prioritize using `find_package` and `target_link_libraries` to include. Yes, this is more...
I might open a new issue since I am considering adding a new page in the "Guides" section for building from source, as I showed in my [previous comment](https://github.com/google/googletest/issues/4681#issuecomment-2544408031), as...