MSCVersion -> MSCompatibilityVersion .

This commit is contained in:
Vassil Vassilev
2014-07-31 17:18:10 +02:00
committed by sftnight
parent c7a71f9c1f
commit cc7bb99497

View File

@ -769,7 +769,7 @@ namespace cling {
const TargetInfo& Target) { const TargetInfo& Target) {
if (Target.getTriple().getOS() == llvm::Triple::Win32) { if (Target.getTriple().getOS() == llvm::Triple::Win32) {
Opts.MicrosoftExt = 1; Opts.MicrosoftExt = 1;
Opts.MSCVersion = 1300; Opts.MSCompatibilityVersion = 1300;
// Should fix http://llvm.org/bugs/show_bug.cgi?id=10528 // Should fix http://llvm.org/bugs/show_bug.cgi?id=10528
Opts.DelayedTemplateParsing = 1; Opts.DelayedTemplateParsing = 1;
} else { } else {