使用Delphi 11.0创建Linux程序编译错误

使用Delphi 11.0创建Linux程序进行编译时,遇到如下错误:
已安装:FmxLinux、TMS FNC Components、TMS FMX Components

[DCC Fatal Error] Project1.dpr(6): F2051 Unit FMX.Text was compiled with a different version of System.RegularExpressions.TRegExHelper

工程代码:
program Project1;

uses
System.StartUpCopy,
FMX.Forms,
Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

单元代码:
unit Unit1;

interface

uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.Controls.Presentation, FMX.StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.fmx}

end.

报错的意思:[DCC致命错误] 项目1.dpr(6):F2051单元FMX中的文本是用不同版本的System.RegularExpressions.TRegExHelper编译的
分析是:Delphi XE6中VCL中的错误
解题思路,参考链接:https://www.codenong.com/25555009/