aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-08-16 10:32:34 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-08-16 10:32:34 +0200
commit8965922219ea55ffd15ad5f4bbf7641330e03a27 (patch)
treeca6e542a1f21ee2b2110a38aead1c0d16f495394 /README.md
parent2e02f2d6166c75b1fcec73d268e97e407071a372 (diff)
downloadnextpnr-8965922219ea55ffd15ad5f4bbf7641330e03a27.tar.gz
nextpnr-8965922219ea55ffd15ad5f4bbf7641330e03a27.tar.bz2
nextpnr-8965922219ea55ffd15ad5f4bbf7641330e03a27.zip
Added ability for static builds
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index e9f197cd..a47a06a7 100644
--- a/README.md
+++ b/README.md
@@ -127,6 +127,13 @@ cmake -DARCH=ice40 -DCMAKE_BUILD_TYPE=Debug -DBUILD_PYTHON=OFF -DBUILD_GUI=OFF -
make -j$(nproc)
```
+To make static build relase for iCE40 architecture use the following:
+
+```
+cmake -DARCH=ice40 -DBUILD_PYTHON=OFF -DBUILD_GUI=OFF -DSTATIC_BUILD=ON .
+make -j$(nproc)
+```
+
Notes for developers
--------------------