Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve build instructions for Mono to prevent use of the per-user configuration files (i.e. when building from a source checkout instead of an official source release package). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
001c0b4daed60982d6a586dd6f1ee507 |
User & Date: | mistachkin 2015-07-11 08:05:04.635 |
Context
2015-07-11
| ||
08:06 | Small HTML style fix for the previous check-in. check-in: 59e075a640 user: mistachkin tags: trunk | |
08:05 | Improve build instructions for Mono to prevent use of the per-user configuration files (i.e. when building from a source checkout instead of an official source release package). check-in: 001c0b4dae user: mistachkin tags: trunk | |
2015-07-03
| ||
21:57 | Update SQLite core library to the latest trunk code. check-in: d545007d7a user: mistachkin tags: trunk | |
Changes
Changes to Setup/build.bat.
︙ | ︙ | |||
72 73 74 75 76 77 78 | IF ERRORLEVEL 1 ( ECHO File "%TOOLS%\set_%CONFIGURATION%_%PLATFORM%.bat" failed. GOTO errors ) ) | > | | | | | | | | | | | | | | | | | | | | | | | | | > | 72 73 74 75 76 77 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | IF ERRORLEVEL 1 ( ECHO File "%TOOLS%\set_%CONFIGURATION%_%PLATFORM%.bat" failed. GOTO errors ) ) IF NOT DEFINED NOUSER ( IF EXIST "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%_%PLATFORM%.bat" ( CALL :fn_ResetErrorLevel %_AECHO% Running "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%_%PLATFORM%.bat"... %__ECHO3% CALL "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%_%PLATFORM%.bat" IF ERRORLEVEL 1 ( ECHO File "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%_%PLATFORM%.bat" failed. GOTO errors ) ) IF EXIST "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%.bat" ( CALL :fn_ResetErrorLevel %_AECHO% Running "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%.bat"... %__ECHO3% CALL "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%.bat" IF ERRORLEVEL 1 ( ECHO File "%TOOLS%\set_user_%USERNAME%_%BASE_CONFIGURATION%.bat" failed. GOTO errors ) ) IF EXIST "%TOOLS%\set_user_%USERNAME%.bat" ( CALL :fn_ResetErrorLevel %_AECHO% Running "%TOOLS%\set_user_%USERNAME%.bat"... %__ECHO3% CALL "%TOOLS%\set_user_%USERNAME%.bat" IF ERRORLEVEL 1 ( ECHO File "%TOOLS%\set_user_%USERNAME%.bat" failed. GOTO errors ) ) ) IF NOT DEFINED MSBUILD ( SET MSBUILD=MSBuild.exe ) |
︙ | ︙ |
Changes to www/build.wiki.
︙ | ︙ | |||
390 391 392 393 394 395 396 397 398 399 400 401 402 403 | <br /> </li> <li> Enter the following command to build the managed-only binaries for Mono: <br /> <br /> <b>build.bat ReleaseManagedOnly</b> <br /> <br /> </li> <li> Make sure everything succeeds with no errors; the log file | > | 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | <br /> </li> <li> Enter the following command to build the managed-only binaries for Mono: <br /> <br /> <b>SET NOUSER=1</b> <b>build.bat ReleaseManagedOnly</b> <br /> <br /> </li> <li> Make sure everything succeeds with no errors; the log file |
︙ | ︙ |