From 2659caeffac49e8a2863a58a04cb27c9dbf668a8 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 2 Dec 2019 18:27:32 +0100 Subject: [PATCH] mescc: Ignore -fno-stack-protector. * module/mescc.scm (parse-opts): Ignore it. --- module/mescc.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module/mescc.scm b/module/mescc.scm index 875514d6..d3231206 100644 --- a/module/mescc.scm +++ b/module/mescc.scm @@ -65,6 +65,7 @@ (debug-info (single-char #\g)) (dumpmachine) (fno-builtin) + (fno-stack-protector) (help (single-char #\h)) (include (single-char #\I) (value #t)) (library-dir (single-char #\L) (value #t)) @@ -123,6 +124,7 @@ Options: Ignored for GCC compatibility -fno-builtin + -fno-stack-protector -no-pie -nostdinc -static @@ -143,6 +145,7 @@ General help using GNU software: (define (mescc:main args) (let* ((single-dash-options '("-dumpmachine" "-fno-builtin" + "-fno-stack-protector" "-no-pie" "-nodefaultlibs" "-nostartfiles"