mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
- removed all "islibrary:=false;" assignments from system unit
initialisation code, because that's a typed constant already initialised to that value and it interferes with a generic solution to set islibrary to true for libraries git-svn-id: trunk@12376 -
This commit is contained in:
parent
8445fb74bd
commit
d4d7b695c7
@ -365,7 +365,6 @@ end;
|
||||
|
||||
begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
SysResetFPU;
|
||||
if not(IsLibrary) then
|
||||
SysInitFPU;
|
||||
|
@ -350,7 +350,6 @@ var
|
||||
s : string;
|
||||
begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
StackLength := CheckInitialStkLen(InitialStkLen);
|
||||
StackBottom := Sptr - StackLength;
|
||||
|
||||
|
@ -305,7 +305,6 @@ end;
|
||||
|
||||
Begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
StackLength := CheckInitialStkLen(InitialStkLen);
|
||||
StackBottom := Sptr - StackLength;
|
||||
{ Set up signals handlers }
|
||||
|
@ -460,7 +460,6 @@ const
|
||||
FatalHeap: array [0..33] of char = 'FATAL: Cannot initialize heap!!'#13#10'$';
|
||||
|
||||
begin
|
||||
IsLibrary := FALSE;
|
||||
{Determine the operating system we are running on.}
|
||||
{$ASMMODE INTEL}
|
||||
asm
|
||||
|
@ -350,7 +350,6 @@ var
|
||||
s : string;
|
||||
begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
StackLength := CheckInitialStkLen(InitialStkLen);
|
||||
StackBottom := Sptr - StackLength;
|
||||
|
||||
|
@ -397,7 +397,6 @@ end;
|
||||
|
||||
begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
StackLength := CheckInitialStkLen(InitialStkLen);
|
||||
StackBottom := Sptr - StackLength;
|
||||
SysResetFPU;
|
||||
|
@ -476,7 +476,6 @@ Begin
|
||||
SysInitStdIO;
|
||||
|
||||
{Delphi Compatible}
|
||||
IsLibrary := FALSE;
|
||||
IsConsole := TRUE;
|
||||
ExitCode := 0;
|
||||
InitSystemThreads;
|
||||
|
@ -1086,8 +1086,6 @@ const
|
||||
{* ST: pointer;}
|
||||
{*}
|
||||
begin
|
||||
IsLibrary := FALSE;
|
||||
|
||||
{$IFDEF OS2EXCEPTIONS}
|
||||
(* asm
|
||||
{ allocate space for exception registration record }
|
||||
|
@ -218,7 +218,6 @@ end;
|
||||
|
||||
Begin
|
||||
IsConsole := TRUE;
|
||||
IsLibrary := FALSE;
|
||||
StackLength := CheckInitialStkLen(InitialStkLen);
|
||||
StackBottom := Sptr - StackLength;
|
||||
{ Set up signals handlers }
|
||||
|
@ -182,8 +182,6 @@ function Pascal_E32Main: Integer; cdecl; [public, alias: '_Pascal_E32Main'];
|
||||
var
|
||||
ST : pointer;
|
||||
begin
|
||||
IsLibrary := false;
|
||||
|
||||
PascalMain;
|
||||
|
||||
{ if we pass here there was no error }
|
||||
|
Loading…
Reference in New Issue
Block a user