aboutsummaryrefslogtreecommitdiff
path: root/example/compile.sh
blob: fe9f133c349f6c04ba5636f77a5c96893f939d46 (plain)
1
2
3
4
5
6
#!/bin/sh

compiler="$((g++ -v 2>/dev/null && echo "g++") ||\
            (clang++ -v 2>/dev/null && echo "clang++"))"

${compiler} -std=c++14 example.cpp ../cube.o

Generated with cgit - Back to sebastiano.tronto.net