Changes between Version 6 and Version 7 of Packages


Ignore:
Timestamp:
06/15/12 22:53:07 (12 years ago)
Author:
C Rempel
Comment:

/* Adding Libraries to RTEMS */

Legend:

Unmodified
Added
Removed
Modified
  • Packages

    v6 v7  
    1010= Adding Libraries to RTEMS =
    1111
     12First we'll show how to build a library that is part of the RTEMS Addon Packages, then we'll look at the internals of complex port, finally, we'll discuss how to build your own port.
    1213=  Setting up the Environment  =
    1314
     
    9697Now the long-haul of porting the library begins:
    9798  $ make -f ../RTEMS_Makefiles/Makefile.mylib
     99=  Handling Errors  =
     100
     101
     102Use configure --help to disable unneeded settings.  Disable those settings in rtems-addon-packages/RTEMS_Makefiles/Makefile.mylib.
     103  $ gedit ../RTEMS_Makefiles/Makefile.mylib
     104''For example: ./configure \
     105                  --disable-dso''
    98106
    99107Find the variable to cache to prevent the error.
     
    101109
    102110''Note: use the search feature of your word processor to find the error message, and look for variables to cache (for example: cf_cv_type_of_bool=char).  For gedit the search feature is: Ctrl+F''
     111
    103112
    104113Edit the rtems-addon-packages/RTEMS_Makefiles/Makefile.mylib.