diff options
author | fanquake <fanquake@gmail.com> | 2021-07-08 16:20:01 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-08-31 09:37:23 +0800 |
commit | ab9c34237ab7b056394e0bd1f7cb131ffd95754c (patch) | |
tree | 15c3b14e28d643acd1382e0f69d7f89081daf6f6 /contrib/devtools/README.md | |
parent | 7be143a960e2bb9ac81144f55c45731c1bb209c5 (diff) |
release: remove gitian
Diffstat (limited to 'contrib/devtools/README.md')
-rw-r--r-- | contrib/devtools/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/devtools/README.md b/contrib/devtools/README.md index 1fa850af1a..afbad096c4 100644 --- a/contrib/devtools/README.md +++ b/contrib/devtools/README.md @@ -98,7 +98,7 @@ Perform basic security checks on a series of executables. symbol-check.py =============== -A script to check that the executables produced by gitian only contain +A script to check that release executables only contain certain symbols and are only linked against allowed libraries. For Linux this means checking for allowed gcc, glibc and libstdc++ version symbols. @@ -106,9 +106,9 @@ This makes sure they are still compatible with the minimum supported distributio For macOS and Windows we check that the executables are only linked against libraries we allow. -Example usage after a gitian build: +Example usage: - find ../gitian-builder/build -type f -executable | xargs python3 contrib/devtools/symbol-check.py + find ../path/to/executables -type f -executable | xargs python3 contrib/devtools/symbol-check.py If no errors occur the return value will be 0 and the output will be empty. |