Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions barretenberg/ts/scripts/copy_cross.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ elif semver check "${REF_NAME:-}" && [[ "$(arch)" == "amd64" ]]; then
done

llvm-strip-20 ./build/*/*

# Re-sign macOS Mach-O binaries after stripping (stripping invalidates the ad-hoc code signature).
for arch in amd64-macos arm64-macos; do
for f in ./build/$arch/*; do
ldid -S "$f"
done
done
else
echo "This task is expected to be run in an x86 release context."
# TODO bring back. was being called by release.
Expand Down
Loading