Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/cbmc/dist-linux
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ umask u=rwx,g=rx,o=rx
make
strip cbmc

VERSION=`./cbmc --version`
VERSION=`./cbmc --version | cut -d " " -f 1`
VERSION_FILE=`echo $VERSION | sed "y/./-/"`
BITS=`getconf LONG_BIT`
# UNAME_M=`uname -m`
Expand Down
2 changes: 1 addition & 1 deletion src/cbmc/dist-macos
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ make cbmc-mac-signed
(cd ../goto-cc; make goto-cc-mac-signed)
(cd ../goto-instrument; make goto-instrument-mac-signed)

VERSION=`./cbmc --version`
VERSION=`./cbmc --version | cut -d " " -f 1`
VERSION_FILE=`echo $VERSION | sed "y/./-/"`
BITS=`getconf LONG_BIT`

Expand Down
2 changes: 1 addition & 1 deletion src/cbmc/dist-win
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
make
strip cbmc.exe

VERSION=`./cbmc.exe --version`
VERSION=`./cbmc.exe --version | cut -d " " -f 1`
VERSION_FILE=`echo $VERSION | sed "y/./-/"`

echo $VERSION_FILE
Expand Down