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. |
| 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. 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 | |
| 46 | Place this in the install point and create a Desktop short cut or Quick Start short cut. |