library_test.sh 428 B

1234567891011121314
  1. if test $# -eq 0
  2. then
  3. echo "Usage: $0 <bjam arguments>"
  4. echo "Typical bjam arguements are:"
  5. echo " toolset=msvc-7.1,gcc"
  6. echo " variant=debug,release,profile"
  7. echo " link=static,shared"
  8. echo " threading=single,multi"
  9. echo " -sBOOST_ARCHIVE_LIST=<archive name>"
  10. else
  11. bjam --dump-tests $@ >bjam.log 2>&1
  12. process_jam_log --v2 <bjam.log
  13. library_status library_status.html links.html
  14. fi
粤ICP备19079148号