Changeset 29986 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 4, 2008, 7:25:59 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r29961 r29986 1 2008-02-04 Rodney Dawes <[email protected]> 2 3 Reviewed by Alp Toker and Mark Rowe. 4 5 Fix http://bugs.webkit.org/show_bug.cgi?id=17175. 6 Bug 17175: Use of C++ compiler flags in CFLAGS 7 8 * GNUmakefile.am: Use global_cxxflags as well as global_cflags in CXXFLAGS. 9 1 10 2008-02-04 Alp Toker <[email protected]> 2 11 … … 18 27 putting things into the back/forward cache. If that's true, then this 19 28 should fix the problem. 20 29 21 30 (According to Geoff's measurements, in a PLT that exaggerates the 22 31 importance of symbol table saving during cached page creation, this -
trunk/JavaScriptCore/GNUmakefile.am
r29961 r29986 150 150 JavaScriptCore/API/minidom.c 151 151 Programs_minidom_CPPFLAGS = $(global_cppflags) 152 Programs_minidom_CXXFLAGS = $(global_c flags)152 Programs_minidom_CXXFLAGS = $(global_cxxflags) $(global_cflags) 153 153 Programs_minidom_LDADD = libJavaScriptCore.la 154 154 Programs_minidom_LDFLAGS = -rpath $(CURDIR)/.libs … … 157 157 Programs_testkjs_SOURCES = JavaScriptCore/kjs/testkjs.cpp 158 158 Programs_testkjs_CPPFLAGS = $(global_cppflags) 159 Programs_testkjs_CXXFLAGS = $(global_c flags)159 Programs_testkjs_CXXFLAGS = $(global_cxxflags) $(global_cflags) 160 160 Programs_testkjs_LDADD = libJavaScriptCore.la 161 161 Programs_testkjs_LDFLAGS = -rpath $(CURDIR)/.libs
Note:
See TracChangeset
for help on using the changeset viewer.