-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Latest commit https://github.com/esp8266/Arduino/pull/7060 prevent compilation under windows with arduino IDE #7749
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@mhightower83, it should be a simple fix for this. Use the same form of |
additonnaly is that normal the build pass in travis/ci where there is a window image used? |
Yeah, the Windows CI is behaving as expected. Unfortunately, to run the CI GH needs certain tools installed. I think they have almost a full mingw running (to allow their scripting/control/etc.). |
Corrected recipe.hooks.prebuild.1x.pattern.windows in platform.txt and placed in proper order.
I close issue as fixed - thank you |
Platform
Settings in IDE
Problem Description
#7060 prevent compilation as it use mkdir.exe and cp.exe which do not exist under windows: mkdir is part of Microsoft shell not and exe and cp is unix tool not present on windows
when linking the compilation failed with following error message
if mkdir is workrounded the a new message pop up
Workaround 1:
revert #7060 allows compillation
Workaround 2:
add mkdir.exe and cp.exe from coreutils (http://gnuwin32.sourceforge.net/packages/coreutils.htm) allows compillation
The text was updated successfully, but these errors were encountered: