diff options
author | Victor "Nate" Graf <nategraf1@gmail.com> | 2018-01-10 15:25:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 15:25:34 -0800 |
commit | e275d2dfe18ad1f7db9c35220283001a81a7c669 (patch) | |
tree | e8151996a5ac3b7d710e7f8dd10d8ffb06df6cd1 /build.cmd | |
parent | 240c607d3f5dcea6fa6aa642a4d9584e3b06b738 (diff) | |
download | coreclr-e275d2dfe18ad1f7db9c35220283001a81a7c669.tar.gz coreclr-e275d2dfe18ad1f7db9c35220283001a81a7c669.tar.bz2 coreclr-e275d2dfe18ad1f7db9c35220283001a81a7c669.zip |
Fix incremental build by preventing nonchanging writes (#15817)
Fix incremental build by preventing non-changing writes in generated ETW source code
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -411,7 +411,7 @@ if /i "%__BuildNative%"=="1" ( echo %__MsgPrefix%Laying out dynamically generated files consumed by the native build system echo %__MsgPrefix%Laying out dynamically generated Event test files and etmdummy stub functions - "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventing.py --inc %__IntermediatesIncDir% --dummy %__IntermediatesIncDir%\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1 + "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventing.py --inc %__IntermediatesIncDir% --dummy %__IntermediatesIncDir%\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern --noxplatheader|| exit /b 1 echo %__MsgPrefix%Laying out dynamically generated EventPipe Implementation "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesEventingDir%\eventpipe --nonextern || exit /b 1 |