view lang/pypy3/README @ 206:7f8d6a19c404

Rename port options regarding translation: they now have all a TRANS_ prefix. This is to remove possible clashes with other PYTHON-related port options and variables.
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 14 Mar 2025 01:16:50 +0100
parents aa93453cd531
children fccf5077df78
line wrap: on
line source


Notes on how to build
=====================

Dependencies
------------

Erst einmal PyPy(2) samt Installation

Dann noch:

  pkg install lzma db5

Da gdbm mit dabei ist, das entsprechende Paket auch installieren:

  pkg install gdbm


PyPy3
-----

Konfiguration: das bereits installierte PyPy(2) nehmen zum schnelleren
Übersetzen:

    make config
    make build
    make package

Installieren

Import prüfen wie bei PyPy(2) und zusätzlich:

    import lzma
    import dbm
    import _gdbm
    import dbm.gnu
    import _dbm
    import dbm.ndbm


pypy3-sqlite3 und pypy3-tkinter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Mit den unterstützten FLAVORs bauen:

  z.B. "make FLAVOR=pypy310 package" oder "make FLAVOR=pypy311 package"