diff options
author | Jarol Rodriguez <jarolrod@tutanota.com> | 2022-07-05 14:09:36 -0400 |
---|---|---|
committer | Jarol Rodriguez <jarolrod@tutanota.com> | 2022-07-05 14:09:36 -0400 |
commit | f1c16ed733f416a3bea878f1c21621dbd93b267c (patch) | |
tree | 5100b7427fd0afbf4ea2f3ce48f89e29486f4ce7 /doc | |
parent | 195e07feaf7bbeedaa675d7cf21c7160afe2c9fa (diff) |
doc: remove note on arm cross-compilation from build-unix.md
No reason to have this here with outdated information. We already point
users to the depends readme, the doc cross builders should be pointed to
, within this doc.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-unix.md | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index bcfa25dc76..874015707a 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -288,26 +288,3 @@ This example lists the steps necessary to setup and build a command line only di ./src/bitcoind If you intend to work with legacy Berkeley DB wallets, see [Berkeley DB](#berkeley-db) section. - -ARM Cross-compilation -------------------- -These steps can be performed on, for example, an Ubuntu VM. The depends system -will also work on other Linux distributions, however the commands for -installing the toolchain will be different. - -Make sure you install the build requirements mentioned above. -Then, install the toolchain and curl: - - sudo apt-get install g++-arm-linux-gnueabihf curl - -To build executables for ARM: - - cd depends - make HOST=arm-linux-gnueabihf NO_QT=1 - cd .. - ./autogen.sh - CONFIG_SITE=$PWD/depends/arm-linux-gnueabihf/share/config.site ./configure --enable-reduce-exports LDFLAGS=-static-libstdc++ - make - - -For further documentation on the depends system see [README.md](../depends/README.md) in the depends directory. |