8000 BUILD: Hide platform configuration probe behind --debug-configure by mattip · Pull Request #14518 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUILD: Hide platform configuration probe behind --debug-configure #14518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Sep 20, 2019
Prev Previous commit
DOC: improve help string
  • Loading branch information
mattip committed Sep 20, 2019
commit 492fdab94de8fb77bac9f10f48b196db08852677
4 changes: 3 additions & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ def main(argv):
parser.add_argument("--verbose", "-v", action="count", default=1,
help="more verbosity")
parser.add_argument("--debug-configure", action="store_true",
help="add -v to build_src to show cconfiguration compiler output")
help=("add -v to build_src to show compiler "
"configuration output while creating "
"_numpyconfig.h and config.h"))
parser.add_argument("--no-build", "-n", action="store_true", default=False,
help="do not build the project (use system installed version)")
parser.add_argument("--build-only", "-b", action="store_true", default=False,
Expand Down
0