0

我尝试在 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
4

1 回答 1

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

于 2010-11-06T10:06:21.540 回答