2022-05-05 22:01:40 +02:00
Relevant KLayout version: 0.27.9< br >
2021-11-15 22:38:47 +01:00
Author: Kazzz-S< br >
2022-05-10 20:25:30 +02:00
Last modified: 2022-05-08< br >
2018-01-08 08:57:56 +01:00
2018-01-08 14:42:49 +01:00
# 1. Introduction
2022-05-05 22:01:40 +02:00
This directory ** `macbuild` ** contains different files required for building KLayout (http://www.klayout.de/) version 0.27.9 or later for different 64-bit macOS, including:
2021-11-15 22:38:47 +01:00
* Catalina (10.15.7) : the primary development environment
* Big Sur (11.x) : experimental; Apple M1 chip is not tested since the author does not own an M1 Mac
* Monterey (12.x) : -- ditto --
Building KLayout for the previous operating systems listed below should still be possible. < br >
However, they are not actively supported, and DMG packages for them are not provided.
2019-12-22 12:15:53 +01:00
* Mojave (10.14)
2021-11-15 22:38:47 +01:00
* High Sierra (10.13)
* Sierra (10.12)
* El Capitan (10.11)
Throughout this document, the primary target machine is **Intel x86_64** with **macOS Catalina** .< br >
A ** ((Notes))** marker indicates special notes for specific operating systems.
2018-01-08 08:57:56 +01:00
2021-11-27 04:05:27 +01:00
# 2. Qt6/Qt5 Frameworks
By default, the Qt framework is "Qt6" from Homebrew (https://brew.sh/), which is usually located under:
2018-01-08 08:57:56 +01:00
```
2021-11-27 04:05:27 +01:00
/usr/local/opt/qt@6/
2018-01-08 08:57:56 +01:00
```
2021-11-27 04:05:27 +01:00
"Qt5" is usually located under:
2018-03-19 07:51:15 +01:00
```
2021-11-15 22:38:47 +01:00
/usr/local/opt/qt@5/
2021-11-27 04:05:27 +01:00
```
Alternatively, you can use "Qt6" from MacPorts (https://www.macports.org/), which is usually located under:
```
/opt/local/libexec/qt6/
```
**((Notes))** As of 2021-11-27, MacPorts' Qt6 does not provide `qt6-qtmultimedia` , which causes a build error!!!
"Qt5" is usually located under:
```
/opt/local/libexec/qt5/
2018-03-19 07:51:15 +01:00
```
2019-12-22 12:15:53 +01:00
OR
2020-11-26 23:00:12 +01:00
"Qt5" from Anaconda3 (https://www.anaconda.com/), which is usually located under:
2019-12-22 12:15:53 +01:00
```
$HOME/opt/anaconda3/pkgs/qt-{version}
```
2020-05-16 07:53:39 +02:00
If you have installed Anaconda3 under $HOME/opt/anaconda3/, make a symbolic link:
```
/Applications/anaconda3/ ---> $HOME/opt/anaconda3/
```
2019-12-22 12:15:53 +01:00
# 3. Script language support: Ruby and Python
2021-11-15 22:38:47 +01:00
Earlier, by default, supported script languages, i.e., Ruby and Python, were those standard ones bundled with the OS.< br >
This configuration is possible only for macOS Catalina (10.15.7).< br >
2019-12-22 12:15:53 +01:00
```
$ /usr/bin/ruby -v
ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.x86_64-darwin19]
$ /usr/bin/python --version
Python 2.7.16
```
2022-05-05 22:01:40 +02:00
Big Sur (11.x) and Monterey (< 12.3 ) still provide the Python 2 . 7 binaries to run various legacy applications . < br >
2021-11-15 22:38:47 +01:00
However, the latest Xcode 13.1 does not allow us to link the legacy Python 2.7 library with the newly compiled KLayout binaries.< br >
2022-05-05 22:01:40 +02:00
Moreover, Monterey (12.3.1) finally eliminated the Python 2.7 binaries.< br >
2021-11-15 22:38:47 +01:00
Therefore, Homebrew is adopted as the default environment for Big Sur and Monterey.
2021-11-27 04:05:27 +01:00
The build script ** `build4mac.py` ** provides several possible combinations of Qt[6|5], Ruy, and Python modules to accommodate such a slightly complex environment.< br >
2019-12-22 12:15:53 +01:00
Some typical use cases are described in Section 6.
# 4. Prerequisites
You need to have:
* the latest Xcode and command-line tool kit compliant with each OS
2021-11-27 04:05:27 +01:00
* Qt[6|5] package from Homebrew or MacPorts; Qt5 from Anaconda3
* optionally Ruby and Python packages from Homebrew, MacPorts, or Anaconda3
2021-11-15 22:38:47 +01:00
#### For matching versions of Ruby and Python, please also refer to `build4mac_env.py`.
2019-12-22 12:15:53 +01:00
# 5. Command-line options of **`build4mac.py`** are as shown below.
2021-11-15 22:38:47 +01:00
**((Notes))** For **Catalina**
2019-12-22 12:15:53 +01:00
```
---------------------------------------------------------------------------------------------------------
2021-11-15 22:38:47 +01:00
< < Usage of ' build4mac . py ' > >
2022-05-05 22:01:40 +02:00
for building KLayout 0.27.9 or later on different Apple macOS / Mac OSX platforms.
2019-12-22 12:15:53 +01:00
2021-11-27 04:05:27 +01:00
$ [python] ./build4mac.py
2019-12-22 12:15:53 +01:00
option & argument : descriptions (refer to 'macbuild/build4mac_env.py' for details)| default value
--------------------------------------------------------------------------------------+---------------
2021-11-27 04:05:27 +01:00
[-q|--qt < type > ] : case-insensitive type=['Qt6MacPorts', 'Qt6Brew', | qt6brew
: 'Qt5MacPorts', 'Qt5Brew', 'Qt5Ana3'] |
: Qt6MacPorts: use Qt6 from MacPorts |
: Qt6Brew: use Qt6 from Homebrew |
2021-11-15 22:38:47 +01:00
: Qt5MacPorts: use Qt5 from MacPorts |
: Qt5Brew: use Qt5 from Homebrew |
: Qt5Ana3: use Qt5 from Anaconda3 |
[-r|--ruby < type > ] : case-insensitive type=['nil', 'Sys', 'MP27', 'HB27', 'Ana3'] | sys
: nil: don't bind Ruby |
: Sys: use OS-bundled Ruby [2.0 - 2.6] depending on OS |
: MP27: use Ruby 2.7 from MacPorts |
: HB27: use Ruby 2.7 from Homebrew |
: Ana3: use Ruby 2.5 from Anaconda3 |
[-p|--python < type > ] : case-insensitive type=['nil', 'Sys', 'MP38', 'HB38', 'Ana3', | sys
2021-11-27 04:05:27 +01:00
: 'HB39', HBAuto'] |
2021-11-15 22:38:47 +01:00
: nil: don't bind Python |
: Sys: use OS-bundled Python 2.7 [ElCapitan -- Catalina] |
: MP38: use Python 3.8 from MacPorts |
: HB38: use Python 3.8 from Homebrew |
: Ana3: use Python 3.8 from Anaconda3 |
2021-11-27 04:05:27 +01:00
: HB39: use Python 3.9 from Homebrew |
2021-11-15 22:38:47 +01:00
: HBAuto: use the latest Python 3.x auto-detected from Homebrew |
2022-05-10 20:25:30 +02:00
[-P|--buildPymod] : build and deploy Pymod (*.whl and *.egg) for LW-* .dmg | disabled
2021-11-27 04:05:27 +01:00
[-n|--noqtbinding] : don't create Qt bindings for ruby scripts | disabled
[-u|--noqtuitools] : don't include uitools in Qt binding | disabled
[-m|--make < option > ] : option passed to 'make' | '--jobs=4'
[-d|--debug] : enable debug mode build | disabled
[-c|--checkcom] : check command-line and exit without building | disabled
[-y|--deploy] : deploy executables and dylibs including Qt's Frameworks | disabled
[-Y|--DEPLOY] : deploy executables and dylibs for those who built KLayout | disabled
2021-11-15 22:38:47 +01:00
: from the source code and use the tools in the same machine |
: ! After confirmation of successful build of 'klayout.app', |
: rerun this script with BOTH: |
: 1) the same options used for building AND |
: 2) < -y | --deploy > OR < -Y | --DEPLOY > |
: optionally with [-v|--verbose < 0-3 > ] |
2021-11-27 04:05:27 +01:00
[-v|--verbose < 0-3 > ] : verbose level of `macdeployqt' (effective with -y only) | 1
2021-11-15 22:38:47 +01:00
: 0 = no output, 1 = error/warning (default), |
: 2 = normal, 3 = debug |
2021-11-27 04:05:27 +01:00
[-?|--?] : print this usage and exit | disabled
2021-11-15 22:38:47 +01:00
-----------------------------------------------------------------------------------------+---------------
```
**((Notes))** For **Big Sur** and **Monterey**
```
---------------------------------------------------------------------------------------------------------
< < Usage of ' build4mac . py ' > >
2022-05-05 22:01:40 +02:00
for building KLayout 0.27.9 or later on different Apple macOS / Mac OSX platforms.
2021-11-15 22:38:47 +01:00
2021-11-27 04:05:27 +01:00
$ [python] ./build4mac.py
2021-11-15 22:38:47 +01:00
option & argument : descriptions (refer to 'macbuild/build4mac_env.py' for details)| default value
--------------------------------------------------------------------------------------+---------------
2021-11-27 04:05:27 +01:00
[-q|--qt < type > ] : case-insensitive type=['Qt6MacPorts', 'Qt6Brew', | qt6brew
: 'Qt5MacPorts', 'Qt5Brew', 'Qt5Ana3'] |
: Qt6MacPorts: use Qt6 from MacPorts |
: Qt6Brew: use Qt6 from Homebrew |
2021-11-15 22:38:47 +01:00
: Qt5MacPorts: use Qt5 from MacPorts |
: Qt5Brew: use Qt5 from Homebrew |
: Qt5Ana3: use Qt5 from Anaconda3 |
[-r|--ruby < type > ] : case-insensitive type=['nil', 'Sys', 'MP27', 'HB27', 'Ana3'] | hb27
: nil: don't bind Ruby |
: Sys: use OS-bundled Ruby [2.0 - 2.6] depending on OS |
: MP27: use Ruby 2.7 from MacPorts |
: HB27: use Ruby 2.7 from Homebrew |
: Ana3: use Ruby 2.5 from Anaconda3 |
[-p|--python < type > ] : case-insensitive type=['nil', 'Sys', 'MP38', 'HB38', 'Ana3', | hb38
2021-11-27 04:05:27 +01:00
: 'HB39', HBAuto'] |
2021-11-15 22:38:47 +01:00
: nil: don't bind Python |
: Sys: use OS-bundled Python 2.7 [ElCapitan -- Catalina] |
: MP38: use Python 3.8 from MacPorts |
: HB38: use Python 3.8 from Homebrew |
: Ana3: use Python 3.8 from Anaconda3 |
2021-11-27 04:05:27 +01:00
: HB39: use Python 3.9 from Homebrew |
2021-11-15 22:38:47 +01:00
: HBAuto: use the latest Python 3.x auto-detected from Homebrew |
2022-05-10 20:25:30 +02:00
[-P|--buildPymod] : build and deploy Pymod (*.whl and *.egg) for LW-* .dmg | disabled
2021-11-27 04:05:27 +01:00
[-n|--noqtbinding] : don't create Qt bindings for ruby scripts | disabled
[-u|--noqtuitools] : don't include uitools in Qt binding | disabled
[-m|--make < option > ] : option passed to 'make' | '--jobs=4'
[-d|--debug] : enable debug mode build | disabled
[-c|--checkcom] : check command-line and exit without building | disabled
[-y|--deploy] : deploy executables and dylibs including Qt's Frameworks | disabled
[-Y|--DEPLOY] : deploy executables and dylibs for those who built KLayout | disabled
2021-11-15 22:38:47 +01:00
: from the source code and use the tools in the same machine |
: ! After confirmation of successful build of 'klayout.app', |
: rerun this script with BOTH: |
: 1) the same options used for building AND |
: 2) < -y | --deploy > OR < -Y | --DEPLOY > |
: optionally with [-v|--verbose < 0-3 > ] |
2021-11-27 04:05:27 +01:00
[-v|--verbose < 0-3 > ] : verbose level of `macdeployqt' (effective with -y only) | 1
2021-11-15 22:38:47 +01:00
: 0 = no output, 1 = error/warning (default), |
: 2 = normal, 3 = debug |
2021-11-27 04:05:27 +01:00
[-?|--?] : print this usage and exit | disabled
2019-12-22 12:15:53 +01:00
-----------------------------------------------------------------------------------------+---------------
```
# 6. Use-cases
2020-11-26 23:00:12 +01:00
In this section, the actual file names and directory names are those obtained on macOS Catalina.< br >
2019-12-22 12:15:53 +01:00
On different OS, those names differ accordingly.
### 6A. Standard build using the OS-bundled Ruby and Python
2021-11-27 04:05:27 +01:00
0. Install Homebrew, then install Qt6 by
2021-11-15 22:38:47 +01:00
```
2021-11-27 04:05:27 +01:00
$ brew install qt6
2021-11-15 22:38:47 +01:00
```
1. Invoke ** `build4mac.py` ** with the default options: ** ((Notes))** only for Catalina
2019-12-22 12:15:53 +01:00
```
$ cd /where/'build.sh'/exists
$ ./build4mac.py
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
2. Confirm successful build (it will take about one hour depending on your machine spec).
2020-11-26 23:00:12 +01:00
3. Run ** `build4mac.py` ** again with the same options used in 1. PLUS "-y" to deploy executables and libraries (including Qt's framework) under ** `klayout.app` ** bundle.< br >
2019-12-22 12:15:53 +01:00
The buddy command-line tools (strm*) will also be deployed in this step.
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
$ ./build4mac.py -y
```
The application bundle ** `klayout.app` ** is located under:< br >
2021-11-27 04:05:27 +01:00
** `ST-qt6Brew.pkg.macos-Catalina-release-RsysPsys` ** directory, where the three name parts below are important.
2019-12-22 12:15:53 +01:00
* "ST-" means that this is a standard package (LW-, HW-, and EX- are other possibilities explained below).
2021-11-27 04:05:27 +01:00
* "qt6Brew" means that Qt6 from Homebrew is used.
2019-12-22 12:15:53 +01:00
* "RsysPsys" means that Ruby is OS-bundled; Python is OS-bundled.
4. Copy/move the generated application bundle ** `klayout.app` ** to your ** `/Applications` ** directory for installation.
2018-03-19 07:51:15 +01:00
2021-11-27 04:05:27 +01:00
If you use the "-Y" option instead of the "-y" in Step-3, the Qt6 framework is NOT deployed in the application bundle.< br >
Then the directory name will be ** `LW-qt6Brew.pkg.macos-Catalina-release-RsysPsys` **, where
2019-12-22 12:15:53 +01:00
* "LW-" means that this is a lightweight package.
2018-01-08 08:57:56 +01:00
2021-11-15 22:38:47 +01:00
#### If you build KLayout from the source code AND run it on the same machine, the "-Y" option is highly recommended.
2018-01-08 08:57:56 +01:00
2020-11-26 23:00:12 +01:00
### 6B. Fully MacPorts-flavored build with MacPorts Ruby 2.7 and MacPorts Python 3.8
2021-11-27 04:05:27 +01:00
0. Install MacPorts, then install Qt6, Ruby 2.7, and Python 3.8 by
2021-11-15 22:38:47 +01:00
```
$ sudo port install coreutils
$ sudo port install findutils
2021-11-27 04:05:27 +01:00
$ sudo port install qt6
$ sudo port install qt6-qttools
2021-11-15 22:38:47 +01:00
$ sudo port install ruby27
$ sudo port install python38
$ sudo port install py38-pip
```
1. Invoke ** `build4mac.py` ** with the following options:
2019-12-22 12:15:53 +01:00
```
$ cd /where/'build.sh'/exists
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6macports -r mp27 -p mp38
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
2. Confirm successful build (it will take about one hour depending on your machine spec).
3. Run ** `build4mac.py` ** again with the same options used in 1. PLUS "-Y" to deploy executables and libraries under ** `klayout.app` ** bundle.< br >
2022-05-05 22:01:40 +02:00
The buddy command-line tools (strm*) will also be deployed under **klayout.app/Contents/Buddy/** in this step.< br >
2022-05-10 20:25:30 +02:00
If you use `--buildPymod` option in Step-1 and Step-3, the KLayout Python Module (\*.whl, \*.egg) will be built and deployed under **klayout.app/Contents/pymod-dist/** .
2022-05-05 22:01:40 +02:00
2019-12-22 12:15:53 +01:00
```
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6macports -r mp27 -p mp38 -Y
2019-12-22 12:15:53 +01:00
```
The application bundle ** `klayout.app` ** is located under:< br >
2021-11-27 04:05:27 +01:00
** `LW-qt6MP.pkg.macos-Catalina-release-Rmp27Pmp38` ** directory, where
2019-12-22 12:15:53 +01:00
* "LW-" means that this is a lightweight package.
2021-11-27 04:05:27 +01:00
* "qt6MP" means that Qt6 from MacPorts is used.
2020-11-26 23:00:12 +01:00
* "Rmp27Pmp38" means that Ruby is 2.7 from MacPorts; Python is 3.8 from MacPorts.
2019-12-22 12:15:53 +01:00
4. Copy/move the generated application bundle ** `klayout.app` ** to your ** `/Applications` ** directory for installation.
2020-10-10 00:09:34 +02:00
### 6C. Fully Homebrew-flavored build with Homebrew Ruby 2.7 and Homebrew Python 3.8
2021-11-27 04:05:27 +01:00
0. Install Homebrew, then install Qt6, Ruby 2.7, and Python 3.8 by
2021-11-15 22:38:47 +01:00
```
2021-11-27 04:05:27 +01:00
$ brew install qt6
2021-11-15 22:38:47 +01:00
$ brew install ruby@2.7
$ brew install python@3.8
```
1. Invoke ** `build4mac.py` ** with the following options: ** ((Notes))** These options are the default for Big Sur and Monterey.
2018-01-08 08:57:56 +01:00
```
$ cd /where/'build.sh'/exists
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6brew -r hb27 -p hb38
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
2. Confirm successful build (it will take about one hour depending on your machine spec).
3. Run ** `build4mac.py` ** again with the same options used in 1. PLUS "-Y" to deploy executables and libraries under ** `klayout.app` ** bundle.< br >
2022-05-05 22:01:40 +02:00
The buddy command-line tools (strm*) will also be deployed under **klayout.app/Contents/Buddy/** in this step.< br >
2022-05-10 20:25:30 +02:00
If you use `--buildPymod` option in Step-1 and Step-3, the KLayout Python Module (\*.whl, \*.egg) will be built and deployed under **klayout.app/Contents/pymod-dist/** .
2022-05-05 22:01:40 +02:00
2018-01-08 08:57:56 +01:00
```
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6brew -r hb27 -p hb38 -Y
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
The application bundle ** `klayout.app` ** is located under:< br >
2021-11-27 04:05:27 +01:00
** `LW-qt6Brew.pkg.macos-Catalina-release-Rhb27Phb38` ** directory, where
2019-12-22 12:15:53 +01:00
* "LW-" means that this is a lightweight package.
2021-11-27 04:05:27 +01:00
* "qt6Brew" means that Qt6 from Homebrew is used.
2020-10-10 00:09:34 +02:00
* "Rhb27Phb38" means that Ruby is 2.7 from Homebrew; Python is 3.8 from Homebrew.
2019-12-22 12:15:53 +01:00
4. Copy/move the generated application bundle ** `klayout.app` ** to your ** `/Applications` ** directory for installation.
2018-01-08 08:57:56 +01:00
2020-10-10 00:09:34 +02:00
### 6D. Partially Homebrew-flavored build with System Ruby and Homebrew Python 3.8
2021-11-27 04:05:27 +01:00
0. Install Homebrew, then install Qt6 and Python 3.8 by
2021-11-15 22:38:47 +01:00
```
2021-11-27 04:05:27 +01:00
$ brew install qt6
2021-11-15 22:38:47 +01:00
$ brew install python@3.8
```
1. Invoke ** `build4mac.py` ** with the following options:
2019-12-22 12:15:53 +01:00
```
$ cd /where/'build.sh'/exists
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6brew -r sys -p hb38
2019-12-22 12:15:53 +01:00
```
2. Confirm successful build (it will take about one hour depending on your machine spec).
2020-11-26 23:00:12 +01:00
3. Run ** `build4mac.py` ** again with the same options used in 1. PLUS "-y" to deploy executables and libraries (including Qt's framework and Python framework) under ** `klayout.app` ** bundle.< br >
2022-05-05 22:01:40 +02:00
The buddy command-line tools (strm*) will also be deployed under **klayout.app/Contents/Buddy/** in this step.
2018-01-08 08:57:56 +01:00
```
2021-11-27 04:05:27 +01:00
$ ./build4mac.py -q qt6brew -r sys -p hb38 -y
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
The application bundle ** `klayout.app` ** is located under:< br >
2021-11-27 04:05:27 +01:00
** `HW-qt6Brew.pkg.macos-Catalina-release-RsysPhb38` ** directory, where
* "HW-" means that this is a heavyweight package because both Qt6 and Python Frameworks are deployed.
* "qt6Brew" means that Qt6 from Homebrew is used.
2020-10-10 00:09:34 +02:00
* "RsysPhb38" means that Ruby is OS-bundled; Python is 3.8 from Homebrew.
2019-12-22 12:15:53 +01:00
4. Copy/move the generated application bundle ** `klayout.app` ** to your ** `/Applications` ** directory for installation.
2021-11-15 22:38:47 +01:00
### Important
2020-11-26 23:00:12 +01:00
So far, the deployment of Homebrew Ruby is not supported. < br >
Therefore, if you intend to use the "-y" option for deployment, you need to use the "-r sys" option for building.
2019-12-22 12:15:53 +01:00
2020-10-10 00:09:34 +02:00
### 6E. Fully Anaconda3-flavored build with Anaconda3 Ruby 2.5 and Anaconda3 Python 3.8
2021-11-15 22:38:47 +01:00
0. Install Anaconda3, then install Ruby 2.5 by
```
$ conda install ruby
```
1. Invoke ** `build4mac.py` ** with the following options:
2018-01-08 08:57:56 +01:00
```
$ cd /where/'build.sh'/exists
2019-12-22 12:15:53 +01:00
$ ./build4mac.py -q qt5ana3 -r ana3 -p ana3
```
2. Confirm successful build (it will take about one hour depending on your machine spec).
3. Run ** `build4mac.py` ** again with the same options used in 1. PLUS "-Y" to deploy executables and libraries under ** `klayout.app` ** bundle.< br >
2022-05-05 22:01:40 +02:00
The buddy command-line tools (strm*) will also be deployed under **klayout.app/Contents/Buddy/** in this step.< br >
2022-05-10 20:25:30 +02:00
If you use `--buildPymod` option in Step-1 and Step-3, the KLayout Python Module (\*.whl, \*.egg) will be built and deployed under **klayout.app/Contents/pymod-dist/** .
2022-05-05 22:01:40 +02:00
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
$ ./build4mac.py -q qt5ana3 -r ana3 -p ana3 -Y
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
The application bundle ** `klayout.app` ** is located under:< br >
** `LW-qt5Ana3.pkg.macos-Catalina-release-Rana3Pana3` ** directory, where
* "LW-" means that this is a lightweight package.
* "qt5Ana3" means that Qt5 from Anaconda3 is used.
2020-10-10 00:09:34 +02:00
* "Rana3Pana3" means that Ruby (2.5) is from Anaconda3; Python (3.8) is from Anaconda3.
2019-12-22 12:15:53 +01:00
4. Copy/move the generated application bundle ** `klayout.app` ** to your ** `/Applications` ** directory for installation.
5. You may have to set `PYTHONHOME` environment variable like:
```
export PYTHONHOME=$HOME/opt/anaconda3
2018-01-08 08:57:56 +01:00
```
2019-12-22 12:15:53 +01:00
### 6F. Other combinations
Logically, several different module combinations other than 6A. through 6E. are possible, including `nil` choice.< br >
If you choose such a combination, the resultant package directory name will begin with ** `EX-` ** (exceptional).
2018-01-08 08:57:56 +01:00
2018-01-16 06:08:25 +01:00
----
2018-01-08 14:37:18 +01:00
2019-12-22 12:15:53 +01:00
# 7. Making a DMG installer
You can make a DMG installer using another Python script ** `makeDMG4mac.py` **.
2021-11-15 22:38:47 +01:00
This script requires a directory generated by ** `build4mac.py` ** with the [-y|-Y] option (refer to 6A through 6E).
2018-01-16 06:08:25 +01:00
2019-12-22 12:15:53 +01:00
1. Make a symbolic link (if it does not exist) from the parent directory (where ** `build.sh` ** exists) to ** `makeDMG4mac.py` **, that is,
2018-01-16 06:08:25 +01:00
```
makeDMG4mac.py -> macbuild/makeDMG4mac.py
```
2019-12-22 12:15:53 +01:00
2. Invoke ** `makeDMG4mac.py` ** with -p and -m options, for example,
2018-01-16 06:08:25 +01:00
```
$ cd /where/'build.sh'/exists
2021-11-27 04:05:27 +01:00
$ ./makeDMG4mac.py -p ST-qt6Brew.pkg.macos-Catalina-release-RsysPsys -m
2018-03-07 01:29:21 +01:00
```
2019-12-22 12:15:53 +01:00
This command will generate the two files below:< br >
2022-05-05 22:01:40 +02:00
* **`ST-klayout-0.27.9-macOS-Catalina-1-qt5MP-RsysPsys.dmg`** ---(1) the main DMG file
* **`ST-klayout-0.27.9-macOS-Catalina-1-qt5MP-RsysPsys.dmg.md5`** ---(2) MD5-value text file
2018-03-07 01:29:21 +01:00
2019-12-22 12:15:53 +01:00
# Known issues
2021-11-27 04:05:27 +01:00
Because we assume some specific versions of non-OS-standard Ruby and Python, updating Homebrew, MacPorts, or Anaconda3 may cause build- and link errors.< br >
2019-12-22 12:15:53 +01:00
In such cases, you need to update the dictionary contents of ** `build4mac_env.py` **.
2018-03-13 09:01:36 +01:00
2019-12-22 12:15:53 +01:00
# Final comments
No need to say, KLayout is a great tool! < br >
2021-11-15 22:38:47 +01:00
With the object-oriented script language (both Ruby and Python) support, our error-prone layout jobs can be greatly simplified and speed-up.< br >
2019-12-22 12:15:53 +01:00
Building KLayout from its source code is not difficult. Try it with your favorite environment!
2018-03-07 01:29:21 +01:00
2019-12-22 12:15:53 +01:00
[End of File]