summaryrefslogtreecommitdiff
path: root/contrib/get-symfpu
blob: 705e9d873f923190ba53e848c0e02516d8323325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#
source "$(dirname "$0")/get-script-header.sh"

wdir="symfpu-CVC4"

if [ -e $wdir ]; then
  echo "error: file or directory "$wdir" exists; please move it out of the way." >&2
  exit 1
fi

commit="1273dc9379b36af1461fe04aa453db82408006cf"

mkdir $wdir
cd $wdir
git clone https://github.com/martin-cs/symfpu.git symfpu
cd symfpu
git checkout $commit

echo
echo "Using symfpu commit $commit"
echo
echo ===================== Now configure CVC4 with =====================
echo ./configure.sh --symfpu
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback