pas2CTutorial.wiki
author Wuzzy
Sun, 27 Mar 2016 14:12:18 +0100
changeset 801 9f89aaa0af76
parent 543 0b430064fc8d
child 2012 f0d921e412b0
permissions -rw-r--r--
Theme: Update sd-music

#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}`