Changeset 124
- Timestamp:
- Jan 14, 2022, 3:03:42 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormOutput.pas
r112 r124 39 39 if OutputChanged then begin 40 40 OutputChanged := False; 41 {$IFDEF LINUX}41 {$IFDEF UNIX} 42 42 MemoOutput.Lines.Text := StringReplace(Output, #10#13, LineEnding, [rfReplaceAll]) 43 43 {$ELSE} -
trunk/Languages/LazFuck.cs.po
r122 r124 233 233 #: tformmemory.label6.caption 234 234 msgid "Memory:" 235 msgstr "PamÄÅ¥ "235 msgstr "PamÄÅ¥:" 236 236 237 237 #: tformmemory.listviewmemory.columns[0].caption … … 472 472 msgstr "Cesta pÅekladaÄe" 473 473 474 #: ubftarget.sunsupportedcommand 475 #, object-pascal-format 476 msgid "Unsupported command %d" 477 msgstr "NepodporovanÃœ pÅÃkaz %d" 478 474 479 #: uformcpu.sstepspersecond 475 480 msgid " steps/s" -
trunk/Languages/LazFuck.pot
r122 r124 462 462 msgstr "" 463 463 464 #: ubftarget.sunsupportedcommand 465 #, object-pascal-format 466 msgid "Unsupported command %d" 467 msgstr "" 468 464 469 #: uformcpu.sstepspersecond 465 470 msgid " steps/s" -
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'; -
trunk/UBFTarget.pas
r115 r124 63 63 implementation 64 64 65 resourcestring 66 SUnsupportedCommand = 'Unsupported command %d'; 67 65 68 { TMachineOperation } 66 69 … … 336 339 NewProgram[NewProgramIndex] := FProgram[FProgramIndex]; 337 340 end; 338 else raise Exception.Create(Format( 'Unsupported command %d', [FProgram[FProgramIndex].Command]));341 else raise Exception.Create(Format(SUnsupportedCommand, [FProgram[FProgramIndex].Command])); 339 342 end; 340 343 DebugSteps.UpdateTargetPos(FirstIndex, FProgramIndex, NewProgramIndex, NewTargetIndex); … … 440 443 end; 441 444 end; 442 else raise Exception.Create(Format( 'Unsupported command %d', [FProgram[FProgramIndex].Command]));445 else raise Exception.Create(Format(SUnsupportedCommand, [FProgram[FProgramIndex].Command])); 443 446 end; 444 447 DebugSteps.UpdateTargetPos(FirstIndex, FProgramIndex, NewProgramIndex, NewTextIndex); -
trunk/UCore.pas
r116 r124 70 70 begin 71 71 DataDir := ''; 72 {$IFDEF Linux}72 {$IFDEF UNIX} 73 73 // If installed in Linux system then use installation shared game directory for data files 74 74 if DirectoryExists(LinuxDataDir) then -
trunk/UTarget.pas
r114 r124 385 385 begin 386 386 Result := FileName; 387 {$IFDEF W indows}387 {$IFDEF WINDOWS} 388 388 Result := '"' + FileName + '"'; 389 389 {$ENDIF} 390 {$IFDEF Linux}390 {$IFDEF UNIX} 391 391 Result := StringReplace(FileName, ' ', '\ ', [rfReplaceAll]); 392 392 {$ENDIF}
Note:
See TracChangeset
for help on using the changeset viewer.