Hush Full Node software. We were censored from Github, this is where all development happens now.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Duke Leto 9be07c1452 man pages 3 years ago
..
README.md rm -rf Github 4 years ago
gen-linux-binary-release.sh Improve linux bin script 3 years ago
gen-manpages.sh man pages 3 years ago
optimize-pngs.py contrib: improve optimize-pngs.py 9 years ago
security-check.py Add Mach-O 64-bit detection to security-check.py 6 years ago
split-debug.sh Include contrib/devtools/split-debug.sh from upstream 8 years ago
symbol-check.py We vibe the GPLv3, fix some typos 3 years ago
test-security-check.py Use portable #! in python scripts (/usr/bin/env) 6 years ago

README.md

Contrib Devtools

This directory contains tools for developers working on this repository.

security-check.py

Perform basic ELF security checks on a series of executables.

symbol-check.py

A script to check that the (Linux) executables produced by gitian only contain allowed gcc, glibc and libstdc++ version symbols. This makes sure they are still compatible with the minimum supported Linux distribution versions.

Example usage after a gitian build:

find ../gitian-builder/build -type f -executable | xargs python contrib/devtools/symbol-check.py 

If only supported symbols are used the return value will be 0 and the output will be empty.

If there are 'unsupported' symbols, the return value will be 1 a list like this will be printed:

.../64/test_bitcoin: symbol memcpy from unsupported version GLIBC_2.14
.../64/test_bitcoin: symbol __fdelt_chk from unsupported version GLIBC_2.15
.../64/test_bitcoin: symbol std::out_of_range::~out_of_range() from unsupported version GLIBCXX_3.4.15
.../64/test_bitcoin: symbol _ZNSt8__detail15_List_nod from unsupported version GLIBCXX_3.4.15

update-translations.py

Run this script from the root of the repository to update all translations from transifex. It will do the following automatically:

  • fetch all translations
  • post-process them into valid and committable format
  • add missing translations to the build system (TODO)

See doc/translation-process.md for more information.

gen-manpages.sh

A small script to automatically create manpages in ../../doc/man by running the release binaries with the -help option. This requires help2man which can be found at: https://www.gnu.org/software/help2man/