README.dev 813 B

123456789101112131415161718192021222324252627282930
  1. Apache Portable Runtime
  2. =======================
  3. If you are building APR from SVN, you need to use a slightly non-standard
  4. build process. You must have autoconf and libtool installed for this to
  5. work. There are three steps:
  6. 1) ./buildconf
  7. 2) ./configure
  8. 3) make
  9. If you are building APR from a distribution tarball, buildconf will have
  10. already been run for you, and you therefore do not need to have either
  11. autoconf or libtool installed, and you do not need to run buildconf. Skip
  12. step one above and just run configure then make.
  13. Generating Test Coverage information
  14. ====================================
  15. If you want to generate test coverage data, use the following steps:
  16. 1) ./buildconf
  17. 2) CFLAGS="-fprofile-arcs -ftest-coverage" ./configure
  18. 3) make
  19. 4) cd test
  20. 5) make
  21. 6) ./testall
  22. 7) cd ..
  23. 8) make gcov