KLayout Main Sources
Go to file
Matthias Koefferlein e6ff30adee Modifying definition of Timer#memory_size on Linux to become resident size. 2025-03-23 18:46:15 +01:00
.github Maybe fixing Github action 2025-03-14 01:29:49 +01:00
ci-scripts
etc
macbuild Use Ruby 3.3.7 from MacPorts 2025-03-07 06:51:21 +09:00
samples/lvs
scripts More patches 2025-02-16 22:38:29 +01:00
src Modifying definition of Timer#memory_size on Linux to become resident size. 2025-03-23 18:46:15 +01:00
testdata New golden testdata for MSYS2 2025-03-23 18:14:44 +01:00
.gitignore
.travis.yml
CONTRIB
COPYRIGHT Preparations for 0.29.12. 2025-03-02 22:17:43 +01:00
Changelog Updating Changelog. 2025-03-23 18:09:40 +01:00
Changelog.Debian Preparations for 0.30. 2025-03-21 23:52:08 +01:00
Changelog.Debian.templ
Jenkinsfile
Jenkinsfile-linux
Jenkinsfile-msvc2017
Jenkinsfile-publish-doc
Jenkinsfile-publish-sources
Jenkinsfile-pypi
LICENSE
MANIFEST.in
Makefile
README.md
azure-pipelines.yml Pinning setuptools to <76.0.0 for now as this version is broken for MSVC 2025-03-14 01:12:13 +01:00
build.bat
build.sh Updating copyright to 2025 2025-01-04 19:32:33 +01:00
build4mac.py
cibw_constraints.txt
dropbox-deployment.yml
makeDMG4mac.py
pyproject.toml Skipping Python 3.6 and 3.7 in PyPI builds to avoid disk overflow on GitHub runners 2024-10-25 08:04:31 +02:00
setup.py Updating copyright to 2025 2025-01-04 19:32:33 +01:00
travis-build.sh
version.sh Preparations for 0.29.12. 2025-03-02 22:17:43 +01:00

README.md

klayout

This repository will hold the main sources for the KLayout project.

Plugins can be included into the "plugins" directory from external sources.

For more details see http://www.klayout.org.

Building requirements

Building on Linux:

  • Qt 4.7 or later (4.6 with some restrictions), Qt 5 or Qt 6
  • gcc 4.6 or later or clang 3.8 or later

Building on Windows with MSYS2:

  • MSYS2 with gcc, Qt4, 5 or 6, zlib, ruby and python packages installed

Building on Windows with MSVC 2017:

  • MSVC 2017
  • Build requisites from klayout-kit

For more build instructions see http://www.klayout.de/build.html.

Build options

  • Ruby: with this option, Ruby scripts can be executed and developped within KLayout. Ruby support is detected automatically by the build script.
  • Python: with this option, Python scripts can be executed and developped within KLayout. Python support is detected automatically by the build script.
  • Qt binding: with this option, Qt objects are made available to Ruby and Python scripts. Qt bindings are enabled by default. Qt binding offers an option to create custom user interfaces from scripts and to interact with KLayout's main GUI. On the other hand, they provide a considerable overhead when building and running the application.
  • 64 bit coordinate support: with this option, the coordinate type used internally is extended to 64bit as compared to 32bit in the standard version. This will duplicate memory requirements for coordinate lists, but allow a larger design space. 64bit coordinate support is experimental and disabled by default.

Building instructions (Linux)

Plain building for Qt4, Qt5 and Qt6 (one Qt version installed)

./build.sh

Building without Qt binding

./build.sh -without-qtbinding

Debug build

./build.sh -debug

Building with a particular Ruby version

./build.sh -ruby <path-to-ruby>

(path-to-ruby is the full path of the particular ruby interpreter)

Building with a particular Python version

./build.sh -python <path-to-python>

(path-to-python is the full path of the particular python interpreter)

Building with a particular Qt version

./build.sh -qmake <path-to-qmake>

(path-to-qmake is the full path of the particular qmake installation)

Building with 64bit coordinate support (experimental)

./build.sh -with-64bit-coord

Pass make options

./build.sh -j4

(for running 4 jobs in parallel)

More options

For more options use

./build.sh -h

Running the Test Suite (Linux)

Go to the build directory (i.e. "bin-release") and enter

export TESTTMP=testtmp    # path to a directory that will hold temporary data (will be created)
export TESTSRC=..         # path to the source directory
./ut_runner

For more options use

./ut_runner -h

Build instructions (Windows, MSYS2)

From the MSYS2 MinGW bash (32 bit or 64 bit) use the same commands as for Linux to build the binaries.

Build instructions (Windows, MSVC 2017)

The combination supported and tested was Qt 5.11/MSVC 2017 64bit. It's sufficient to install the build tools from MSVC's community edition.

A build script similar to build.sh is provided for Windows (build.bat).

For details about this build script use

build.bat -h

For MSVC builds a number of third party libraries are required:

  • Ruby
  • Python
  • zlib
  • expat
  • curl
  • pthread-win

The "klayout-bits4msvc2017" project (https://github.com/klayoutmatthias/klayout_bits4msvc2017) targets towards providing a binary distribution for this purpose. See the release notes there for download links. Download the .zip archive from there and unpack it to some folder, e.g. "c:\klayout-bits".

The build script needs the path to this package. "qmake" and (for obtaining the build version) "git" should be in the path. If qmake is not in the path, you can use "build.bat -qmake ..." to specify qmake's path.

Here is an example for the build.bat call:

build.bat -bits c:\klayout-bits

The 3rd party bits kit can also be used to build the Python standalone package on setuptools. Specify the full path to the 3rd party package up to the compiler and architecture. On 64bit with the bits package installed in "c:\klayout-bits" the build call is this:

set KLAYOUT_BITS=c:\klayout-bits\msvc2017\x64
python setup.py build