IIFE commented on issue #2846: URL: https://github.com/apache/arrow-adbc/issues/2846#issuecomment-2902382549
@WillAyd I've managed to get a little bit further with Visual Studio 2022 by using this preset: ``` { "name": "debug-msvc2022", "displayName": "debug using msvc 2022", "generator": "Visual Studio 17 2022", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", "ADBC_BUILD_TESTS": "ON", "ADBC_DRIVER_FLIGHTSQL": "OFF", "ADBC_DRIVER_MANAGER": "ON", "ADBC_DRIVER_POSTGRESQL": "OFF", "ADBC_DRIVER_SNOWFLAKE": "OFF", "ADBC_DRIVER_SQLITE": "ON", "ADBC_BUILD_SHARED": "ON", "ADBC_USE_ASAN": "OFF", "ADBC_USE_UBSAN": "OFF", "CMAKE_C_FLAGS": "/wd4267 /wd4244 /wd5262 /wd4266 /wd5026 /wd4310 /wd4456 /wd5204 /EHsc", "CMAKE_CXX_FLAGS": "/wd4267 /wd4244 /wd5262 /wd4266 /wd5026 /wd4310 /wd4456 /wd5204 /EHsc", "CMAKE_TOOLCHAIN_FILE": "C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake" } ``` I can build the sqlite driver and run its tests successfully. However, if I turn `ADBC_DRIVER_FLIGHTSQL` ON, I get this link error: ``` C:\dev\arrow-adbc\c\out\build\debug-msvc2022\LINK : fatal error LNK1104: cannot open file 'adbc_driver_flightsql_shared-NOTFOUND.obj' ``` Feels like we're closer now but a bit confused with this latest error. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org