Changeset 146 for trunk/Target
- Timestamp:
- Jun 5, 2023, 6:57:23 PM (18 months ago)
- Location:
- trunk/Target
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/TargetC.pas
r145 r146 35 35 {$IFDEF WINDOWS} 36 36 CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe'; 37 CompiledExtension := '.exe';38 RunExtension := '';37 FCompiledExtension := '.exe'; 38 FRunExtension := ''; 39 39 {$ENDIF} 40 40 {$IFDEF UNIX} -
trunk/Target/TargetDelphi.pas
r145 r146 32 32 {$IFDEF Windows} 33 33 CompilerPath := 'c:\Program Files\Embarcadero\RAD Studio\9.0\bin\DCC32.EXE'; 34 CompiledExtension := '.exe';35 RunExtension := '';34 FCompiledExtension := '.exe'; 35 FRunExtension := ''; 36 36 {$ENDIF} 37 37 end; -
trunk/Target/TargetFPC.pas
r145 r146 31 31 FCapabilities := [tcCompile, tcRun]; 32 32 {$IFDEF WINDOWS} 33 CompiledExtension := '.exe';33 FCompiledExtension := '.exe'; 34 34 CompilerPath := 'fpc.exe'; 35 RunExtension := '';35 FRunExtension := ''; 36 36 {$ENDIF} 37 37 {$IFDEF UNIX}
Note:
See TracChangeset
for help on using the changeset viewer.