pas2CTutorial.wiki
author Wuzzy
Sun, 17 Jan 2016 12:55:30 +0000
changeset 757 0ac49c33cf3e
parent 543 0b430064fc8d
child 2012 f0d921e412b0
permissions -rw-r--r--
BuildingOnWindows: Add title, fix header levels

#labels Phase-Implementation
==Automatic==

Configure with `cmake -DBUILD_ENGINE_C=1` and then run `make`.

==Manual run==

Run from the `tools` folder
{{{
ghc -e pas2C \"hwengine\"" pas2c.hs
}}}

You can replace "hwengine" with any other module.

Every pas file will be converted to a .c/.h version in the `hedgewars` folder. In case no output is produced something has gone wrong.

Use `clang` to compile, `gcc` compatibility is not yet achieved. We are curious to hear about `icc` and `msvc` (not that we expect anything...)

==Development==
There are some special file that you need to know

  * project_files/hwc/rtl/fpcrtl.h - contains definitions of external functions defined inside custom pascal units (eg SDLh.pas);
  * hedgewars/pas2cSystem.pas - contains definitions of external functions defined outside our own pascal units (eg png and gl units, bundled with freepascal);
  * hedgewars/pas2cRedo.pas - contains definitions of internal fpc units (provided by the 'rtl') which get a fpcrtl_ prefix.

If you need to hide portions of code from pas2c just wrap it with `${IFNDEF PAS2C}...{$ENDIF}`