aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPavel Maryanov <acid@jack.kiev.ua>2017-10-10 14:05:28 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-11-14 17:03:48 +0000
commita17efcb039c1128fdb11fd147687f15f2ae12494 (patch)
treea01aa752a2183326286d8b81ec14c4e8697e4ecd /README.md
parentMerge pull request #2756 (diff)
downloadmonero-a17efcb039c1128fdb11fd147687f15f2ae12494.tar.xz
make this build on SunOS/Solaris
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4036743e1..2dec65465 100644
--- a/README.md
+++ b/README.md
@@ -430,6 +430,17 @@ doas make install
Build monero: `env DEVELOPER_LOCAL_TOOLS=1 BOOST_ROOT=/usr/local make release-static`
+### On Solaris:
+
+The default Solaris linker can't be used, you have to install GNU ld, then run cmake manually with the path to your copy of GNU ld:
+
+ mkdir -p build/release
+ cd build/release
+ cmake -DCMAKE_LINKER=/path/to/ld -D CMAKE_BUILD_TYPE=Release ../..
+ cd ../..
+
+Then you can run make as usual.
+
### On Linux for Android (using docker):
# Build image (select android64.Dockerfile for aarch64)