Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 2 and Version 3 of TBR/UserManual/MinGW_Tools_for_Windows


Ignore:
Timestamp:
07/21/06 07:20:17 (18 years ago)
Author:
ChrisJohns
Comment:

Add a batch file.

Legend:

Unmodified
Added
Removed
Modified
  • TBR/UserManual/MinGW_Tools_for_Windows

    v2 v3  
    3232Click on the above and install each package. The default settings for these package should be ok for most users.
    3333
    34 If you have Cygwin installed, or another package which contains Cygwin you should consider remove any paths from your global path variable to them and using batch files to set paths specifically. It can be confusing if you end up mixing them.
     34If you have Cygwin installed, or another package which contains Cygwin you should consider remove any paths from your global path variable to them and using batch files to set paths specifically. It can be confusing if you end up mixing them. An example batch file for RTEMS is:
     35
     36 > type rtems.bat
     37 @echo off
     38 set PATH=c:\rtems;c:\mingw\bin;%PATH%
     39 set PROMPT=RTEMS(arm) $P$G
     40 If "x%OS%x" == "xwindows_NTx" Goto WinNT_Title
     41 exit
     42 :WinNT_Title
     43 Title RTEMS(arm)
     44 doskey > Nul
     45
     46Place this in the install point and create a Desktop short cut or Quick Start short cut.