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
6 changes: 3 additions & 3 deletions scripts/kani-std-analysis/std-analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
set -eu

# Test for platform
PLATFORM=$(uname -sp)
PLATFORM=$(uname -sm)
if [[ $PLATFORM == "Linux x86_64" ]]
then
TARGET="x86_64-unknown-linux-gnu"
# 'env' necessary to avoid bash built-in 'time'
WRAPPER="env time -v"
elif [[ $PLATFORM == "Darwin i386" ]]
elif [[ $PLATFORM == "Darwin x86_64" ]]
then
TARGET="x86_64-apple-darwin"
# mac 'time' doesn't have -v
WRAPPER="time"
elif [[ $PLATFORM == "Darwin arm" ]]
elif [[ $PLATFORM == "Darwin arm64" ]]
then
TARGET="aarch64-apple-darwin"
# mac 'time' doesn't have -v
Expand Down
Loading