On Fri, 2007-08-10 at 09:39 +0700, zen wrote: > Alex Rousskov wrote: > > >Just go ahead and cut-and-paste those commands into your shell, starting > >from the top Squid source directory. The last command may produce some > >output. You do not need to cut-and-paste comments (lines starting with > >'#'). > > > >The first command places you into Squid's lib directory. The second > >precompiles MemPool.cc into MemPool.E using g++. The third searches for > >mallopt in that precompiled file. > > > core# g++ -DHAVE_CONFIG_H -I. -I. -I../include -I../include > -I../include > -Werror -Wall -Wpointer-arith -Wwrite-strings -Wcomments -D_REENTRANT > -g -O2 -MT MemPool.o -MD -MP -MF ".deps/MemPool.Tpo"-E -o MemPool.E > MemPool.cc I think the above command failed because I (or you) missed a space before the -E option: ... ".deps/MemPool.Tpo" -E -o MemPool.E MemPool.cc Alex.