我尝试在open 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
答案 0 :(得分:1)
Free Pascal编译器是用Free Pascal编写的。这意味着您需要一个现有的Free Pascal Compiler二进制文件来编译新版本。
虽然svn trunk中至少支持Solaris / SPARC和Solaris / i386(我不确定x86_64),但我们目前不提供任何二进制文件,因为我们没有这些平台的真正维护者。另外,我认为修复分支只支持Solaris / SPARC。
由于Solaris没有可用的二进制引导编译器,因此您必须在另一个平台上交叉编译初始版本。有关详细信息,请参阅http://www.stack.nl/~marcov/buildfaq.pdf。