Changeset c075916 in rtems-docs
- Timestamp:
- 03/23/16 02:18:56 (6 years ago)
- Branches:
- 4.11, 5, am, master
- Children:
- dc234b5
- Parents:
- 2151927
- git-author:
- Chris Johns <chrisj@…> (03/23/16 02:18:56)
- git-committer:
- Amar Takhar <verm@…> (05/03/16 00:51:27)
- Location:
- user/start
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
user/start/depend.rst
r2151927 rc075916 157 157 operating systems. 158 158 159 Building is known to work on `Windows 7 64bit Professional` and `Windows 10`. 160 159 161 .. _windows-path-length: 160 162 … … 235 237 documentation on how to use ``pacman``. What is shown here is a just few 236 238 examples of what you can do. 239 240 .. sidebar:: **Pin MSYS2 Shell to Taskbar** 241 242 Pin the MSYS2 64bit Shell to the Taskbar so you always use it rather than 243 the 32bit Shell. 237 244 238 245 Open a 64bit MSYS shell from the Start Menu: -
user/start/windows.rst
r2151927 rc075916 9 9 10 10 This section details how you create an RTEMS development environment on 11 Windows. The installation documented here is on `Windows 7 64bit Professional`. 11 Windows. The installation documented here is on `Windows 7 64bit 12 Professional`. Building on `Windows 10` has been reported as working. 12 13 13 14 Please see :ref:`microsoft-windows` before continuing. 15 16 .. note:: 17 18 If the RSB reports ``error: no hosts defaults found; please add`` you have 19 probably opened an MSYS2 32bit Shell. Close all 32bit Shell windows and open 20 the MSYS2 64bit Shell. 14 21 15 22 RTEMS Tools … … 32 39 another drive please subsitute ``/c`` with your drive letter. 33 40 34 We build and install all RTEMS packages under the `prefix` we just created. Change to that35 directory and get a copy of the RSB:41 We build and install all RTEMS packages under the `prefix` we just 42 created. Change to that directory and get a copy of the RSB: 36 43 37 44 .. code-block:: shell … … 76 83 $ 77 84 78 To build a set of RTEMS tools for the Intel ``i386`` architecture: 85 To build a set of RTEMS tools for the Intel ``i386`` architecture. The build 86 runs a single job rather a job per CPU in your machine and will take a long 87 time so please be patient. The RSB creates a log file containing all the build 88 output and it will be changing size. The RSB command to build ``i386`` tools 89 is: 79 90 80 91 .. code-block:: shell 81 92 82 93 /c/opt/rtems/rsb/rtems 83 $ ../source-builder/sb-set-builder --prefix=/c/opt/rtems/4.11 --jobs=none 4.11/rtems-i386 94 $ ../source-builder/sb-set-builder --prefix=/c/opt/rtems/4.11 \ 95 --jobs=none 4.11/rtems-i386 84 96 RTEMS Source Builder - Set Builder, 4.11 (01ac76f2f90f) 85 97 Build Set: 4.11/rtems-i386 … … 197 209 .. code-block:: shell 198 210 211 /c 212 $ cd /c/opt/rtems 199 213 /c/opt/rtems 200 214 $ export PATH=/c/opt/rtems/4.11/bin:$PATH … … 234 248 clean away any files, then generate the pre-install header file lists and 235 249 finally we generate the ``autoconf`` and ``automake`` files using the RSB's 236 bootstrap tool. 250 bootstrap tool. First we clean any generated files that exist: 237 251 238 252 .. code-block:: shell … … 243 257 removing configure files 244 258 removing aclocal.m4 files 259 260 Then we generate the pre-install header file automake make files: 261 262 .. code-block:: shell 263 245 264 /c/opt/rtems/kernel/rtems 246 265 $ ./bootstrap -p … … 269 288 Generating ./cpukit/zlib/preinstall.am 270 289 /c/opt/rtems/kernel/rtems 290 291 Finally we run the RSB's parallel ``bootstrap`` command: 292 293 .. code-block:: shell 294 271 295 $ /c/opt/rtems/rsb/source-builder/sb-bootstrap 272 296 RTEMS Source Builder - RTEMS Bootstrap, 4.11 (76188ee494dd) … … 315 339 316 340 Configure the RTEMS kernel to build ``pc686`` BSP for the ``i386`` target with 317 netwo eking disabled, We will build the externel libBSD stack later:341 networking disabled, We will build the external libBSD stack later: 318 342 319 343 .. code-block:: shell
Note: See TracChangeset
for help on using the changeset viewer.