Changeset 60 for trunk/Target/UTargetC.pas
- Timestamp:
- Dec 3, 2014, 10:45:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetC.pas
r52 r60 31 31 Name := 'C'; 32 32 SourceExtension := '.c'; 33 CompiledExtension := '.exe';34 33 ImageIndex := 23; 35 34 Capabilities := [tcCompile, tcRun]; 36 35 {$IFDEF Windows} 37 36 CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe'; 37 CompiledExtension := '.exe'; 38 RunExtension := ''; 38 39 {$ENDIF} 39 40 {$IFDEF Linux} 40 41 CompilerPath := '/usr/bin/gcc'; 42 CompiledExtension := ''; 43 RunExtension := ''; 41 44 {$ENDIF} 42 45 end;
Note:
See TracChangeset
for help on using the changeset viewer.