Changeset 124 for trunk/Target
- Timestamp:
- Jan 14, 2022, 3:03:42 PM (3 years ago)
- Location:
- trunk/Target
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTargetC.pas
r105 r124 35 35 ImageIndex := 23; 36 36 Capabilities := [tcCompile, tcRun]; 37 {$IFDEF W indows}37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'c:\Program Files\MinGW\bin\gcc.exe'; 39 39 CompiledExtension := '.exe'; 40 40 RunExtension := ''; 41 41 {$ENDIF} 42 {$IFDEF Linux}42 {$IFDEF UNIX} 43 43 CompilerPath := '/usr/bin/gcc'; 44 44 CompiledExtension := ''; -
trunk/Target/UTargetCSharp.pas
r90 r124 35 35 ImageIndex := 27; 36 36 Capabilities := [tcCompile, tcRun]; 37 {$IFDEF W indows}37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Roslyn\csc.exe'; 39 39 ExecutorPath := ''; 40 40 {$ENDIF} 41 {$IFDEF Linux}41 {$IFDEF UNIX} 42 42 CompilerPath := '/usr/bin/mcs'; 43 43 ExecutorPath := ''; -
trunk/Target/UTargetFPC.pas
r87 r124 32 32 ImageIndex := 22; 33 33 Capabilities := [tcCompile, tcRun]; 34 {$IFDEF Linux} 34 {$IFDEF WINDOWS} 35 CompiledExtension := '.exe'; 36 CompilerPath := 'fpc.exe'; 37 RunExtension := ''; 38 {$ENDIF} 39 {$IFDEF UNIX} 35 40 CompiledExtension := ''; 36 41 CompilerPath := '/usr/bin/fpc'; 37 RunExtension := '';38 {$ENDIF}39 {$IFDEF Windows}40 CompiledExtension := '.exe';41 CompilerPath := 'fpc.exe';42 42 RunExtension := ''; 43 43 {$ENDIF} -
trunk/Target/UTargetJava.pas
r96 r124 35 35 ImageIndex := 24; 36 36 Capabilities := [tcCompile, tcRun]; 37 {$IFDEF W indows}37 {$IFDEF WINDOWS} 38 38 CompilerPath := 'c:\Program Files\Java\bin\javac.exe'; 39 39 ExecutorPath := 'c:\Program Files\Java\bin\java.exe'; 40 40 {$ENDIF} 41 {$IFDEF Linux}41 {$IFDEF UNIX} 42 42 CompilerPath := '/usr/bin/javac'; 43 43 ExecutorPath := '/usr/bin/java'; -
trunk/Target/UTargetPHP.pas
r87 r124 35 35 ImageIndex := 21; 36 36 Capabilities := [tcCompile, tcRun]; 37 {$IFDEF W indows}37 {$IFDEF WINDOWS} 38 38 CompilerPath := ''; 39 39 ExecutorPath := 'c:\Program Files\PHP\php.exe'; 40 40 {$ENDIF} 41 {$IFDEF Linux}41 {$IFDEF UNIX} 42 42 CompilerPath := ''; 43 43 ExecutorPath := '/usr/bin/php'; -
trunk/Target/UTargetPython.pas
r87 r124 35 35 ImageIndex := 26; 36 36 Capabilities := [tcCompile, tcRun]; 37 {$IFDEF W indows}37 {$IFDEF WINDOWS} 38 38 CompilerPath := ''; 39 39 ExecutorPath := 'c:\Program Files\Python\python.exe'; 40 40 {$ENDIF} 41 {$IFDEF Linux}41 {$IFDEF UNIX} 42 42 CompilerPath := ''; 43 43 ExecutorPath := '/usr/bin/python';
Note:
See TracChangeset
for help on using the changeset viewer.