summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2016-01-19 19:24:23 +0100
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-01-21 14:39:01 -0800
commit2c25d6ca44e3129ace57f6383260a42023a6d646 (patch)
treea6132b98d4c43b788eb8bdf34794e97d84bd724a /build.cmd
parentaae412433d6235b0a1c5f8f0301b2cc066857cc6 (diff)
downloadcoreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.gz
coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.tar.bz2
coreclr-2c25d6ca44e3129ace57f6383260a42023a6d646.zip
FIx the incremental build for Windows
Conflicts: build.cmd src/dlls/clretwrc/CMakeLists.txt Cleanup
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd39
1 files changed, 0 insertions, 39 deletions
diff --git a/build.cmd b/build.cmd
index 0ffb18f30a..3751c18b8f 100644
--- a/build.cmd
+++ b/build.cmd
@@ -328,45 +328,6 @@ if not exist "%__IntermediatesDir%\install.vcxproj" (
REM =========================================================================================
REM ===
-REM === Build ETW infrastructure
-REM ===
-REM =========================================================================================
-
-echo %__MsgPrefix%Generating ETW files
-
-if not defined PythonPath (
- echo %__MsgPrefix%Error: Couldn't find Python.
- exit /b 1
-)
-
-:: Ensure there are no stale files in the Generated Directory
-if exist "%__GeneratedIntermediatesDir%" rd /s /q "%__GeneratedIntermediatesDir%"
-md "%__GeneratedIntermediatesDir%"
-md "%__GeneratedIntermediatesDir%\inc"
-set "genetw=%__SourceDir%\scripts\genWinEtw.py"
-
-mc -h "%__GeneratedIntermediatesDir%\inc" -r "%__GeneratedIntermediatesDir%" -b -co -um -p FireEtw "%__SourceDir%\VM\ClrEtwAll.man"
-IF ERRORLEVEL 1 goto FailedToGenEtwMetadata
-
-"%PythonPath%" "%genetw%" --man "%__SourceDir%\VM\ClrEtwAll.man" --exc "%__SourceDir%\VM\ClrEtwAllMeta.lst" --eventheader "%__GeneratedIntermediatesDir%\inc\ClrEtwAll.h" --macroheader "%__GeneratedIntermediatesDir%\inc\clretwallmain.h" --dummy "%__GeneratedIntermediatesDir%\inc\etmdummy.h"
-IF ERRORLEVEL 1 goto FailedToGenEtwMetadata
-
-:: Do not use this variable; it is used below to support incremental build.
-set "__GeneratedIntermediatesDirPresent=%__IntermediatesDir%\Generated"
-"%PythonPath%" -c "import sys;sys.path.insert(0,r\"%__SourceDir%\scripts\"); from Utilities import *;UpdateDirectory(r\"%__GeneratedIntermediatesDirPresent%\",r\"%__GeneratedIntermediatesDir%\")"
-IF ERRORLEVEL 1 goto FailedToGenEtwMetadata
-
-set __GeneratedIntermediatesDir="%__GeneratedIntermediatesDirPresent%"
-goto DoneGenEtwMetadata
-
-:FailedToGenEtwMetadata
-echo %__MsgPrefix%Error: failed to generate ETW files.
-exit /b %ERRORLEVEL%
-
-:DoneGenEtwMetadata
-
-REM =========================================================================================
-REM ===
REM === Build the CLR VM
REM ===
REM =========================================================================================