Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit e6fb726

Browse files
committed
llvm/test/lit.cfg: Suppress dwarf stuff for targeting x86_64-mingw32 while investigating since r219108.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219171 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 3ba3a4c commit e6fb726

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/lit.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ else:
274274
config.available_features.add("not_ubsan")
275275

276276
# Direct object generation
277-
if not 'hexagon' in config.target_triple:
277+
# Suppress x86_64-mingw32 while investigating since r219108.
278+
if not 'hexagon' in config.target_triple and not re.match(r'^x86_64.*-(mingw32|win32)', config.target_triple):
278279
config.available_features.add("object-emission")
279280

280281
if config.have_zlib == "1":

0 commit comments

Comments
 (0)