> On 8 сент. 2015 г., at 17:26, Dmitry Sivachenko <[email protected]> wrote: > > Hello, > > Can you please apply the following patch to contrib/halog/Makefile not to > override $CC (on some systems compiler is called "cc", not "gcc"): > > --- Makefile.orig 2015-09-08 17:15:37.423168000 +0300 > +++ Makefile 2015-09-08 17:14:57.938196000 +0300 > @@ -1,7 +1,7 @@ > EBTREE_DIR = ../../ebtree > INCLUDE = -I../../include -I$(EBTREE_DIR) > > -CC = gcc > +CC ?= gcc > > # note: it is recommended to also add -fomit-frame-pointer on i386 > OPTIMIZE = -O3 >
Oh, please forget this: the same CC is used in all makefiles, it is simpler to redefine CC in make invocation. Sorry for the noise.

