Re: Bug compiling package freetype
Joel Rosdahl <[email protected]>
| Newsgroups | gmane.comp.compilers.ccache |
|---|---|
| Message-ID | <CAK8D=ph7Qkpmwi-k7QiT8bPb5OCNfUHju1WXdb3=UCgVLeBBgg@mail.gmail.com> |
Hi Giacomo, On 18 March 2013 15:30, Giacomo Comes <[email protected]> wrote: > I have found a bug in ccache as it fails to compile the package freetype. > [...] > make CC="ccache gcc" It looks like a bug in freetype's build system, not in ccache - you will get the same error if you run this: make CC=gcc If you let ccache masquerade as the compiler (see http://ccache.samba.org/manual.html#_run_modes), then it works fine (if you don't specify CC= to make, that is). It also seems like it works if you specify the compiler to configure: CC="ccache gcc" ./configure make -- Joel