From 84dfd46b5d954125a223593399dc3a6ab5e1c3ea Mon Sep 17 00:00:00 2001 From: afiniel <44875524+afiniel@users.noreply.github.com> Date: Wed, 26 Oct 2022 17:25:33 +0200 Subject: [PATCH] Update build-generic.md Typos --- doc/build-generic.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/build-generic.md b/doc/build-generic.md index 0a53072755c33..fd01ed28ce0ac 100644 --- a/doc/build-generic.md +++ b/doc/build-generic.md @@ -1,22 +1,22 @@ GENERIC BUILD NOTES ==================== -Some notes on how to build Dash Core based on the [depends](../depends/README.md) build system. +Some notes on how to build vkax Core based on the [depends](../depends/README.md) build system. Note on old build instructions ------------------------------ -In the past, the build documentation contained instructions on how to build Dash with system-wide installed dependencies +In the past, the build documentation contained instructions on how to build vkax with system-wide installed dependencies like BerkeleyDB 4.8, boost and Qt. Building this way is considered deprecated and only building with the `depends` prefix is supported today. Required build tools and environment ------------------------------------ -Building the dependencies and Dash Core requires some essential build tools to be installed before. Please see +Building the dependencies and vkax Core requires some essential build tools to be installed before. Please see [build-unix](build-unix.md), [build-osx](build-osx.md) and [build-windows](build-windows.md) for details. Building dependencies --------------------- -Dash inherited the `depends` folder from Bitcoin, which contains all dependencies required to build Dash. These -dependencies must be built before Dash can actually be built. To do so, perform the following: +vkax inherited the `depends` folder from Bitcoin, which contains all dependencies required to build Dash. These +dependencies must be built before vkax can actually be built. To do so, perform the following: ```bash $ cd depends @@ -24,17 +24,17 @@ $ make -j4 # Choose a good -j value, depending on the number of CPU cores availa $ cd .. ``` -This will download and build all dependencies required to build Dash Core. Caching of build results will ensure that only +This will download and build all dependencies required to build vkax Core. Caching of build results will ensure that only the packages are rebuilt which have changed since the last depends build. It is required to re-run the above commands from time to time when dependencies have been updated or added. If this is -not done, build failures might occur when building Dash. +not done, build failures might occur when building vkax. Please read the [depends](../depends/README.md) documentation for more details on supported hosts and configuration options. If no host is specified (as in the above example) when calling `make`, the depends system will default to your local host system. -Building Dash Core +Building vkax Core --------------------- ```bash