Replies: 2 comments 2 replies
-
|
I think it wouldn't hurt to document this in the Windows dev docs (that git must be installed and in PATH). Feel free to open a PR. |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
I created #47839 to document this. Feel free to comment on that PR if you have any suggestions. I'm going to mark this Discussion as closed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I started having build problems with error
Could not find PATCH using the following names: patchafter the commit e1f727c. I found it is because my system path doesn't havepatch.exeon it. I wanted to share the fix that worked for me:ensure you have
gitdownloadedcheck that
patch.exeis insideC:\Program Files\Git\usr\binon your machineadd
C:\Program Files\Git\usr\binto your PATH variable.open terminal, run command
patch --versionand it should return successfullyrebuild arrow project, the build should succeed without the
Could not find PATCHerrorBuild error:
Code that gave the error if
patch.exeis not on your systemPATHvariable:arrow/cpp/cmake_modules/ThirdpartyToolchain.cmake
Line 2292 in 541cba8
Beta Was this translation helpful? Give feedback.
All reactions