Changeset 34476 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 9, 2008, 10:42:48 PM (17 years ago)
Author:
[email protected]
Message:

2008-06-09 Alp Toker <[email protected]>

gcc3/autotools build fix. Add explicit -O2 -fno-strict-aliasing to
each of the tools since these are no longer set globally.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34471 r34476  
     12008-06-09  Alp Toker  <[email protected]>
     2
     3        gcc3/autotools build fix. Add explicit -O2 -fno-strict-aliasing to
     4        each of the tools since these are no longer set globally.
     5
     6        * GNUmakefile.am:
     7
    182008-06-09  Cameron Zwarich  <[email protected]>
    29
  • trunk/JavaScriptCore/GNUmakefile.am

    r34424 r34476  
    160160        JavaScriptCore/API/NodeList.c \
    161161        JavaScriptCore/API/minidom.c
    162 Programs_minidom_CPPFLAGS = $(global_cppflags) $(javascriptcore_cppflags)
     162
     163Programs_minidom_CPPFLAGS = \
     164        $(global_cppflags) \
     165        $(javascriptcore_cppflags)
     166
    163167Programs_minidom_CFLAGS = \
     168        -fno-strict-aliasing \
     169        -O2 \
    164170        $(global_cflags) \
    165171        $(GLOBALDEPS_CFLAGS)
     172
    166173Programs_minidom_CXXFLAGS = \
     174        -fno-strict-aliasing \
     175        -O2 \
    167176        $(global_cxxflags) \
    168177        $(global_cflags) \
    169178        $(GLOBALDEPS_CFLAGS)
     179
    170180Programs_minidom_LDADD = \
    171181         libJavaScriptCore.la \
     
    174184# testkjs
    175185Programs_testkjs_SOURCES = JavaScriptCore/kjs/testkjs.cpp
     186
    176187Programs_testkjs_CPPFLAGS = \
    177188        $(global_cppflags) \
    178189        $(javascriptcore_cppflags)
     190
    179191Programs_testkjs_CXXFLAGS = \
     192        -fno-strict-aliasing \
     193        -O2 \
    180194        $(global_cxxflags) \
    181195        $(global_cflags) \
    182196        $(GLOBALDEPS_CFLAGS) \
    183197        $(UNICODE_CFLAGS)
     198
    184199Programs_testkjs_LDADD = \
    185200        libJavaScriptCore.la
Note: See TracChangeset for help on using the changeset viewer.