Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 OSX Lion 上安装 XHP,但遇到了随机分段错误。同一个程序有时会失败,有时会运行。即使是只导入 init.php 的程序。
<?php include 'xhp/php-lib/init.php'; $href = 'http://www.facebook.com'; echo <a href={$href}>Facebook</a>;
有时运行,有时失败
Segmentation fault: 11
这里有两个陷阱,XHP 不适用于预安装的 PHP,并且不能用最新的 XCode 5 编译,因为它缺少 gcc。
自制的救援!
brew tap brew tap josegonzalez/php brew install php55 brew tap homebrew/dupes brew install apple-gcc42 brew install -cc=gcc-4.2 php55-xhp