Skip to content

Commit

Permalink
Revert to LLVM 3.9.1 as the default for Windows builds.
Browse files Browse the repository at this point in the history
Like a moron I had made the Windows build system only run debug-mode `stdlib` tests, which masked the fact that there is some kind of memory corruption going on for both 6.0.1 and 7.0.1 builds in release mode.

3.9.1 will need to be the default until that can be figured out.
  • Loading branch information
chalcolith authored and SeanTAllen committed Feb 17, 2019
1 parent 748cacc commit ddb4e49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ MSVC_VERSIONS = [ '15.9', '15.8', '15.7', '15.6', '15.4', '15.0', '14.0' ]

# keep these in sync with the list in .appveyor.yml
LLVM_VERSIONS = [
'7.0.1',
'3.9.1',
'6.0.1'
'6.0.1',
'7.0.1'
]

LIBRESSL_VERSION = "2.9.0"
Expand Down

0 comments on commit ddb4e49

Please sign in to comment.