diff options
Diffstat (limited to '')
-rw-r--r-- | project/ci/appveyor/boost.py | 21 | ||||
-rw-r--r-- | project/ci/travis/boost.py | 15 |
2 files changed, 23 insertions, 13 deletions
diff --git a/project/ci/appveyor/boost.py b/project/ci/appveyor/boost.py index 0a15b7b..875d681 100644 --- a/project/ci/appveyor/boost.py +++ b/project/ci/appveyor/boost.py @@ -5,10 +5,10 @@ R'''Download & build Boost on AppVeyor. -This is similar to build.py, but auto-fills some parameters for build.py from -the AppVeyor-defined environment variables. This script is rarely usefull, -since AppVeyor images come with lots of pre-built Boost distributions, but -still. +This is similar to running both project.boost.download & project.boost.build, +but auto-fills some parameters from the AppVeyor-defined environment variables. +This script is rarely usefull, since AppVeyor images come with lots of +pre-built Boost distributions, but still. Boost is built in C:\projects\boost. ''' @@ -67,12 +67,17 @@ def _parse_args(argv=None): parser = argparse.ArgumentParser( description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) - parser.add_argument('--link', metavar='LINKAGE', nargs='*', type=Linkage.parse, - help='how the libraries are linked (i.e. static/shared)') - parser.add_argument('--runtime-link', metavar='LINKAGE', type=Linkage.parse, + + parser.add_argument('--link', metavar='LINKAGE', + nargs='*', type=Linkage.parse, + help='how the libraries are linked') + parser.add_argument('--runtime-link', metavar='LINKAGE', + type=Linkage.parse, help='how the libraries link to the runtime') - parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], + parser.add_argument('b2_args', metavar='B2_ARG', + nargs='*', default=[], help='additional b2 arguments, to be passed verbatim') + return parser.parse_args(argv) diff --git a/project/ci/travis/boost.py b/project/ci/travis/boost.py index b8e843f..0830544 100644 --- a/project/ci/travis/boost.py +++ b/project/ci/travis/boost.py @@ -5,8 +5,8 @@ R'''Download & build Boost on Travis. -This is similar to build.py, but auto-fills some parameters for build.py from -the Travis-defined environment variables. +This is similar to running both project.boost.download & project.boost.build, +but auto-fills some parameters from the Travis-defined environment variables. Boost is built in $HOME/boost. ''' @@ -65,12 +65,17 @@ def _parse_args(argv=None): parser = argparse.ArgumentParser( description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) - parser.add_argument('--link', metavar='LINKAGE', nargs='*', type=Linkage.parse, + + parser.add_argument('--link', metavar='LINKAGE', + nargs='*', type=Linkage.parse, help='how the libraries are linked') - parser.add_argument('--runtime-link', metavar='LINKAGE', type=Linkage.parse, + parser.add_argument('--runtime-link', metavar='LINKAGE', + type=Linkage.parse, help='how the libraries link to the runtime') - parser.add_argument('b2_args', nargs='*', metavar='B2_ARG', default=[], + parser.add_argument('b2_args', metavar='B2_ARG', + nargs='*', default=[], help='additional b2 arguments, to be passed verbatim') + return parser.parse_args(argv) |