使用-T选项在Windows的Linux版上进行编译

时间:2019-06-19 09:35:57

标签: cross-platform freepascal

我正在尝试在Windows的Linux上编译最简单的helloworld应用程序:

program HelloWorld;
uses crt;
begin
    writeln('Hello, World!');
end. 

我已经检查了here给出的文件。

我正在将以下fpc命令与-Twin64选项一起使用,但是会出现错误:

$ fpc helloworld.pas -Twin64
Free Pascal Compiler version 3.0.0+dfsg-11+deb9u1 [2017/06/10] for x86_64
Copyright (c) 1993-2015 by Florian Klaempfl and others
Target OS: Win64 for x64
Compiling helloworld.pas
Fatal: Can't find unit system used by HelloWorld
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode

我正在Debian Stable Linux上为Free Pascal Compiler version 3.0.0工作。

问题出在哪里,如何解决?感谢您的帮助。

0 个答案:

没有答案