-
Notifications
You must be signed in to change notification settings - Fork 44
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
Appveyor builds fail randomly #62
Comments
MSBuild is running custom build steps multiple times as indicated by the lines
so the error might be caused by race conditions when two processes (build is parallel) are trying to rebuild |
Running msbuild with
|
Some information about using generated files in two different targets: http://www.cmake.org/pipermail/cmake/2008-October/024492.html |
vitaut
added a commit
that referenced
this issue
Aug 4, 2015
because including a file generated by a custom command in more than one target may result in it being generated multiple times in a parallel build which doesn't work reliably in msbuild (#62). See also http://www.cmake.org/pipermail/cmake/2008-October/024492.html
vitaut
added a commit
that referenced
this issue
Aug 4, 2015
arith.h should only be included in the target of the same name (#62)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The errors occur in different projects, but always when including
arith.h
:Looks like the problem with a custom build step that generates
arith.h
.The text was updated successfully, but these errors were encountered: