Changeset 133 for trunk/Target/UTargetC.pas
- Timestamp:
- Mar 4, 2022, 10:57:08 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetC.pas
r126 r133 31 31 begin 32 32 inherited; 33 Name := 'C';34 SourceExtension := '.c';35 ImageIndex := 23;36 Capabilities := [tcCompile, tcRun];33 FName := 'C'; 34 FSourceExtension := '.c'; 35 FImageIndex := 23; 36 FCapabilities := [tcCompile, tcRun]; 37 37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe'; … … 42 42 {$IFDEF UNIX} 43 43 CompilerPath := '/usr/bin/gcc'; 44 CompiledExtension := '';45 RunExtension := '';44 FCompiledExtension := ''; 45 FRunExtension := ''; 46 46 {$ENDIF} 47 47 end;
Note:
See TracChangeset
for help on using the changeset viewer.