Changeset 162249 in webkit


Ignore:
Timestamp:
Jan 18, 2014 12:22:23 AM (10 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Bump the minimum required Clang version to 3.3
https://bugs.webkit.org/show_bug.cgi?id=127178

Reviewed by Martin Robinson.

  • Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to

build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r162045 r162249  
     12014-01-18  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Bump the minimum required Clang version to 3.3
     4        https://bugs.webkit.org/show_bug.cgi?id=127178
     5
     6        Reviewed by Martin Robinson.
     7
     8        * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
     9        build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
     10        support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
     11
    1122014-01-14  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/Source/autotools/CheckSystemAndBasicDependencies.m4

    r161359 r162249  
    9393])], [c_compiler="gcc"], [])
    9494AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
    95 #if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
     95#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3)
    9696#error Not a supported Clang compiler
    9797#endif
     
    100100
    101101if test "$c_compiler" = "unknown"; then
    102     AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C compilation])
     102    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.3 is required for C compilation])
    103103fi
    104104
     
    112112])], [cxx_compiler="g++"], [])
    113113AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
    114 #if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
     114#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 3)
    115115#error Not a supported Clang++ compiler
    116116#endif
     
    119119
    120120if test "$cxx_compiler" = "unknown"; then
    121     AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C++ compilation])
     121    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.3 is required for C++ compilation])
    122122fi
    123123
Note: See TracChangeset for help on using the changeset viewer.