compiler using defaults by default

mix with my own `compiler`
This commit is contained in:
Hekuran 2021-04-06 22:20:14 +02:00 committed by GitHub
parent f790f2cf2c
commit 9e572eefbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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