Difference between revisions of "InstantFPC"

From Lazarus wiki
Jump to navigationJump to search
Line 58: Line 58:
  
 
* Changes to the compiler or installed units are not checked. If you install a new compiler you should clean the cache (e.g. delete the directory ~/.cache/instantfpc).
 
* Changes to the compiler or installed units are not checked. If you install a new compiler you should clean the cache (e.g. delete the directory ~/.cache/instantfpc).
 +
 +
=Alternatives=
 +
 +
The following trick works in the ''bash''. Put the program into a file ''fpc_script.sh'':
 +
 +
<Delphi>
 +
// 2>/dev/null; fpc fpc_script.pp &> build.log && exec ./fpc_script "$@" || cat build.log; exit
 +
begin
 +
  writeln('');
 +
end.
 +
</Delphi>

Revision as of 18:50, 27 March 2011

Overview

This tool allows to run pascal program like scripts under Linux, BSD and OS X. For example:

<Delphi>

  1. !/usr/bin/env instantfpc

begin

 writeln('Hello fpc user');

end. </Delphi>

Save the file as hello.pas, set the permission to execute and run it:

[]$ chmod a+x hello.pas
[]$ ./hello.pas
Hello fpc user

Download

From svn

svn co https://lazarus-ccr.svn.sourceforge.net/svnroot/lazarus-ccr/applications/instantfpc instantfpc

Installation

  1. Compile the instantfpc.lpi with Lazarus or lazbuild. Or compile directly with fpc instantfpc.lpr.
  2. Put the executable into PATH, for example /usr/bin:
sudo cp instantfpc /usr/bin/

How it works

It uses a cache directory to compile. Default is $HOME/.cache/instantfpc. If HOME is not set it gives an error. You can override the directory by setting the environment variable INSTANTFPCCACHE. It compares the source with the stored file in cache and if it differs compiles the source, given the parameters in the shebang line (the first line of the script after #!). After successful compile it executes the program. If compilation fails it writes the fpc output to stdout.

Parameters

  • -v: Print current version and exit
  • --get-cache: Print current cache directory and exit
  • -h: print help and exit
  • -B: always compile even if cache is valid.

Passing parameters to the compiler

Compiler parameters can be passed in the shebang line:

<Delphi>

  1. !/usr/bin/env instantfpc -O1 -Ci

begin end. </Delphi>

Editing in Lazarus

Since Lazarus 0.9.31 the IDE ignores the shebang line. You get all the normal code features.

Bugs / ToDos

  • Changes to the compiler or installed units are not checked. If you install a new compiler you should clean the cache (e.g. delete the directory ~/.cache/instantfpc).

Alternatives

The following trick works in the bash. Put the program into a file fpc_script.sh:

<Delphi> // 2>/dev/null; fpc fpc_script.pp &> build.log && exec ./fpc_script "$@" || cat build.log; exit begin

 writeln();

end. </Delphi>