如何安装 freepascal +拉撒路在开放的Solaris 吗?
我尝试在开放的Solaris上安装fpc,这样做:
svn checkout http://svn.freepascal.org/svn/fpc/branches/fixes_2_4 fpcfixes2_4
cd fpcfixes2_4
gmake clean all install INSTALL_PREFIX=~
如下所述:http://wiki.lazarus。 freepascal.org/Getting_Lazarus#Building_and_installing_Free_Pascal_in_UNIXe
但是我收到此错误:
gmake: -iVSPTPSOTO: Command not found
gmake: -iSP: Command not found
gmake: -iTP: Command not found
gmake: -iSO: Command not found
gmake: -iTO: Command not found
/usr/xpg4/bin/rm -f build-stamp.*
/usr/xpg4/bin/rm -f base.build-stamp.*
gmake compiler_cycle RELEASE=1
gmake[1]: -iVSPTPSOTO: Command not found
gmake[1]: Entering directory `/home/jill/basura/fpcfixes2_4'
gmake[1]: -iSP: Command not found
gmake[1]: -iTP: Command not found
gmake[1]: -iSO: Command not found
gmake[1]: -iTO: Command not found
I try to install fpc on open solaris doing this:
svn checkout http://svn.freepascal.org/svn/fpc/branches/fixes_2_4 fpcfixes2_4
cd fpcfixes2_4
gmake clean all install INSTALL_PREFIX=~
As described here: http://wiki.lazarus.freepascal.org/Getting_Lazarus#Building_and_installing_Free_Pascal_in_UNIXe
However I get this error:
gmake: -iVSPTPSOTO: Command not found
gmake: -iSP: Command not found
gmake: -iTP: Command not found
gmake: -iSO: Command not found
gmake: -iTO: Command not found
/usr/xpg4/bin/rm -f build-stamp.*
/usr/xpg4/bin/rm -f base.build-stamp.*
gmake compiler_cycle RELEASE=1
gmake[1]: -iVSPTPSOTO: Command not found
gmake[1]: Entering directory `/home/jill/basura/fpcfixes2_4'
gmake[1]: -iSP: Command not found
gmake[1]: -iTP: Command not found
gmake[1]: -iSO: Command not found
gmake[1]: -iTO: Command not found
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Free Pascal 编译器是在 Free Pascal 上编写的。这意味着您需要现有的 Free Pascal 编译器二进制文件来编译新版本。
虽然 svn trunk 至少支持 Solaris/SPARC 和 Solaris/i386(我不确定 x86_64),但我们目前不提供任何二进制文件,因为我们没有这些平台的真正维护者。另外,我认为修复分支中仅支持 Solaris/SPARC。
由于 Solaris 没有可用的二进制引导编译器,因此您必须在另一个平台上交叉编译初始版本。请参阅 http://www.stack.nl/~marcov/buildfaq.pdf更多信息。
The Free Pascal Compiler is written on Free Pascal. This means that you need an existing Free Pascal Compiler binary to compile a new version.
While at least Solaris/SPARC and Solaris/i386 are supported in svn trunk (I'm not sure about x86_64), we currently don't offer any binaries because we have no real maintainers for these platforms. Also, I think that only Solaris/SPARC is supported in the fixes branch.
Since there is no binary bootstrap compiler available for Solaris, you'd have to cross-compile the initial version on another platform. See http://www.stack.nl/~marcov/buildfaq.pdf for more information.