SkillAgentSearch skills...

Pycket

A rudimentary Racket implementation using RPython

Install / Use

/learn @pycket/Pycket
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Build Status Tests with Racket Expander Tests with Pycket Expander

codecov.io license <img align="right" width="210" height="60" src="https://github.com/pycket/pycket/blob/master/pycket.png">

Slack channel IRC channel

Pycket is a Racket/Scheme implementation that is generated using the RPython framework. Given an interpreter written in RPython (in our case a CEK machine interpreter for Racket), RPython framework produces a fast binary for it. It can also add a tracing JIT.

Pycket has two major modes that are maintained and can be built by the targets: pycket-c, and pycket-c-linlets.

pycket-c is Pycket's original design, a rudimentary interpreter for Racket's #%kernel language that relies on the Racket binary to expand a given program. Naturally, this mode requires a Racket installation on the system.

pycket-c-linklet is the full-scale Racket implementation that uses the bootstrapping linklets to self-host Racket. This mode is more recently developed, and while it doesn't require a Racket binary, it requires Racket /src and /collects directories to load the full language.

See the Makefile targets section about how to build both versions.

Quick Links:

Building

Building Pycket means translating the interpreter (written in RPython) into a binary. You can use the make targets to translate Pycket. We recommend using the PyPy for translation, since it'll be much faster than CPython. If you don't have a pypy binary in your environment, then make targets will default to CPython.

You can clone and make the pypy with make make-pypy target. It will clone the latest pypy repo in Pycket's directory and will start making it. Note that it will take more than 2 hours to build the pypy. It will result in a binary created at pypy/pypy/goal/pypy, and you need to add it to your environment for Pycket's translation to use it.

Additionally, it helps to have the build dependencies of PyPy installed. On a Debian or Ubuntu system:

$ sudo apt-get build-dep pypy

To produce a Pycket executable, use one of the provided make targets to build the binary you need.

Make Targets

PyPy Stuff:

  • make clone-pypy : clones the latest pypy into Pycket's directory
  • make make-pypy : builds pypy, assumes that pypy directory exists in Pycket's directory

Building Pycket

  • make pycket-c : translates OLD Pycket with JIT

  • make pycket-c-linklets : translates NEW Pycket with JIT

  • make pycket-c-nojit : translates OLD Pycket without JIT (which may be a lot faster to translate but runs a lot lot slower)

  • make pycket-c-linklets-nojit : translates NEW Pycket without JIT (which may be a lot faster to translate but runs a lot lot slower)

  • make setup-old-pycket : installs the pycket-lang to Racket and runs update-pypy

  • make expander : generates the expander linklet (it assumes an unmodified Racket install and PLTHOME environment variable -- see the Environment Variables section below)

  • make setup-local-racket : if you don't have a Racket and don't want to deal with Racket related stuff, then run this to get a latest running Racket. Make sure to run export PLTHOME=`pwd`/ after it's done (see environment variables section).

Running Pycket

Bootstrapping Linklets

You'll need the bootstrapping linklets to self-host Racket. We ship them in Pycket repo, but just in case if you need to regenerate; assuming the Racket source is in place, just run the following to generate and retrieve them.

make bootstrap-linklets

Note that the io target there will also run make rktio which will pull the C headers and the librktio.a static library, as well as generate the whole rktio layer. If this stage fails, you may use --no-io-linklet flag on Pycket to omit using the io linklet entirely.

You can run with the -h option to see the different command line options for each versions:

$ ./pycket-c -h

$ ./pycket-c-linklets -h

You can run pycket-c like the racket binary:

$ ./pycket-c program.rkt

You can also run pycket under plain python (or pypy if its available), like this:

$ ./pycket-slow.sh program

Environment Variables

Running the interpreter on CPython or PyPy (i.e. running the targetpycket.py) requires a PYTHONPATH that includes both RPython (that should be the pypy directory cloned above) and pycket (that should be this directory).

