facebookarchive / pfff

Tools for code analysis, visualizations, or style-preserving source transformation.
http://github.com/facebook/pfff/wiki/Main
Other
2.44k stars 204 forks source link

Issue compiling within Homebrew formula #136

Closed molovo closed 8 years ago

molovo commented 8 years ago

I'm putting together a Homebrew formula to make this a bit easier to compile for everything. I'm having some issues with getting the binaries to compile within the Homebrew install environment. If anyone has any idea what's causing the issues I'd appreciate any input. I've raised an issue against the Homebrew repository containing the details.

aryx commented 8 years ago

It's the MAKEFLAGS=-j8 used by default in your environment. Can you use make -j1 as a short-term fix?

molovo commented 8 years ago

That's fixed it. Cheers @aryx