Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Support building debug variants of all release packages. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6316be1002ad3d6d4e9af7319b088493 |
User & Date: | mistachkin 2015-05-27 00:42:20.616 |
Context
2015-05-27
| ||
00:43 | Fix typos in the previous check-in. check-in: 3447ba8980 user: mistachkin tags: trunk | |
00:42 | Support building debug variants of all release packages. check-in: 6316be1002 user: mistachkin tags: trunk | |
00:14 | Update the download page for release 1.0.97.0. check-in: b31d2517cc user: mistachkin tags: trunk | |
Changes
Changes to Setup/release.bat.
︙ | ︙ | |||
78 79 80 81 82 83 84 | ) %_VECHO% BasePlatform = '%BASE_PLATFORM%' %_VECHO% ExtraPlatform = '%EXTRA_PLATFORM%' IF NOT DEFINED TYPE ( IF /I "%CONFIGURATION%" == "%BASE_CONFIGURATION%" ( | > > > | > > > > | > | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | ) %_VECHO% BasePlatform = '%BASE_PLATFORM%' %_VECHO% ExtraPlatform = '%EXTRA_PLATFORM%' IF NOT DEFINED TYPE ( IF /I "%CONFIGURATION%" == "%BASE_CONFIGURATION%" ( IF /I "%BASE_CONFIGURATION%" == "Debug" ( SET TYPE=%TYPE_PREFIX%binary-debug-bundle ) ELSE ( SET TYPE=%TYPE_PREFIX%binary-bundle ) ) ELSE ( IF /I "%BASE_CONFIGURATION%" == "Debug" ( SET TYPE=%TYPE_PREFIX%binary-debug ) ELSE ( SET TYPE=%TYPE_PREFIX%binary ) ) ) %_VECHO% Type = '%TYPE%' CALL :fn_ResetErrorLevel |
︙ | ︙ |
Changes to Setup/release_ce_200x.bat.
︙ | ︙ | |||
26 27 28 29 30 31 32 | ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' | > > > | > > < | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' IF DEFINED RELEASE_DEBUG ( SET RELEASE_CONFIGURATIONS=Debug Release ) ELSE ( SET RELEASE_CONFIGURATIONS=Release ) SET BASE_CONFIGURATIONSUFFIX=Compact SET PLATFORMS="Pocket PC 2003 (ARMV4)" SET YEARS=2008 SET BASE_PLATFORM=PocketPC SET EXTRA_PLATFORM_Pocket_PC_2003_ARMV4=ARM CALL :fn_ResetErrorLevel %__ECHO3% CALL "%TOOLS%\release_all.bat" IF ERRORLEVEL 1 ( ECHO Failed to build WinCE release files. |
︙ | ︙ |
Changes to Setup/release_ce_2013.bat.
︙ | ︙ | |||
25 26 27 28 29 30 31 32 | GOTO usage ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' | > | > | > > > < | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | GOTO usage ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' IF DEFINED RELEASE_DEBUG ( SET RELEASE_CONFIGURATIONS=Debug Release ) ELSE ( SET RELEASE_CONFIGURATIONS=Release ) SET FRAMEWORK2012=netFx39 SET BASE_CONFIGURATIONSUFFIX=Compact SET PLATFORMS="CEPC DevPlatform" ARMV7 SET YEARS=2012 SET BASE_PLATFORM=WinCE SET EXTRA_PLATFORM_CEPC_DevPlatform=x86 SET EXTRA_PLATFORM_ARMV7=ARM CALL :fn_ResetErrorLevel %__ECHO3% CALL "%TOOLS%\release_all.bat" IF ERRORLEVEL 1 ( ECHO Failed to build WinCE release files. |
︙ | ︙ |
Changes to www/release.wiki.
︙ | ︙ | |||
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the setup packages for x86 and x64: <br /> <br /> <b>bake_all.bat</b> </li> </ol> <a name="buildBinaryPackages"></a> <h2>Build x86 & x64 Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the binary release packages for x86 and x64: <br /> <br /> <b>release_all.bat</b> </li> </ol> <a name="buildStaticBinaryPackages"></a> <h2>Build x86 & x64 Static Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the static binary release packages for x86 and x64: <br /> <br /> <b>release_static.bat</b> </li> </ol> <a name="buildCeBinaryPackages"></a> <h2>Build Windows CE Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the binary release packages for Windows CE: <br /> <br /> <b>release_ce_200x.bat</b> </li> <li> Enter the following command to build all the binary release packages for Windows Embedded Compact 2013: <br /> <br /> <b>release_ce_2013.bat</b> </li> </ol> <a name="buildSourcePackages"></a> <h2>Build Source Release Packages</h2> | > > > > > > > > > > | 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the setup packages for x86 and x64: <br /> <br /> <b>SET BAKE_DEBUG=1</b> <br /> <b>bake_all.bat</b> </li> </ol> <a name="buildBinaryPackages"></a> <h2>Build x86 & x64 Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_all.bat</b> </li> </ol> <a name="buildStaticBinaryPackages"></a> <h2>Build x86 & x64 Static Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the static binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_static.bat</b> </li> </ol> <a name="buildCeBinaryPackages"></a> <h2>Build Windows CE Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the binary release packages for Windows CE: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_ce_200x.bat</b> </li> <li> Enter the following command to build all the binary release packages for Windows Embedded Compact 2013: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_ce_2013.bat</b> </li> </ol> <a name="buildSourcePackages"></a> <h2>Build Source Release Packages</h2> |
︙ | ︙ |