1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
#!/usr/bin/env python3
"""Run meson and ninja to build the ots-sanitize executable from source.
NOTE: This script requires Python 3.6 or above. However the generated binary
is independent from the python version used to run it.
"""
import sys
import platform
import enum
from pathlib import Path
import os
import subprocess
import shutil
import errno
import argparse
class MacTarget(enum.Enum):
X86_64 = "x86_64"
ARM64 = "arm64"
UNIVERSAL2 = "universal2"
PLATFORM = platform.uname()
ROOT = Path(__file__).parent.resolve()
SRC_DIR = ROOT.joinpath("src", "c", "ots")
DEFAULT_BUILD_DIR = ROOT / "build" / "meson"
CROSS_FILES_DIR = ROOT / "cross-files"
MACOS_CROSS_FILES = {
MacTarget.ARM64: CROSS_FILES_DIR / "darwin" / "arm64",
MacTarget.X86_64: CROSS_FILES_DIR / "darwin" / "x86_64",
}
TOOLS = {
"meson": os.environ.get("MESON_EXE", "meson"),
"ninja": os.environ.get("NINJA_EXE", "ninja"),
}
MESON_OPTIONS = [
"--backend=ninja",
"--buildtype=release",
"--strip",
"-Ddebug=true",
]
if PLATFORM.system == "Windows":
MESON_OPTIONS.append("--force-fallback-for=zlib")
if PLATFORM.system == "Darwin":
MESON_OPTIONS.append("--force-fallback-for=google-brotli,lz4")
native_machine = MacTarget(PLATFORM.machine)
cross_machine = (
MacTarget.ARM64 if native_machine == MacTarget.X86_64 else MacTarget.X86_64
)
MACOS_CROSS_FILES = {
native_machine: [""],
cross_machine: [MACOS_CROSS_FILES[cross_machine]],
}
MACOS_CROSS_FILES[MacTarget.UNIVERSAL2] = (
MACOS_CROSS_FILES[MacTarget.X86_64] + MACOS_CROSS_FILES[MacTarget.ARM64]
)
class ExecutableNotFound(FileNotFoundError):
def __init__(self, name, path):
msg = f"{name} executable not found: '{path}'"
super().__init__(errno.ENOENT, msg)
def check_tools():
for name, path in TOOLS.items():
if shutil.which(path) is None:
raise ExecutableNotFound(name, path)
def configure(build_dir, reconfigure=False, cross_file=""):
meson_cmd = [TOOLS["meson"]] + MESON_OPTIONS + [str(build_dir), str(SRC_DIR)]
if cross_file:
meson_cmd.insert(1, f"--cross-file={cross_file}")
if not (build_dir / "build.ninja").exists():
subprocess.run(meson_cmd, check=True, env=os.environ)
elif reconfigure:
subprocess.run(meson_cmd + ["--reconfigure"], check=True, env=os.environ)
def make(build_dir, *targets, clean=False):
ninja_cmd = [TOOLS["ninja"], "-C", str(build_dir)]
targets = list(targets)
if clean:
subprocess.run(
ninja_cmd + ["-t", "clean"] + targets, check=True, env=os.environ
)
subprocess.run(ninja_cmd + targets, check=True, env=os.environ)
def main(args=None):
parser = argparse.ArgumentParser()
parser.add_argument("-f", "--force", action="store_true")
parser.add_argument("--build-dir", default=DEFAULT_BUILD_DIR, type=Path)
parser.add_argument(
"--mac-target",
default=None,
metavar="ARCH",
type=MacTarget,
help=(f"{(', ').join(v.value for v in MacTarget)}"),
)
parser.add_argument("targets", nargs="*")
options = parser.parse_args(args)
check_tools()
build_dirs = [options.build_dir]
cross_files = [""]
if options.mac_target is not None:
if PLATFORM.system == "Darwin":
cross_files = MACOS_CROSS_FILES[options.mac_target]
if options.mac_target == MacTarget.UNIVERSAL2:
build_dirs = [options.build_dir / arch for arch in ("x86_64", "arm64")]
else:
print(
"WARNING: --mac-target option is ignored on non-mac platforms",
file=sys.stderr,
)
for cross_file, build_dir in zip(cross_files, build_dirs):
try:
configure(
build_dir,
reconfigure=options.force,
cross_file=cross_file,
)
make(build_dir, *options.targets, clean=options.force)
except subprocess.CalledProcessError as e:
return e.returncode
if options.mac_target == MacTarget.UNIVERSAL2:
# create universal binary by merging multiple archs with the 'lipo' tool:
# https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary
for filename in options.targets:
arch_paths = [
options.build_dir / arch / filename for arch in ("x86_64", "arm64")
]
dest_path = options.build_dir / filename
subprocess.run(
["lipo", "-create", "-output", dest_path] + arch_paths,
check=True,
env=os.environ,
)
# confirm that we got a 'fat' binary
result = subprocess.run(
["lipo", "-archs", dest_path], check=True, capture_output=True
)
assert "x86_64 arm64" == result.stdout.decode().strip()
if __name__ == "__main__":
sys.exit(main())
|