You'll need PLTHOME to point to where Racket directory is, and the PLTCOLLECTS to point to the /collects dir.

If Racket is installed in a single directory (non-Unix-style) :

Then all environment variables need to point to this directory. For example,

PLTCOLLECTS=<dirpath>/racket/collects

If Racket is installed in Unix-style :

Then NEW Pycket needs to know the locations of various directories. In particular, it needs:

  • PLTEXECFILE to point to the location of the racket binary
  • PLTCOLLECTS to point to the collects directory for the main collections
  • PLTCONFIGDIR to point to Racket's etc directory that contains config.rktd
  • (optional) PLTADDONDIR to point to a directory for user-specific Racket configuration, packages, and extensions. It defaults to .racket in USERHOME.
  • (optional) PLTUSERHOME to point to the home directory of the user. It's optional since Pycket will also look at other environment variables to figure out the home directory (e.g. $HOME).

You can also use the command line options to provide these paths, e.g. -X, -G etc.. Run it with -h to see all the commands and options.

$ ./pycket-c-linklets -h

Also, the Makefile reacts to some variables:

  • PYPYPATH for when your pypy checkout is not in this directory. Defaults to pypy.
  • PYTEST for when you don’t want to use pypy’s version of pytest. Defaults to $(PYPYPATH)/pytest.py.
  • RPYTHON for when you want to use something other than the default rpython script, but you probably would not want that. Defaults to $(PYPYPATH)/rpython/bin/rpython --batch.

Testing Pycket

Now that Pycket has two different modes with options, we run the unit tests on each of those settings using the following targets:

  • make test to run the unit tests on OLD Pycket.
  • make test-new-with-expander to run the unit tests on NEW Pycket using the Racket's expander linklet.
  • make test-new-no-expander to run the unit tests on NEW Pycket without using the expander.

For the NEW Pycket, using the expander linklet means that for each test expression string we use the read and eval functions in that linklet to read and evaluate the test. If we're not using the expander, on the other hand, then we manually create a linklet containing the expression and instantiate it directly (mostly with an empty target) to get the result.

Using Compiled Files

The NEW Pycket is able to generate and use its own .zo files. For now both the generation and the use are manual.

To generate a .zo file for a .rkt source file, use make compile-file:

$ make compile-file FILE=$(PLTHOME)/racket/collects/racket/private/qq-and-or.rkt

The parameter that enables Racket expander to use compiled code is use-compiled-file-paths, which defaults to pycket-compiled in Pycket. Whenever a module is required, the expander will use the compiled code if it exists, otherwise it will use the source code of the module (read, expand, etc.).

pycket-repl> (#%require racket/private/qq-and-or)

Note that pycket-compiled is a folder that make compile-file is going to generate by itself.

Currently we have two make targets for working with compiled files:

$ make compile-racket-modules

will create .zo files for the predefined list of Racket modules (see compile-file-pycket.rkt).

$ make clean-compiled-files

will remove all the .zo files under the pycket-compiled directories in Racket libraries.

This is a work in progress. We plan to have a make target that compiles all the Racket modules automatically by following the module dependencies (as opposed to using a predefined list of modules with the respective paths).

REPL

One of the beautiful perks of bootstrapping Racket is to be able to run on Pykcet some interesting programs implemented in Racket (as long as we have enough runtime support for it in Pycket -- i.e. having the runtime primitives implemented in RPython).

The NEW Pycket now features an original Racket REPL that's implemented in Racket. Try it out!

$ ./pycket-c-linklets

You can make it more verbose with the --verbose flag if you're curious about what's going on in the background.

$ ./pycket-c-linklets --verbose

Also increase the verbosity level (defaults to 0).

$ ./pycket-c-linklets --verbose 1

Related Skills

View on GitHub
GitHub Stars275
CategoryDevelopment
Updated2d ago
Forks26

Languages

Python

Security Score

100/100

Audited on Apr 7, 2026

No findings