Changeset 43 for trunk/Target/UTarget.pas
- Timestamp:
- Feb 20, 2012, 7:50:23 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTarget.pas
r41 r43 372 372 try 373 373 Text := FTargetCode; 374 SaveToFile( CompiledFile);374 SaveToFile(UTF8Decode(CompiledFile)); 375 375 finally 376 376 Free; … … 399 399 try 400 400 Process := TProcess.Create(nil); 401 Process.CommandLine := LongFileName(ExecutorPath) + ' ' + LongFileName(CompiledFile); 401 if ExecutorPath <> '' then Process.CommandLine := LongFileName(ExecutorPath) + ' '; 402 Process.CommandLine := Process.CommandLine + LongFileName(CompiledFile); 402 403 Process.Options := [poWaitOnExit]; 403 404 Process.Execute;
Note:
See TracChangeset
for help on using the changeset viewer.