Lines Matching refs:build
14 The script must be run with Python's build directory as current working
138 help="Force build and installation."
174 # build directory (removed after install)
282 # force extraction into build dir
294 """Now build openssl"""
295 log.info("Running build in {}".format(self.build_dir))
345 log.warning("Using build from {}".format(self.build_dir))
349 # remove all build artefacts
350 for root, dirs, files in os.walk('build'):
363 cmd = [sys.executable, os.path.join(PYTHONROOT, "setup.py"), "build"]
480 "Must be executed from CPython build dir"
484 "Must be executed with ./python from CPython build dir"
493 build = BuildOpenSSL(
497 build.install()
498 builds.append(build)
501 build = BuildLibreSSL(
505 build.install()
506 builds.append(build)
509 for build in builds:
511 build.recompile_pymods()
512 build.check_pyssl()
514 build.run_python_tests(
519 log.exception("%s failed", build)
520 print("{} failed: {}".format(build, e), file=sys.stderr)
535 for build in builds:
536 print(" * {0.library} {0.version}".format(build))