|
@@ -48,6 +48,13 @@ def main() -> None:
|
|
|
action="append",
|
|
|
help="Path to a code binary that may be used for validation",
|
|
|
)
|
|
|
+ parser.add_argument(
|
|
|
+ "--add-constraint",
|
|
|
+ dest="bin_constraints",
|
|
|
+ type=BinaryMountSpec,
|
|
|
+ action="append",
|
|
|
+ help="Path to a constraint mapping to apply to a binary (Linux binaries only)",
|
|
|
+ )
|
|
|
parser.add_argument(
|
|
|
"-o",
|
|
|
"--output-directory",
|
|
@@ -88,11 +95,17 @@ def main() -> None:
|
|
|
else:
|
|
|
validation_files.add(args.validation_path)
|
|
|
|
|
|
+ constraint_map = dict()
|
|
|
+ for mount in args.bin_constraints:
|
|
|
+ constraint_map[mount.visible_path] = mount.file_path
|
|
|
+
|
|
|
candidate_targets: list[PlatformBinary] = []
|
|
|
for mount in args.bin_mounts:
|
|
|
loaded_bin: PlatformBinary
|
|
|
if mount.file_path.suffix == ".so":
|
|
|
loaded_bin = LinuxBinary(mount.file_path)
|
|
|
+ if mount.visible_path in constraint_map:
|
|
|
+ loaded_bin.constraints_file = constraint_map[mount.visible_path]
|
|
|
elif mount.file_path.suffix == ".dll":
|
|
|
loaded_bin = WindowsBinary(mount.file_path)
|
|
|
else:
|