Changeset 188912 in webkit


Ignore:
Timestamp:
Aug 25, 2015 10:02:34 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

Require GCC version at least 4.9
https://bugs.webkit.org/show_bug.cgi?id=148430

Reviewed by Darin Adler.

  • wtf/Compiler.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r188822 r188912  
     12015-08-25  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Require GCC version at least 4.9
     4        https://bugs.webkit.org/show_bug.cgi?id=148430
     5
     6        Reviewed by Darin Adler.
     7
     8        * wtf/Compiler.h:
     9
    1102015-08-22  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WTF/wtf/Compiler.h

    r188311 r188912  
    7272#define GCC_VERSION_AT_LEAST(major, minor, patch) (GCC_VERSION >= (major * 10000 + minor * 100 + patch))
    7373
    74 #if !GCC_VERSION_AT_LEAST(4, 7, 0)
    75 #error "Please use a newer version of GCC. WebKit requires GCC 4.7.0 or newer to compile."
     74#if !GCC_VERSION_AT_LEAST(4, 9, 0)
     75#error "Please use a newer version of GCC. WebKit requires GCC 4.9.0 or newer to compile."
    7676#endif
    7777
     
    8080#endif
    8181
    82 #if GCC_VERSION_AT_LEAST(4, 8, 0)
    8382#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
    84 #endif
    8583
    8684#if (defined(__GXX_EXPERIMENTAL_CXX0X__) || (defined(__cplusplus) && __cplusplus >= 201103L))
Note: See TracChangeset for help on using the changeset viewer.