diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-11-14 21:31:09 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-11-14 21:31:09 +0200 |
commit | 922aaf4e2a38cf1ef58d419f58282b0e682d73d8 (patch) | |
tree | e5a9cd88bc63db2e25f9ec8a866123a07ebe37d1 /README.md | |
parent | Merge pull request #2636 (diff) | |
parent | make this build on SunOS/Solaris (diff) | |
download | monero-922aaf4e2a38cf1ef58d419f58282b0e682d73d8.tar.xz |
Merge pull request #2644
a17efcb0 make this build on SunOS/Solaris (Pavel Maryanov)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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) |