romgrk / fzy-lua-native

Luajit FFI bindings to FZY
118 stars 16 forks source link

Remove need for GCC from Makefile #6

Closed xanderio closed 3 years ago

xanderio commented 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.

I'll create a pull request that fixes this issue.