README 627 B

1234567891011121314151617181920
  1. To build and install the uClibc development environment,
  2. 1) cp ./extra/Configs/Config.<your arch> ./Config
  3. 2) Edit ./Config for your setup.
  4. 3) make
  5. 4) make install_dev (as root if necessary, depending on your Config)
  6. To install the runtime environment,
  7. make install_target (again, as root if necessary)
  8. To compile programs with uClibc,
  9. export PATH={uClibc DEVEL_PREFIX/ROOT_DIR}/bin:$PATH
  10. and then just ./configure and make as usual.
  11. Note: You may also want to look at extra/gcc-uclibc/gcc-uclibc.c for
  12. additional information concerning what options and environment
  13. variables the gcc wrapper handles.