build_release.sh 397 B

1234567891011121314151617181920
  1. #!/usr/bin/env bash
  2. # Build release packages
  3. # Copyright 2008 Beman Dawes
  4. # Distributed under the Boost Software License, Version 1.0. See http://www.boost.org/LICENSE_1_0.txt
  5. if [ $# -lt 1 ]
  6. then
  7. echo "invoke:" $0 "release-name"
  8. echo "example:" $0 "boost_1_35_0_RC3"
  9. exit 1
  10. fi
  11. ./load_posix.sh
  12. ./load_windows.sh
  13. ./build_docs.sh posix
  14. ./build_docs.sh windows
  15. ./build_release_packages.sh $1
粤ICP备19079148号