Download And BuildDownload current versionDownload packages for the current versions from these links. You find download links for other versions here.
Development Snapshot
A snapshot of the current development code base (last update 2012-01-22) can be obtained here: Packaged Release for WindowsFor the Windows platform, a zip archive is provided that contains all the required executables and DLL's. A description how to actually build KLayout on Windows using MinGW and Visual Studio 2010 can be found below. Starting with version 0.15, an installer executable is provided as well. To install KLayout using the installer, download the executable and execute it. It will install the binaries at the target location, which can be selected in the installer user interface. In addition, it will create three KLayout shortcuts in the "Programs" section of the start menu. It will also register itself as handler for file types ".gds" and ".oas". If the installer is executed from a normal user account, it will install itself for that user only. No particular rights are required in this case. If started with administrator rights, it will install itself for all users. Building on MacOSFor building the executable on MacOS 10.5.7, the "mac-leopard-gcc-release" platform is provided. The build is based on the Xcode installation. This build script call was used successfully with Qt 4.5.2 from the Xcode package:
./build.sh -platform mac-leopard-gcc-release \
-qtbin /Developer/Tools/Qt \
-qtlib /usr/lib \
-rblib /usr/lib/libruby.dylib \
-rbinc /usr/lib/ruby/1.8/universal-darwin9.0
On MacOS 10.6 this build script call was used successfully (Qt library is qt-mac-cocoa-opensource-4.6.2.dmg):
./build.sh -platform mac-leopard-gcc-release \
-qtbin /Developer/Tools/Qt \
-qtlib /usr/lib \
-rblib /usr/lib/libruby.dylib \
-rbinc /usr/lib/ruby/1.8/universal-darwin10.0
Apparently, both 32 and 64 bit versions of Qt must be installed. Building KLayout on UnixSystem Requirements:
To build, the simplest way is to use the build.sh wrapper script provided. Unpack the tarkit, change to the directory created and type ./build.sh If the script complains about missing tools are libraries, the Qt installation needs to be specified. There are basically two ways: either a Qt package was configured or installed using the environment provided by TrollTech, or the system provides a Qt4 installtion itself. In the first case, the actual Qt installation path can be specified with the -qt option: i.e. ./build.sh -qt ~/qt will locate the Qt include files in ~/qt/include, the Qt library in ~/qt/lib. The installation path is the prefix that was specified on Qt's configure command line. On LSB (Linux Standard Base) systems, the Qt4 library can be optionally installed. It is common to have different installation directories for include and library files. On Ubuntu 6.10 with Qt4 for example, the libraries are located in "/usr/lib", the development tools like "uic" are installed in "/usr/bin" and the include files reside in "/usr/include/qt4". In this case, use: ./build.sh -qtbin /usr/bin -qtlib /usr/lib -qtinc /usr/include/qt4 Since the above settings are the default, this is equivalent to specifying nothing as shown above. The build script does not determine the platform to build upon. By default, 32 bit Linux and "gcc" is configured as the build platform. To build for an other platform, use ./build.sh -platform <platform> The platforms and build variants available are listed with ./build.sh -help The build script will create the final executable in ./bin.<platform>/klayout To integrate other build variants, a new file can be created in the "config" subdirectory. This is a partial Makefile that defined the variables specific for a certain build. To enable Ruby script automation capabilities (RBA), the Ruby library and path to the Ruby headers must be specified for the build script: build.sh -rblib <ruby library path> -rbinc <ruby headers location> For example: build.sh -rblib /usr/lib/libruby1.8.so -rbinc /usr/lib/ruby/1.8/i486-linux For more details about RBA, see RBA introduction. Building KLayout for Windows 32 bit with MinGWStarting with version 0.21, a build setup is provided for MinGW with the gcc. A good starting point for the MinGW build is the Qt SDK which comes with a Qt reaily built for MinGW and the gcc compiler suite. To enable Ruby support, the Ruby interpreter, preferably version 1.9 is required. A strange fact with building Ruby 1.9 is that one needs a Ruby interpreter to build it. One possible solution is first to build a 1.8 version, put the executable into the path and then run the Ruby build from the MinGW console. To build KLayout on MinGW, simply open the MinGW shell (MSYS), unpack the KLayout source package and cd to the destination folder. Then use build.sh as on Linux. For example, if the Qt SDK was installed in "c:\Qt\2010.04", the build script call is build.sh -qt /c/Qt/2010.04/qt For ruby support use the -rblib and -rbinc options accordingly to specify the ruby installation path. Building KLayout for Windows 32 bit and 64 bit with Visual StudioStarting with version 0.21, a Visual Studio solution is included in the source branch of KLayout's source tarkit ("klayout.sln"). The solution is provided for Visual Studio 2010. To build KLayout with Visual Studio, the following requirements must be fulfilled:
Before building KLayout, it is required to set the following environment variables:
After this preparation, KLayout can be build from Visual Studio using the "Win32" platform for 32 bit and "x64" platform for 64 bit. The configurations provided are:
All Downloads
|