RTEMS Logo

RTEMS 4.9.3 On-Line Library


Applying RTEMS Patches

PREV UP NEXT Bookshelf Getting Started with RTEMS

4.1.3: Applying RTEMS Patches

NOTE: This step is required if building BINUTILS, GCC, and NEWLIB using the procedures described in Using configure and make. It is NOT required if using the procedure described in Using RPM to Build BINUTILS GCC and NEWLIB.

This section describes the process of applying the RTEMS patches to GCC, NEWLIB, and BINUTILS.

Apply RTEMS Patch to GCC

Apply the patch using the following command sequence:

cd tools/gcc-4.3.2
cat ../../archive/gcc-4.3.2-rtems4.9-20080917.diff | \
    patch -p1

If the patch was compressed with the gzip program, it will have a suffix of .gz and you should use zcat instead of cat as shown above. If the patch was compressed with the gzip program, it will have a suffix of .bz2 and you should use bzcat instead of cat as shown above.

Check to see if any of these patches have been rejected using the following sequence:

cd tools/gcc-4.3.2
find . -name "*.rej" -print

If any files are found with the .rej extension, a patch has been rejected. This should not happen with a good patch file which is properly applied.

Apply RTEMS Patch to binutils

Apply the patch using the following command sequence:

cd tools/binutils-2.18
cat ../../archive/binutils-2.18-rtems4.9-20080211.diff | \
    patch -p1

If the patch was compressed with the gzip program, it will have a suffix of .gz and you should use zcat instead of cat as shown above. If the patch was compressed with the gzip program, it will have a suffix of .bz2 and you should use bzcat instead of cat as shown above.

Check to see if any of these patches have been rejected using the following sequence:

cd tools/binutils-2.18
find . -name "*.rej" -print

If any files are found with the .rej extension, a patch has been rejected. This should not happen with a good patch file which is properly applied.

Apply RTEMS Patch to newlib

Apply the patch using the following command sequence:

cd tools/newlib-1.16.0
cat ../../archive/newlib-1.16.0-rtems4.9-20080827.diff | \
    patch -p1

If the patch was compressed with the gzip program, it will have a suffix of .gz and you should use zcat instead of cat as shown above. If the patch was compressed with the gzip program, it will have a suffix of .bz2 and you should use bzcat instead of cat as shown above.

Check to see if any of these patches have been rejected using the following sequence:

cd tools/newlib-1.16.0
find . -name "*.rej" -print

If any files are found with the .rej extension, a patch has been rejected. This should not happen with a good patch file which is properly applied.


PREV UP NEXT Bookshelf Getting Started with RTEMS

Copyright © 1988-2008 OAR Corporation