summaryrefslogtreecommitdiff
path: root/bin/flo2app.sh
blob: f02ba8c0acd8ca8a01be6d3be4221d6dc370e5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

flo-llvm $1.flo #  --vcdtmp
if [ $? ] ; then
  echo FLO-LLVM DONE
  flo-llvm-release $1.flo --harness > $1-harness.cpp
fi
if [ $? ] ; then
  echo FLO-LLVM-RELEASE DONE
  clang++ -o $1 $1-harness.cpp $1.o
  echo GPP DONE
fi