You've already forked lazarus-ccr
jvcllaz: Modify PascalInterpreter package such that compilation of all packages at 64-bit is not aborted any more.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7594 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -179,7 +179,16 @@ unit JvInterpreter;
|
||||
|
||||
{.$DEFINE JvInterpreter_DEBUG}
|
||||
|
||||
{$IFDEF CPUX64}THIS PACKAGE WAS NOT PORTED FOR 64-bit CPU{$ENDIF}
|
||||
//{$IFDEF CPUX64}THIS PACKAGE WAS NOT PORTED FOR 64-bit CPU{$ENDIF}
|
||||
|
||||
{$IFDEF CPU64}
|
||||
{$warning This package cannot be used for CPU64 and is omitted.}
|
||||
interface
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
{$ELSE}
|
||||
|
||||
interface
|
||||
|
||||
@ -8752,3 +8761,4 @@ finalization
|
||||
Finit;
|
||||
|
||||
end.
|
||||
{$ENDIF}
|
||||
|
@ -53,6 +53,13 @@ unit JvInterpreterFm;
|
||||
|
||||
{$mode Delphi}
|
||||
|
||||
{$IFDEF CPU64}
|
||||
|
||||
interface
|
||||
implementation
|
||||
end.
|
||||
|
||||
{$ELSE}
|
||||
interface
|
||||
|
||||
uses
|
||||
@ -734,3 +741,4 @@ begin
|
||||
end;
|
||||
|
||||
end.
|
||||
{$ENDIF}
|
||||
|
@ -35,6 +35,14 @@ unit JvInterpreterParser;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
{$IFDEF CPU64}
|
||||
|
||||
interface
|
||||
implementation
|
||||
end.
|
||||
|
||||
{$ELSE}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
@ -790,3 +798,4 @@ end;
|
||||
|
||||
|
||||
end.
|
||||
{$ENDIF}
|
||||
|
Reference in New Issue
Block a user