The Pascal to Javascript transpiler of the FPC projects.
Go to file
2022-02-19 14:09:04 +01:00
compiler@9f4217d8b3 updated submodule compiler 2022-02-19 14:09:04 +01:00
demo Merge branch 'main' of ssh://gitlab.com/freepascal.org/fpc/pas2js into main 2022-02-13 10:18:48 +01:00
packages rtl: less hints 2022-02-14 20:42:58 +01:00
scripts build script: clean up 2019-05-21 15:11:28 +00:00
test * Fix streaming of chars outside ASCII range 2021-09-12 11:21:09 +02:00
tools/html2form * Updates and loading config from file 2022-02-06 12:52:10 +01:00
utils updated createconfig.pp 2019-03-03 13:50:24 +00:00
.gitignore demo: wasi canvas: added gitignore, wasm lpi, css 2021-12-28 13:25:12 +01:00
.gitmodules * Switch to different branch 2022-02-16 18:46:39 +01:00
fpmake.pp * Patch from Alfred to fix compilation with older FPC 2021-12-21 14:29:05 +01:00
Makefile fixed make for fpc 3.0.4 2018-06-03 12:42:31 +00:00
Makefile.fpc * Correct chmod command 2017-12-30 12:24:33 +00:00
README.md readme: clean up 2021-08-09 18:56:27 +02:00

Welcome to pas2js

Pas2js is an open source Pascal to JavaScript transpiler. It parses Object Pascal and emits JavaScript.

Official site: http://wiki.freepascal.org/pas2js

Directories

  • packages - source files needed to compile pas2js programs
  • demo - examples
  • bin - output folder for binaries, e.g. pas2js.exe
  • compiler - source files to compile the compiler. This is an external submodule link.
  • units - output folder of compiler ppu/o files
  • utils - utilities

Building

Compiler

You need to install the Free Pascal compiler (fpc), 3.2.0 or better, 32 or 64bit. Either from their website

https://www.freepascal.org/download.html

Or via Lazarus

http://wiki.freepascal.org/Getting_Lazarus

Or on MacOS via homebrew. On Linux this can be done via your package manager as well if it has the latest version.

building pas2js

Complete checkout

The makefile expects the sources of FPC to be present under the compiler directory. You can copy these sources there, or make a symlink to the sources.

The git repository contains a submodule link to the FPC sources. You can use this to have an automatically correct version of fpc

When you do a git clone, make sure you also specify the --recurse-submodules option:

git clone --recurse-submodules https://gitlab.com/freepascal.org/fpc/pas2js.git

If you didn't do this, issue the init and update commands:

git submodule init

and update:

git submodule update

This will have the same effect as when you do a --recurse-submodules.

After doing a git pull, you must also update the submodule:

git submodule update --init --recursive

This will pull any upstream changes to the FPC repository.

Under Linux/macOS

type the following command:

make all

This creates with a 64-bit fpc the executable bin/x86_64-linux/pas2js and a basic config file bin/x86_64-linux/pas2js.cfg.

Under Windows

Make sure that you use the make.exe from fpc, not the one from Delphi by setting the PATH: For example if you installed the 32-bit version of fpc in C:\YourPathOfFPC\3.2.0:

set PATH=C:\YourPathOfFPC\3.0.4\bin\i386-win32;%PATH%

If you installed the 64-bit version of fpc in C:\YourPathOfFPC\3.2.0 use

set PATH=C:\YourPathOfFPC\3.0.4\bin\x86-64-win64;%PATH%

Then compile make all

If you see "Error makefile ... Command syntax error" your "set PATH" was not correct.

When make all has succesfully finished it created with a 32-bit fpc the executable bin/i386-win32/pas2js.exe and a basic config file bin/i386-win32/pas2js.cfg.

Configuration

pas2js requires unit search paths (-Fu) in order to find its rtl units and rtl.js. Building and installing should have created a default pas2js.cfg containing those parameters.

http://wiki.freepascal.org/pas2js.cfg