mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The `__future__` we relied on is now, where the 3 specific things are all included [since Python 3.0](https://docs.python.org/3/library/__future__.html): * absolute_import * print_function * unicode_literals * division These import statements are no-ops and are no longer necessary.
56 lines
1.5 KiB
Python
Executable File
56 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
|
|
|
|
def perform_build(args, swiftbuild_path):
|
|
swiftbuild_args = [
|
|
swiftbuild_path,
|
|
"--package-path",
|
|
args.package_path,
|
|
"--build-path",
|
|
args.build_path,
|
|
"--configuration",
|
|
args.configuration,
|
|
"-Xswiftc",
|
|
"-I",
|
|
"-Xswiftc",
|
|
os.path.join(args.toolchain, 'usr', 'include', 'swift'),
|
|
"-Xswiftc",
|
|
"-L",
|
|
"-Xswiftc",
|
|
os.path.join(args.toolchain, 'usr', 'lib', 'swift', 'macosx'),
|
|
"-Xswiftc",
|
|
"-lswiftRemoteMirror"
|
|
]
|
|
if args.verbose:
|
|
swiftbuild_args.append("--verbose")
|
|
print(' '.join(swiftbuild_args))
|
|
subprocess.call(swiftbuild_args)
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--verbose", "-v", action="store_true")
|
|
parser.add_argument("--package-path", type=str, required=True)
|
|
parser.add_argument("--build-path", type=str, required=True)
|
|
parser.add_argument("--toolchain", type=str, required=True)
|
|
parser.add_argument("--configuration", type=str, choices=['debug', 'release'],
|
|
default='release')
|
|
|
|
args = parser.parse_args()
|
|
|
|
# Create our bin directory so we can copy in the binaries.
|
|
bin_dir = os.path.join(args.build_path, "bin")
|
|
if not os.path.isdir(bin_dir):
|
|
os.makedirs(bin_dir)
|
|
|
|
swiftbuild_path = os.path.join(args.toolchain, "usr", "bin", "swift-build")
|
|
perform_build(args, swiftbuild_path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|