![](https://secure.gravatar.com/avatar/fb2f64771d105d650379b07cbd83f312.jpg?s=120&d=mm&r=g)
1 Sep
2004
1 Sep
'04
2:15 p.m.
Hi,
A work collegue of mine brought to my attention that building tcl fails when using ccache, and I realized that the error is quite simple (not to say stupid ;-)); ccache comes with wrappers for gcc and g++ which just call 'ccache gcc $*' or 'ccache g++ $*'. Unfortunately this creates a problem when the Makefile calls the wrapper like this: ccache-gcc [...] -DTCL_WIDE_INT_TYPE=long\ long
I might be wrong, but wouldn't changing $* to "$@" (notice the quotes) fix the problem? I had a similar problem with soapbox before. // Jukka