Changes between Initial Version and Version 3 of Ticket #9800
- Timestamp:
- Apr 3, 2014, 4:11:17 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9800
- Property Status new → closed
- Property Resolution → fixed
- Property Component None → Building Boost
-
Ticket #9800 – Description
initial v3 1 1 The Windows cmd interpreter badly handles )'s in rem statements, *sometimes* (but not always) closing "if" statements they are nested within. Per docs, parens are illegal in rem commands (see technet.microsoft.com/en-us/library/bb490986.aspx). 2 2 3 On my Win7 64bit box, this was causing bootstrap vc12 to go down bizarre paths. One potential fix is to escape the parens, i.e. use ^( and^) instead of () in comments. I wish I were making this up (sigh).3 On my Win7 64bit box, this was causing bootstrap vc12 to go down bizarre paths. One potential fix is to escape the parens, i.e. use !^( and !^) instead of () in comments. I wish I were making this up (sigh). 4 4 5 5