Ignore:
Timestamp:
Jan 14, 2022, 3:03:42 PM (2 years ago)
Author:
chronos
Message:
  • Modified: Use IFDEF UNIX instead of IFDEF LINUX.
  • Modified: Localized error message.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Target/UTargetFPC.pas

    r87 r124  
    3232  ImageIndex := 22;
    3333  Capabilities := [tcCompile, tcRun];
    34   {$IFDEF Linux}
     34  {$IFDEF WINDOWS}
     35  CompiledExtension := '.exe';
     36  CompilerPath := 'fpc.exe';
     37  RunExtension := '';
     38  {$ENDIF}
     39  {$IFDEF UNIX}
    3540  CompiledExtension := '';
    3641  CompilerPath := '/usr/bin/fpc';
    37   RunExtension := '';
    38   {$ENDIF}
    39   {$IFDEF Windows}
    40   CompiledExtension := '.exe';
    41   CompilerPath := 'fpc.exe';
    4242  RunExtension := '';
    4343  {$ENDIF}
Note: See TracChangeset for help on using the changeset viewer.