我正在尝试在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
工作。
问题出在哪里,如何解决?感谢您的帮助。