build: Add -fno-stack-protector for debian.

* guile/guix/make.scm (%C32-FLAGS): Add -fno-stack-protector.
This commit is contained in:
Jan Nieuwenhuizen 2018-03-04 15:53:05 +01:00
parent f077364bce
commit e54c70bc00
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
;;; -*-scheme-*- ;;; -*-scheme-*-
;;; Mes --- Maxwell Equations of Software ;;; Mes --- Maxwell Equations of Software
;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2017,2018 Jan Nieuwenhuizen <janneke@gnu.org>
;;; ;;;
;;; This file is part of Mes. ;;; This file is part of Mes.
;;; ;;;
@ -350,6 +350,7 @@
(define %C32-FLAGS (define %C32-FLAGS
'("--std=gnu99" '("--std=gnu99"
"-O0" "-O0"
"-fno-stack-protector"
"-g" "-g"
"-m32" "-m32"
"-I" "src" "-I" "src"