1

是使用批处理文件构建操作系统的示例。 是另一个。

我不想构建整个内核,只是包含在 OS 项目中的一个子项目。基本上与“构建所有子项目”所做的相同。(并且在构建后不制作运行时映像。)

“构建所有子项目”的命令行等效项是什么?

4

1 回答 1

2

这是我在 VS2008 / Platform Builder 7 中使用的示例。

它在指定的 OSDesign 中查找子项目。找到的任何项目都是用build -c.

可能需要根据 Platform Builder 版本和您想要实现的目标进行一些调整,但这是一般的想法。

该脚本留下一个setenv.bat文件。这对于诊断构建错误可能很有用,或者可以简单地删除。

@echo off

set OSDESIGN_NAME=<YourOSDesign>
set BUILD_CONFIG=<Solution Configuration from VS2008, e.g. YourPlatform Release>

set OSDESIGN_DIR=C:\WINCE700\OSDesigns\%OSDESIGN_NAME%\%OSDESIGN_NAME%

rem Set up build environment (equivalent to clicking Build -> "Open Release Directory in Build Window" in VS2008)
"C:\Program Files (x86)\Microsoft Platform Builder\7.00\cepb\IdeVS\pbxmlutils" /getbuildenv /workspace "%OSDESIGN_DIR%\%OSDESIGN_NAME%.pbxml" /config "%BUILD_CONFIG%" > setenv.bat && call setenv.bat

@echo off

rem Ensure any build output is copied to the release directory
set WINCEREL=1

rem Look for subprojects in the OSDesign folder
for /d %%d in (%OSDESIGN_DIR%\*.*) do if exist "%%d\sources" (
    cd %%d
    build -c
)

pause
于 2017-05-17T04:20:55.437 回答