ianmcook edited a comment on pull request #9287: URL: https://github.com/apache/arrow/pull/9287#issuecomment-769932647
@kszucs After this is merged, there is a ~~slight~~ possibility that we could see unexpected behavior in `ci/scripts/python_wheel_manylinux_build.sh` and `ci/scripts/python_wheel_windows_build.bat`. I do not think this will happen, but there's a chance that Visual Studio's CMake will automatically identify the `vcpkg.json` manifest file and attempt to install all the packages according to that manifest instead of using the ones installed by the prior `vcpkg install` command. ~~This should not happen because `vcpkg integrate install` has not been run,~~ but in the event that it does happen, the solution is to ~~run `vcpkg integrate remove`~~ use the `cmake` flag `-DVCPKG_MANIFEST_INSTALL=OFF` and/or to delete `vcpkg.json` before running `cmake`. **[Update: This did happen, and I added `-DVCPKG_MANIFEST_INSTALL=OFF` in 77fc842]** ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
