diff options
author | Carl Dong <contact@carldong.me> | 2020-03-30 13:41:34 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2020-04-02 17:20:05 -0400 |
commit | 35a96792dda9e78165b1598aeac7b2ab759e7be5 (patch) | |
tree | e5a1fae356804c55305d9429882341c8a1760bc7 /contrib/guix/manifest.scm | |
parent | 449d8fe25bbe25daacfc67aa89ca32b0a3254c5a (diff) |
guix: Check mingw symbols, improve SSP fix docs
Diffstat (limited to 'contrib/guix/manifest.scm')
-rw-r--r-- | contrib/guix/manifest.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index c698bf0763..c9d7193c85 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -26,7 +26,10 @@ (define (make-ssp-fixed-gcc xgcc) "Given a XGCC package, return a modified package that uses the SSP function -from glibc instead of from libssp.so. Taken from: +from glibc instead of from libssp.so. Our `symbol-check' script will complain if +we link against libssp.so, and thus will ensure that this works properly. + +Taken from: http://www.linuxfromscratch.org/hlfs/view/development/chapter05/gcc-pass1.html" (package (inherit xgcc) |