summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd33
1 files changed, 0 insertions, 33 deletions
diff --git a/build.cmd b/build.cmd
index be43dea775..f16fecd2ae 100644
--- a/build.cmd
+++ b/build.cmd
@@ -419,44 +419,11 @@ if NOT DEFINED PYTHON (
exit /b 1
)
-if %__BuildNative% EQU 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 --noxplatheader|| exit /b 1
-
- echo %__MsgPrefix%Laying out dynamically generated EventPipe Implementation
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --exc %__SourceDir%\vm\ClrEtwAllMeta.lst --intermediate %__IntermediatesEventingDir%\eventpipe --nonextern || exit /b 1
-
- echo %__MsgPrefix%Laying out ETW event logging interface
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesIncDir% --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
-)
-
if %__BuildCoreLib% EQU 1 (
-
echo %__MsgPrefix%Laying out dynamically generated EventSource classes
"!PYTHON!" -B -Wall %__SourceDir%\scripts\genRuntimeEventSources.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate %__IntermediatesEventingDir% || exit /b 1
)
-if %__BuildCrossArchNative% EQU 1 (
-
- set __CrossCompIntermediatesIncDir=%__CrossCompIntermediatesDir%\src\inc
- set __CrossCompIntermediatesEventingDir=%__CrossCompIntermediatesDir%\eventing
-
- echo %__MsgPrefix%Laying out dynamically generated files consumed by the crossarch build system
- echo %__MsgPrefix%Laying out dynamically generated Event test files and etmdummy stub functions
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventing.py --inc !__CrossCompIntermediatesIncDir! --dummy !__CrossCompIntermediatesIncDir!\etmdummy.h --man %__SourceDir%\vm\ClrEtwAll.man --nonextern || exit /b 1
-
- echo %__MsgPrefix%Laying out dynamically generated EventPipe Implementation
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEventPipe.py --man %__SourceDir%\vm\ClrEtwAll.man --exc %__SourceDir%\vm\ClrEtwAllMeta.lst --intermediate !__CrossCompIntermediatesEventingDir!\eventpipe --nonextern || exit /b 1
-
- echo %__MsgPrefix%Laying out dynamically generated EventSource classes
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genRuntimeEventSources.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesEventingDir! || exit /b 1
-
- echo %__MsgPrefix%Laying out ETW event logging interface
- "!PYTHON!" -B -Wall %__SourceDir%\scripts\genEtwProvider.py --man %__SourceDir%\vm\ClrEtwAll.man --intermediate !__CrossCompIntermediatesIncDir! --exc %__SourceDir%\vm\ClrEtwAllMeta.lst || exit /b 1
-)
-
REM =========================================================================================
REM ===
REM === Build Cross-Architecture Native Components (if applicable)