We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 360a9e0 commit ff821ddCopy full SHA for ff821dd
contrib/guix/manifest.scm
@@ -24,6 +24,17 @@
24
(guix profiles)
25
(guix utils))
26
27
+(define (make-ssp-fixed-gcc xgcc)
28
+ "Given a XGCC package, return a modified package that uses the SSP function
29
+from glibc instead of from libssp.so. Taken from:
30
+http://www.linuxfromscratch.org/hlfs/view/development/chapter05/gcc-pass1.html"
31
+ (package
32
+ (inherit xgcc)
33
+ (arguments
34
+ (substitute-keyword-arguments (package-arguments xgcc)
35
+ ((#:make-flags flags)
36
+ `(cons "gcc_cv_libc_provides_ssp=yes" ,flags))))))
37
+
38
(define (make-gcc-rpath-link xgcc)
39
"Given a XGCC package, return a modified package that replace each instance of
40
-rpath in the default system spec that's inserted by Guix with -rpath-link"
0 commit comments