49 lines
1.5 KiB
Batchfile
49 lines
1.5 KiB
Batchfile
REM Parameters:
|
|
REM 1 - O
|
|
REM 2 - Binplace root directory
|
|
REM 3 - Source directory for the binaries
|
|
REM 4 - Triplets of "filename placeroot language"
|
|
|
|
setlocal
|
|
set O=%1
|
|
set BinplaceRootDirectory=%2
|
|
set BinarySourceDir=%3
|
|
set AsmDropPath=6000\msft\vcrtlmui
|
|
set TargetMan=vcrtlmui.man
|
|
|
|
call :HamOnwards %~4
|
|
|
|
endlocal
|
|
goto :EOF
|
|
|
|
:HamOnwards
|
|
if "%1" == "" goto DoneDoingIt
|
|
|
|
REM
|
|
REM Process the manifest
|
|
REM
|
|
set tempdir=%O%\%3
|
|
mkdir %tempdir%
|
|
|
|
preprocessor -i vcrtl.mui.manifest -o %tempdir%\%targetman% -reptags -DSXS_PROCESSOR_ARCHITECTURE=%_BUILDARCH% -DMUI_LANGUAGE=%3
|
|
|
|
REM
|
|
REM Get the binary locally
|
|
REM
|
|
|
|
echo mfc42.dll.mui %BinplaceRootDirectory%\%2\%AsmDropPath% > %tempdir%\placefil.txt
|
|
echo %targetman% %BinplaceRootDirectory%\%2\%AsmDropPath% >> %tempdir%\placefil.txt
|
|
copy %BinarySourceDir%\%1 %tempdir%\mfc42.dll.mui
|
|
|
|
binplace -R %_NTTREE% -S %_NTTREE%\Symbols -n %_NTTREE%\Symbols.Pri -:DBG -j -P %tempdir%\placefil.txt -xa -ChangeAsmsToRetailForSymbols %tempdir%\mfc42.dll.mui
|
|
binplace -R %_NTTREE% -S %_NTTREE%\Symbols -n %_NTTREE%\Symbols.Pri -:DBG -j -P %tempdir%\placefil.txt -xa -ChangeAsmsToRetailForSymbols %tempdir%\%targetman%
|
|
echo SXS_ASSEMBLY_NAME="Microsoft.Tools.VisualCPlusPlus.Runtime-Libraries.mui" SXS_ASSEMBLY_VERSION="6.0.0.0" SXS_ASSEMBLY_LANGUAGE="%3" SXS_MANIFEST="%BinplaceRootDirectory%\%2\%asmdroppath%\%targetman%" | appendtool.exe -file %_nttree%\build_logs\binplace.log-sxs -
|
|
|
|
REM rmdir /s /q %tempdir%
|
|
|
|
|
|
shift & shift & shift
|
|
goto :HamOnwards
|
|
:DoneDoingIt
|
|
goto :Eof
|