mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-21 02:09:36 +02:00
* proper feature handling for gba
* slinebreak shall be a real constant git-svn-id: trunk@19973 -
This commit is contained in:
parent
c8a7063602
commit
e0d7af703a
@ -2295,7 +2295,7 @@ begin
|
||||
{ Features }
|
||||
case target_info.system of
|
||||
system_arm_gba:
|
||||
target_unsup_features:=[f_threading,f_commandargs,f_fileio,f_textio,f_consoleio,f_dynlibs];
|
||||
target_unsup_features:=[f_dynlibs];
|
||||
system_arm_nds:
|
||||
target_unsup_features:=[f_threading,f_commandargs,f_fileio,f_textio,f_consoleio,f_dynlibs];
|
||||
system_i386_nativent:
|
||||
|
@ -19,11 +19,6 @@ interface
|
||||
{$define __ARM__}
|
||||
|
||||
{$define FPC_IS_SYSTEM}
|
||||
{$define FPC_HAS_FEATURE_THREADING}
|
||||
{$define FPC_HAS_FEATURE_CONSOLEIO}
|
||||
{$define FPC_HAS_FEATURE_COMMANDARGS}
|
||||
{$define FPC_HAS_FEATURE_TEXTIO}
|
||||
{$define FPC_HAS_FEATURE_FILEIO}
|
||||
|
||||
{$i systemh.inc}
|
||||
{$i gbabiosh.inc}
|
||||
@ -52,7 +47,7 @@ const
|
||||
MaxPathLen = 255;
|
||||
AllFilesMask = '*';
|
||||
|
||||
sLineBreak : string[1] = LineEnding;
|
||||
sLineBreak = LineEnding;
|
||||
DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsCRLF;
|
||||
|
||||
UnusedHandle = $ffff;
|
||||
@ -60,9 +55,6 @@ const
|
||||
StdOutputHandle = 1;
|
||||
StdErrorHandle = $ffff;
|
||||
|
||||
|
||||
|
||||
|
||||
var
|
||||
argc: LongInt = 0;
|
||||
argv: PPChar;
|
||||
|
Loading…
Reference in New Issue
Block a user