summaryrefslogtreecommitdiff
path: root/test/LTO/lit.local.cfg
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-04 21:40:54 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-04 21:40:54 +0000
commitec2ac8985650a501b452b8fdb69d3124d7be5af9 (patch)
tree7ea327bad951a2fa76b8a793c41848ca97b4fcc8 /test/LTO/lit.local.cfg
parent8e48edcf3dd7dea9fec58b05a6ace6fbd0260d7c (diff)
downloadllvm-ec2ac8985650a501b452b8fdb69d3124d7be5af9.tar.gz
llvm-ec2ac8985650a501b452b8fdb69d3124d7be5af9.tar.bz2
llvm-ec2ac8985650a501b452b8fdb69d3124d7be5af9.tar.xz
Fix object file writing in llvm-lto on Windows.
We were writing in text mode. Patch by Greg Bedwell. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LTO/lit.local.cfg')
-rw-r--r--test/LTO/lit.local.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LTO/lit.local.cfg b/test/LTO/lit.local.cfg
index f61943a77a..7a70736aea 100644
--- a/test/LTO/lit.local.cfg
+++ b/test/LTO/lit.local.cfg
@@ -2,5 +2,5 @@ targets = set(config.root.targets_to_build.split())
if not 'X86' in targets:
config.unsupported = True
-if config.root.host_os in ['Cygwin', 'MingW', 'Windows']:
+if config.root.host_os in ['Cygwin']:
config.unsupported = True