1
2
3
4
5
|
#!/bin/sh
# `zig ar` — llvm-ar, from the same pinned zig as scripts/zcc, so archiving is
# no more of a system dependency than compiling is. cc-rs invokes AR directly
# when a -sys crate builds a static library; aws-lc-sys is the one that does.
exec "$(dirname "$0")/zig" ar "$@"
|