mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-15 16:38:23 +01:00
Merge bitcoin/bitcoin#31679: cmake: Install internal binaries to <prefix>/libexec/
f49840dd90doc: Fix typo in files.md (Ryan Ofsky)f5cf0b1cccbitcoin wrapper: improve help output (Ryan Ofsky)c810b168b8doc: Add description of installed files to files.md (Ryan Ofsky)94ffd01a02doc: Add release notes describing libexec/ binaries (Ryan Ofsky)cd97905ebccmake: Move internal binaries from bin/ to libexec/ (Ryan Ofsky) Pull request description: This change moves binaries that are not typically invoked directly by users from the `bin/` directory to the `libexec/` directory in CMake installs and binary releases. The goal of the PR is to introduce a distinction between internal and external binaries so starting with #31802, we can use IPC to implement features in new binaries without adding those binaries to the CLI. The change also helps reduce clutter in `bin/`, making it easier for users to identify useful tools to run. Summary of changes: - For **source builds** (i.e. developer builds) — There are no changes. - For **source installs** (i.e. `cmake --install` result) — `test_bitcoin`, `test_bitcoin-qt`, and `bench_bitcoin` are installed in `${CMAKE_PREFIX_PATH}/libexec` instead of `${CMAKE_PREFIX_PATH}/bin`, so they are no longer on the system `PATH`. However, they can still be invoked from the `libexec/` directory, or from the CLI as `bitcoin test`, `bitcoin test-gui`, and `bitcoin bench`, respectively. - For **binary releases** — Since `test_bitcoin` is the only test binary enabled in releases, the only change is moving `test_bitcoin` from `bin/` to `libexec/`. <details><summary>Details</summary> <p> The table below shows the install location of each binary after this change, and the availability of each binary. | Binary | Location | Availability | Change | |----------------------|--------------|----------------------|-------------------------------| | `bitcoin` | `bin/` | 📦 Binary release (since #31375) | Unchanged | | `bitcoin-cli` | `bin/` | 📦 Binary release | Unchanged | | `bitcoind` | `bin/` | 📦 Binary release | Unchanged | | `bitcoin-qt` | `bin/` | 📦 Binary release | Unchanged | | `bitcoin-tx` | `bin/` | 📦 Binary release | Unchanged | | `bitcoin-util` | `bin/` | 📦 Binary release | Unchanged | | `bitcoin-wallet` | `bin/` | 📦 Binary release | Unchanged | | `bench_bitcoin` | `libexec/` | 🛠 Source build only | Moved from `bin/` | | `bitcoin-chainstate` | `libexec/` | 🛠 Source build only | Newly installed (was built) | | `bitcoin-gui` | `libexec/` | 🛠 Source build only (until #31802) | Moved from `bin/` | | `bitcoin-node` | `libexec/` | 🛠 Source build only (until #31802) | Moved from `bin/` | | `test_bitcoin` | `libexec/` | 📦 Binary release | Moved from `bin/` | | `test_bitcoin-qt` | `libexec/` | 🛠 Source build only | Moved from `bin/` | </p> </details> --- This PR is part of the [process separation project](https://github.com/bitcoin/bitcoin/issues/28722). ACKs for top commit: l0rinc: re-ACKf49840dd90Sjors: re-ACKf49840dd90achow101: ACKf49840dd90janb84: re ACKf49840dd90BrandonOdiwuor: Tested ACKf49840dd90hodlinator: re-ACKf49840dd90willcl-ark: utACKf49840dd90Tree-SHA512: 858a2e1a53db11ee3c5c759bfdeea566f242b9ce5e8a898fa435222e41662b8184577c0dc2c4c058294b4de41d8cb3ba3e5d24c748c280efa4a3f84e3ec4344d
This commit is contained in:
38
doc/files.md
38
doc/files.md
@@ -16,7 +16,7 @@
|
||||
|
||||
- [Berkeley DB database based wallets](#berkeley-db-database-based-wallets)
|
||||
|
||||
- [Notes](#notes)
|
||||
- [Installed Files](#installed-files)
|
||||
|
||||
## Data directory location
|
||||
|
||||
@@ -83,7 +83,7 @@ Wallets are SQLite databases.
|
||||
|
||||
3. A wallet database path can be specified with the `-wallet` option.
|
||||
|
||||
4. `wallet.dat` files must not be shared across different node instances, as that can result in key-reuse and double-spends due the lack of synchronization between instances.
|
||||
4. `wallet.dat` files must not be shared across different node instances, as that can result in key-reuse and double-spends due to the lack of synchronization between instances.
|
||||
|
||||
5. Any copy or backup of the wallet should be done through a `backupwallet` call in order to update and lock the wallet, preventing any file corruption caused by updates during the copy.
|
||||
|
||||
@@ -123,8 +123,40 @@ Subdirectory | File(s) | Description
|
||||
`./` | `wallet.dat` | Personal wallet (a BDB database) with keys and transactions
|
||||
`./` | `.walletlock` | BDB wallet lock file
|
||||
|
||||
## Notes
|
||||
### Notes
|
||||
|
||||
<a name="note1">1</a>. The `/` (slash, U+002F) is used as the platform-independent path component separator in this document.
|
||||
|
||||
<a name="note2">2</a>. `NNNNN` matches `[0-9]{5}` regex.
|
||||
|
||||
## Installed Files
|
||||
|
||||
This table describes the files installed by Bitcoin Core across different platforms.
|
||||
|
||||
| **Path** | **Description** |
|
||||
|------------------------------------------------------------|-----------------------------------------------------------------------------|
|
||||
| [README.md](README.md) or [readme.txt](README_windows.txt) | Project information and instructions |
|
||||
| bitcoin.conf | [Generated](../contrib/devtools/gen-bitcoin-conf.sh) configuration file |
|
||||
| bin/bitcoin | Command-line tool for interacting with Bitcoin. Calls other binaries below. |
|
||||
| bin/bitcoin-cli | Tool for making node and wallet RPC calls. |
|
||||
| bin/bitcoin-qt | Bitcoin node and wallet GUI |
|
||||
| bin/bitcoin-tx | Tool for creating and modifying transactions |
|
||||
| bin/bitcoin-util | Miscellaneous utilities |
|
||||
| bin/bitcoin-wallet | Bitcoin wallet tool |
|
||||
| bin/bitcoind | Bitcoin node and wallet daemon |
|
||||
| *lib/libbitcoinkernel.so* | Shared library containing core consensus and validation code |
|
||||
| *lib/pkgconfig/libbitcoinkernel.pc* | Pkg-config metadata for linking to `libbitcoinkernel` |
|
||||
| *libexec/bench_bitcoin* | Benchmarking tool for measuring node performance |
|
||||
| *libexec/bitcoin-chainstate* | Tool to validate and connect blocks |
|
||||
| *libexec/bitcoin-gui* | IPC-enabled alternative to `bitcoin-qt` |
|
||||
| *libexec/bitcoin-node* | IPC-enabled alternative to `bitcoind` |
|
||||
| libexec/test_bitcoin | Unit test binary |
|
||||
| *libexec/test_bitcoin-qt* | GUI-specific unit tests |
|
||||
| share/man/man1/ | Man pages for command-line tools like `bitcoin-cli`, `bitcoind`, and others |
|
||||
| share/rpcauth/ | Documentation and scripts for RPC authentication setup |
|
||||
|
||||
### Notes
|
||||
|
||||
- *Italicized* files are only installed in source builds if relevant CMake options are enabled. They are not included in binary releases.
|
||||
- README and bitcoin.conf files are included in binary releases but not installed in source builds.
|
||||
- On Windows, binaries have a `.exe` suffix (e.g., `bitcoin-cli.exe`).
|
||||
|
||||
24
doc/release-notes-31375-31679.md
Normal file
24
doc/release-notes-31375-31679.md
Normal file
@@ -0,0 +1,24 @@
|
||||
New command line interface
|
||||
--------------------------
|
||||
|
||||
A new `bitcoin` command line tool has been added to make features more
|
||||
discoverable and convenient to use. The `bitcoin` tool just calls other
|
||||
executables and does not implement any functionality on its own. Specifically
|
||||
`bitcoin node` is a synonym for `bitcoind`, `bitcoin gui` is a synonym for
|
||||
`bitcoin-qt`, and `bitcoin rpc` is a synonym for `bitcoin-cli -named`. Other
|
||||
commands and options can be listed with `bitcoin help`. The new tool does not
|
||||
replace other tools, so existing commands should continue working and there are
|
||||
no plans to deprecate them.
|
||||
|
||||
Install changes
|
||||
---------------
|
||||
|
||||
The `test_bitcoin` executable is now located in `libexec/` rather than `bin/`.
|
||||
It can still be executed directly, or accessed through the new `bitcoin` command
|
||||
line tool as `bitcoin test`.
|
||||
|
||||
Other executables which are only part of source releases and not built by
|
||||
default: `test_bitcoin-qt`, `bench_bitcoin`, `bitcoin-chainstate`,
|
||||
`bitcoin-node`, and `bitcoin-gui` are also now installed in `libexec/`
|
||||
instead of `bin/` and can be accessed through the `bitcoin` command line tool.
|
||||
See `bitcoin help` output for details.
|
||||
@@ -1,11 +0,0 @@
|
||||
New command line interface
|
||||
--------------------------
|
||||
|
||||
A new `bitcoin` command line tool has been added to make features more
|
||||
discoverable and convenient to use. The `bitcoin` tool just calls other
|
||||
executables and does not implement any functionality on its own. Specifically
|
||||
`bitcoin node` is a synonym for `bitcoind`, `bitcoin gui` is a synonym for
|
||||
`bitcoin-qt`, and `bitcoin rpc` is a synonym for `bitcoin-cli -named`. Other
|
||||
commands and options can be listed with `bitcoin help`. The new tool does not
|
||||
replace other tools, so all existing commands should continue working and there
|
||||
are no plans to deprecate them.
|
||||
Reference in New Issue
Block a user