[PATCH] D109794: [Sanitizer] Allow setting the report path to create directory

Matt Morehouse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 22 06:21:37 PDT 2021


morehouse added inline comments.


================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_win.cpp:568
 
+bool CreateDir(const char *pathname) { return _mkdir(pathname) == 0; }
+
----------------
This line caused a build breakage on the sanitizer bot:  https://lab.llvm.org/buildbot/#/builders/127/builds/17222

```
C:\...\sanitizer_win.cpp(568): error C3861: '_mkdir': identifier not found
```

Could you please take a look?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D109794



More information about the llvm-commits mailing list