lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master fa7e78c: Work around a gcc '-fomit-frame-poin


From: Greg Chicares
Subject: [lmi-commits] [lmi] master fa7e78c: Work around a gcc '-fomit-frame-pointer' defect
Date: Thu, 10 Dec 2020 21:07:32 -0500 (EST)

branch: master
commit fa7e78cd36aad7450127b1d3d0534a4f8e07ef21
Author: Gregory W. Chicares <gchicares@sbcglobal.net>
Commit: Gregory W. Chicares <gchicares@sbcglobal.net>

    Work around a gcc '-fomit-frame-pointer' defect
    
    x86_64-w64-mingw32 gcc-10 actually needs this generally undesirable
    flag--see:
      https://lists.nongnu.org/archive/html/lmi/2020-12/msg00002.html
---
 workhorse.make | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/workhorse.make b/workhorse.make
index 2c5ddde..b45ffbc 100644
--- a/workhorse.make
+++ b/workhorse.make
@@ -441,9 +441,8 @@ else ifneq (,$(filter $(gcc_version), 8 8.1.0 8.2.0 8.3.0 9 
9.3.0 10 10.0))
 # See:
 #   https://lists.nongnu.org/archive/html/lmi/2019-03/msg00026.html
 #   https://lists.nongnu.org/archive/html/lmi/2020-12/msg00000.html
-    ifneq (,$(filter $(gcc_version), 8 8.1.0 8.2.0 8.3.0))
-      tutelary_flag := -fomit-frame-pointer
-    endif
+#   https://lists.nongnu.org/archive/html/lmi/2020-12/msg00002.html
+    tutelary_flag := -fomit-frame-pointer
   endif
 
   ifneq (,$(filter $(gcc_version), 10 10.0))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]