Changeset 160996 in webkit


Ignore:
Timestamp:
Dec 23, 2013 7:55:02 AM (10 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Clean up compiler optimizations flags for libWTF, libJSC
https://bugs.webkit.org/show_bug.cgi?id=126157

Reviewed by Gustavo Noronha Silva.

Source/JavaScriptCore:

  • GNUmakefile.am: Remove the -fstrict-aliasing and -O3 compiler flags for libWTF.la. -O3 gets

overridden by -O2 that's listed in CXXFLAGS (or -O0 in case of debug builds) and -fstrict-aliasing
is enabled when -O2 is used (and shouldn't be enabled in debug builds anyway).

Source/WTF:

  • GNUmakefile.am: Remove the -fstrict-aliasing and -O3 compiler flags for libWTF.la. -O3 gets

overridden by -O2 that's listed in CXXFLAGS (or -O0 in case of debug builds) and -fstrict-aliasing
is enabled when -O2 is used (and shouldn't be enabled in debug builds anyway).

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r160995 r160996  
     12013-12-23  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Clean up compiler optimizations flags for libWTF, libJSC
     4        https://bugs.webkit.org/show_bug.cgi?id=126157
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Remove the -fstrict-aliasing and -O3 compiler flags for libWTF.la. -O3 gets
     9        overridden by -O2 that's listed in CXXFLAGS (or -O0 in case of debug builds) and -fstrict-aliasing
     10        is enabled when -O2 is used (and shouldn't be enabled in debug builds anyway).
     11
    1122013-12-22  Martin Robinson  <mrobinson@igalia.com>
    213
  • trunk/Source/JavaScriptCore/GNUmakefile.am

    r160758 r160996  
    3939
    4040libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CFLAGS = \
    41         -fstrict-aliasing \
    42         -O3 \
    4341        $(javascriptcore_cflags)
    4442
  • trunk/Source/WTF/ChangeLog

    r160959 r160996  
     12013-12-23  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Clean up compiler optimizations flags for libWTF, libJSC
     4        https://bugs.webkit.org/show_bug.cgi?id=126157
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Remove the -fstrict-aliasing and -O3 compiler flags for libWTF.la. -O3 gets
     9        overridden by -O2 that's listed in CXXFLAGS (or -O0 in case of debug builds) and -fstrict-aliasing
     10        is enabled when -O2 is used (and shouldn't be enabled in debug builds anyway).
     11
    1122013-12-20  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WTF/GNUmakefile.am

    r154498 r160996  
    3030
    3131libWTF_la_CFLAGS = \
    32         -fstrict-aliasing \
    33         -O3 \
    3432        $(global_cflags) \
    3533        $(GLIB_CFLAGS) \
Note: See TracChangeset for help on using the changeset viewer.