library_test.bat 455 B

123456789101112131415
  1. @echo off
  2. if not "%1" == "" goto bjam
  3. echo Usage: %0 "<bjam arguments>"
  4. echo where 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. goto end
  11. :bjam
  12. bjam --dump-tests %* >bjam.log 2>&1
  13. process_jam_log --v2 <bjam.log
  14. library_status library_status.html links.html
  15. :end
粤ICP备19079148号