-
Notifications
You must be signed in to change notification settings - Fork 99
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
Msvc fixes #523
Msvc fixes #523
Conversation
@@ -97,7 +97,7 @@ | |||
<CustomBuildStep> | |||
<Message>Generating data</Message> | |||
<Outputs>difficulty1_patched</Outputs> | |||
<Inputs>"$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe"</Inputs> | |||
<Inputs>$(SolutionDir)\bin\$(Platform)\$(Configuration)\extractor.exe</Inputs> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I seem to remember this being one of the things that causes mutually exclusive breakage in different versions of MSVC (IE something like quotes break msvc2017, but no quotes breaks msvc2015). I guess from the VisualStudioVersion update above you tested this in the latest version? That's probably fine, as "get the latest version" is easier than "Get this specific old version that's hidden in MS' website somwehere"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, msvc2017 complained about illegal characters in ""path/to/extractor.exe""
The 64bit build in Appveyor succeeded so it seems it has been fixed (maybe a hotfix patch from microsoft?). However, the 32bit build exceeded the maximum build time (one hour) maybe there's something new going on? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Telling it to rebuild let is pass in the "Normal" time. shrug
e9f0f28
to
cb185dc
Compare
cb185dc
to
5003017
Compare
Fixes #522