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 Thanks.