INSTALL 686 B

123456789101112131415161718192021222324252627282930313233343536
  1. How to install wiringPi
  2. =======================
  3. The easiest way is to use the supplied 'build' script:
  4. ./build
  5. that should do a complete install or upgrade of wiringPi for you.
  6. That will install a dynamic library.
  7. Some distributions do not have /usr/local/lib in the default LD_LIBRARY_PATH. To
  8. fix this, you need to edit /etc/ld.so.conf and add in a single line:
  9. /usr/local/lib
  10. then run the ldconfig command.
  11. sudo ldconfig
  12. If you want to install a static library, you may need to do this manually:
  13. cd wiringPi
  14. make static
  15. sudo make install-static
  16. To un-install wiringPi:
  17. ./build uninstall
  18. Gordon Henderson
  19. projects@drogon.net
  20. https://projects.drogon.net/