From cb5d88c8f3813826dc5bfa2508bd86ace4613f62 Mon Sep 17 00:00:00 2001 From: Luke Bubar <43391582+lukerb52@users.noreply.github.com> Date: Mon, 19 Oct 2020 09:09:03 -0400 Subject: [PATCH] Add C++ support to compiler script. (#828) --- .local/bin/compiler | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/compiler b/.local/bin/compiler index 1892d5f..c56a25a 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -30,6 +30,7 @@ case "$ext" in [0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;; c) cc "$file" -o "$base" && "$base" ;; go) go run "$file" ;; + cpp) g++ "$file" -o "$base" && "$base" ;; h) sudo make install ;; m) octave "$file" ;; md) if [ -x "$(command -v lowdown)" ]; then