pyston / pyston_v1

The previous version of Pyston, a faster implementation of the Python programming language. Please use this link for the new repository:
https://github.com/pyston/pyston/
4.89k stars 289 forks source link

ccache is not optional to build the project #22

Closed QuantumBear closed 10 years ago

QuantumBear commented 10 years ago

I tried to build pyston in Ubuntu 12.04 and found that ccache is not optional but necessary to build LLVM.

I think content of docs/INSTALLING should be updated.

aknaton commented 10 years ago

I had the same problem, ccache is not optional in building LLVM

kmod commented 10 years ago

Sorry it's optional but enabled by default; just put ENABLE_CCACHE=0 in your Makefile.local. Currently the build system will rebuild everything any time you change the Makefile, which is overkill but nice for development, and ccache can make that a lot nicer.