Skip to content

Commit

Permalink
Workaround name mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Apr 18, 2024
1 parent 3ba406a commit 74663a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/build_pgo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ else
fi

arch=`uname -m`
# Handle macOS calling the architecture arm64 and rust calling it aarch64
if [[ $arch == "arm64" ]]; then
arch="aarch64"
fi

# Build with instrumentation
pip install -U -c constraints.txt setuptools-rust wheel setuptools
Expand Down

0 comments on commit 74663a1

Please sign in to comment.