lidavidm commented on issue #616: URL: https://github.com/apache/arrow-adbc/issues/616#issuecomment-1533102317
Interestingly it passes in release mode. Reverting to the commit before #597 does not help so it's unrelated. I see in the last passing build we have gtest `h91493d7_0` and in the first failing `h91493d7_1`. Among other things, that bump changed gtest from static libraries to DLLs. Installing the old package fixes things. With the old package CMake prints ``` -- Found GTest: C:/Users/User/mambaforge/envs/adbc/Library/lib/gtest-md.lib ``` And the new package: ``` -- Found GTest: C:/Users/User/mambaforge/envs/adbc/Library/lib/cmake/GTest/GTestConfig.cmake (found version "1.13.0") ``` The old package contains both debug and release versions of DLLs, but not the new version. ``` Library/bin/gtest_dll-md.dll Library/bin/gtest_dll-mdd.dll Library/bin/gtest_dll.dll Library/bin/gtest_dlld.dll ``` in the old package, vs the new package: ``` Library/bin/gmock.dll Library/bin/gmock_main.dll Library/bin/gtest.dll Library/bin/gtest_main.dll ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
