Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CXX and CXXFLAGS are for g++ and this is a C project kbranigan#18
CXX = gcc is not a good idea because: 1/ We cannot override options like: make CC=clang-13 CFLAGS="-O2 -s -Wall -fPIC" -j8 2/ CXX is for g++ and overriding will fail compiling the project. 3/ CC is by default equals to cc (gcc)
- Loading branch information