Closed viatsko closed 7 years ago
Hmmm, so suggestion is to remove :build
? I think that people who have boost built with gcc are not getting it from bottles as by default boost is fitting for hhvm
:build
to install boost for building of source code (only), but these libraries always need hhvm. Apple does not provide boost-libs.
So it should be
depends_on "boost" => "c++11"
if I understand the Brew syntax correctly?
And same thing should be done to llvm?
In square [single element | brackets to denote] an array / use a string representation.
depends_on "llvm" => ["with-clang", "with-libcxx"]
depends_on "boost" => "c++11"
depends_on "llvm" => ["with-clang", "with-libcxx"]
depends_on "boost" => ["c++11"]
Okay, thank you for your tips, Denis! I owe you beer if you'll be in Amsterdam :+1:
I fixed this PR and created a separate PR for llvm.
Can you point me at the brew docs where it says what the c++11
modifier means? It's unclear to me that it means "must build with llvm", which is what we require here.
@jwatzman It's unclear to me that it means "must build with llvm", which is what we require here.
otool -L $(which hhvm)
ldd $(which hhvm)
Should fix #17