This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Commit bd3c2cb
committed
build: Launch mspdbsrv (well) outside build tree
The first step in each buildbot run is to clean the working tree
from the last run. On Windows, it is not possible to delete a
directory (or its parents) which is still the current working
directory for a process.
The `make.cmd` batch script launches the `mspdbsrv` service to
collect debug information from the Windows build. The service
runs continuously in the background; it isn't shut down when the
build completes.
Since the `make.cmd` script was being run with its CWD in the build
tree, `mspdbsrv` was also remaining running in the build tree,
blocking the deletion of the build tree.
`mspdbsrv` can be run with any CWD, so this patch modifies
`make.cmd` to launch `mspdbsrv` in the `$ProgramFiles(x86)`
directory.1 parent 6a6b06d commit bd3c2cb
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
18 | 22 | | |
| 23 | + | |
19 | 24 | | |
20 | 25 | | |
21 | 26 | | |
| |||
0 commit comments