Skip to content

Commit 4ee149a

Browse files
committed
Merge pull request #6955
e167af2 [doc] Remove excessive white space (MarcoFalke) e0eeb67 [trivial] clang-format: Set AlignAfterOpenBracket: false (MarcoFalke) 0af8fe4 devtools: Update README.md (MarcoFalke)
2 parents 849a7e6 + e167af2 commit 4ee149a

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

contrib/devtools/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ optimize-pngs.py
6262
A script to optimize png files in the bitcoin
6363
repository (requires pngcrush).
6464

65+
security-check.py and test-security-check.py
66+
============================================
67+
68+
Perform basic ELF security checks on a series of executables.
69+
6570
symbol-check.py
6671
===============
6772

doc/build-osx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Instructions: Homebrew
3232

3333
#### Install dependencies using Homebrew
3434

35-
brew install autoconf automake berkeley-db4 libtool boost miniupnpc openssl pkg-config protobuf qt5 libevent
35+
brew install autoconf automake berkeley-db4 libtool boost miniupnpc openssl pkg-config protobuf qt5 libevent
3636

3737
NOTE: Building with Qt4 is still supported, however, could result in a broken UI. As such, building with Qt5 is recommended.
3838

doc/build-unix.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,24 @@ Dependency Build Instructions: Ubuntu & Debian
6161
----------------------------------------------
6262
Build requirements:
6363

64-
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev
64+
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev
6565

6666
On Ubuntu 15.10+ there are generic names for the individual boost development
6767
packages, so the following can be used to only install necessary parts of
6868
boost:
6969

70-
apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-base-dev
70+
apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libboost-base-dev
7171

7272
For Ubuntu before 15.10, or Debian 7 and later libboost-all-dev has to be installed:
7373

74-
sudo apt-get install libboost-all-dev
74+
sudo apt-get install libboost-all-dev
7575

7676
BerkeleyDB is required for the wallet. db4.8 packages are available [here](https://launchpad.net/~bitcoin/+archive/bitcoin).
7777
You can add the repository and install using the following commands:
7878

79-
sudo add-apt-repository ppa:bitcoin/bitcoin
80-
sudo apt-get update
81-
sudo apt-get install libdb4.8-dev libdb4.8++-dev
79+
sudo add-apt-repository ppa:bitcoin/bitcoin
80+
sudo apt-get update
81+
sudo apt-get install libdb4.8-dev libdb4.8++-dev
8282

8383
Ubuntu and Debian have their own libdb-dev and libdb++-dev packages, but these will install
8484
BerkeleyDB 5.1 or later, which break binary wallet compatibility with the distributed executables which
@@ -89,11 +89,11 @@ See the section "Disable-wallet mode" to build Bitcoin Core without wallet.
8989

9090
Optional:
9191

92-
sudo apt-get install libminiupnpc-dev (see --with-miniupnpc and --enable-upnp-default)
92+
sudo apt-get install libminiupnpc-dev (see --with-miniupnpc and --enable-upnp-default)
9393

9494
ZMQ dependencies:
9595

96-
sudo apt-get install libzmq3-dev (provides ZMQ API 4.x)
96+
sudo apt-get install libzmq3-dev (provides ZMQ API 4.x)
9797

9898
Dependencies for the GUI: Ubuntu & Debian
9999
-----------------------------------------
@@ -213,6 +213,7 @@ Hardening enables the following features:
213213
scanelf -e ./bitcoin
214214

215215
The output should contain:
216+
216217
TYPE
217218
ET_DYN
218219

src/.clang-format

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
Language: Cpp
12
AccessModifierOffset: -4
3+
AlignAfterOpenBracket: false
24
AlignEscapedNewlinesLeft: true
35
AlignTrailingComments: true
46
AllowAllParametersOfDeclarationOnNextLine: false
@@ -26,7 +28,6 @@ IndentCaseLabels: false
2628
IndentFunctionDeclarationAfterType: false
2729
IndentWidth: 4
2830
KeepEmptyLinesAtTheStartOfBlocks: false
29-
Language: Cpp
3031
MaxEmptyLinesToKeep: 2
3132
NamespaceIndentation: None
3233
ObjCSpaceAfterProperty: false

0 commit comments

Comments
 (0)