gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 16/254: curl-compilers.m4: accept -Og and -Ofast GC


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 16/254: curl-compilers.m4: accept -Og and -Ofast GCC flags
Date: Sat, 17 Jun 2017 16:50:48 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.1
in repository gnurl.

commit 71d2d37005479cbc86cf8cb97ab1aa84c2cbb89a
Author: Marcel Raad <address@hidden>
AuthorDate: Sat Apr 22 23:12:07 2017 +0200

    curl-compilers.m4: accept -Og and -Ofast GCC flags
    
    -Og, introduced in GCC 4.8, optimizes for debugging experience.
    -Ofast, introduced in GCC 4.7, builds on -O3 and enables further
    optimizations breaking strict standards compliance.
    When specified in CFLAGS, these were always overridden by -O0 or -O2.
    Fix this by adding them to flags_opt_all.
    
    Ref: https://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
    Ref: https://github.com/curl/curl/pull/1404#issuecomment-296401570
    Closes https://github.com/curl/curl/pull/1440
---
 m4/curl-compilers.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4
index 19462582f..589032446 100644
--- a/m4/curl-compilers.m4
+++ b/m4/curl-compilers.m4
@@ -158,7 +158,7 @@ AC_DEFUN([CURL_CHECK_COMPILER_GNU_C], [
     flags_dbg_all="$flags_dbg_all -gvms"
     flags_dbg_yes="-g"
     flags_dbg_off=""
-    flags_opt_all="-O -O0 -O1 -O2 -O3 -Os"
+    flags_opt_all="-O -O0 -O1 -O2 -O3 -Os -Og -Ofast"
     flags_opt_yes="-O2"
     flags_opt_off="-O0"
     CURL_CHECK_DEF([_WIN32], [], [silent])

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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