Closed xanderio closed 3 years ago
Currently the default makefile requires that the user has GCC installed on there system, this may not be the case of some Unix Platforms e.g. FreeBSD.
The best way to handle this it to use cc, which is the system c compiler. This is usually linked to gcc or clang.
cc
gcc
clang
I'll create a pull request that fixes this issue.
Currently the default makefile requires that the user has GCC installed on there system, this may not be the case of some Unix Platforms e.g. FreeBSD.
The best way to handle this it to use
cc
, which is the system c compiler. This is usually linked togcc
orclang
.I'll create a pull request that fixes this issue.