From 9e572eefbcd7a48fc57753aa830bce417c15b92a Mon Sep 17 00:00:00 2001 From: Hekuran Date: Tue, 6 Apr 2021 22:20:14 +0200 Subject: [PATCH] `compiler` using defaults by default mix with my own `compiler` --- .local/bin/compiler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/compiler b/.local/bin/compiler index 3be7aa70..3d268682 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -13,7 +13,7 @@ file=$(readlink -f "$1") dir=${file%/*} base="${file%.*}" ext="${file##*.}" -cc='tcc' # choose your prefered C compiler. Some options: tcc, gcc, clang, musl-clang, musl-gcc. `cc` is (a symlink) the system default. +cc='cc' # choose your prefered C compiler. Some options: tcc, gcc, clang, musl-clang, musl-gcc. `cc` is (a symlink) the system default. cd "$dir" || exit 1