[PATCH] D158221: [llvm-lit] copy CRT/STL DLLs into the output directory

Nicole Mazzuca via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 17 15:45:07 PDT 2023


strega-nil planned changes to this revision.
strega-nil added inline comments.


================
Comment at: llvm/utils/lit/lit/TestRunner.py:2081
+                toolsetDirectory.glob('ucrtbase*.dll')):
+            shutil.copyfile(dllToCopy, os.path.join(outputDir, dllToCopy.name))
 
----------------
This doesn't work with clang's version of lit, only with our msvc version of lit, since the output directory is shared; I'm going to need to figure out a better way to do this, that works with either.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D158221/new/

https://reviews.llvm.org/D158221



More information about the llvm-commits mailing list