Changeset 34476 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 9, 2008, 10:42:48 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34471 r34476 1 2008-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 1 8 2008-06-09 Cameron Zwarich <[email protected]> 2 9 -
trunk/JavaScriptCore/GNUmakefile.am
r34424 r34476 160 160 JavaScriptCore/API/NodeList.c \ 161 161 JavaScriptCore/API/minidom.c 162 Programs_minidom_CPPFLAGS = $(global_cppflags) $(javascriptcore_cppflags) 162 163 Programs_minidom_CPPFLAGS = \ 164 $(global_cppflags) \ 165 $(javascriptcore_cppflags) 166 163 167 Programs_minidom_CFLAGS = \ 168 -fno-strict-aliasing \ 169 -O2 \ 164 170 $(global_cflags) \ 165 171 $(GLOBALDEPS_CFLAGS) 172 166 173 Programs_minidom_CXXFLAGS = \ 174 -fno-strict-aliasing \ 175 -O2 \ 167 176 $(global_cxxflags) \ 168 177 $(global_cflags) \ 169 178 $(GLOBALDEPS_CFLAGS) 179 170 180 Programs_minidom_LDADD = \ 171 181 libJavaScriptCore.la \ … … 174 184 # testkjs 175 185 Programs_testkjs_SOURCES = JavaScriptCore/kjs/testkjs.cpp 186 176 187 Programs_testkjs_CPPFLAGS = \ 177 188 $(global_cppflags) \ 178 189 $(javascriptcore_cppflags) 190 179 191 Programs_testkjs_CXXFLAGS = \ 192 -fno-strict-aliasing \ 193 -O2 \ 180 194 $(global_cxxflags) \ 181 195 $(global_cflags) \ 182 196 $(GLOBALDEPS_CFLAGS) \ 183 197 $(UNICODE_CFLAGS) 198 184 199 Programs_testkjs_LDADD = \ 185 200 libJavaScriptCore.la
Note:
See TracChangeset
for help on using the changeset viewer.