Changeset 111786 in webkit
- Timestamp:
- Mar 22, 2012, 4:47:50 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r111781 r111786 1 2012-03-22 Mark Rowe <mrowe@apple.com> 2 3 Fix the build. 4 5 * Configurations/JavaScriptCore.xcconfig: Tell the linker to pull in all members from static libraries 6 rather than only those that contain symbols that JavaScriptCore itself uses. 7 * JavaScriptCore.xcodeproj/project.pbxproj: Remove some bogus settings that crept in to the Xcode project. 8 1 9 2012-03-22 Filip Pizlo <fpizlo@apple.com> 2 10 -
trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig
r110327 r111786 35 35 36 36 // Prevent C++ standard library operator new, delete and their related exception types from being exported as weak symbols. 37 OTHER_LDFLAGS_HIDE_SYMBOLS = -Wl,-unexported_symbol -Wl,__ZTISt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTISt9exception -Wl,-unexported_symbol -Wl,__ZTSSt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTSSt9exception -Wl,-unexported_symbol -Wl,__ZdlPvS_ -Wl,-unexported_symbol -Wl,__ZnwmPv ;37 OTHER_LDFLAGS_HIDE_SYMBOLS = -Wl,-unexported_symbol -Wl,__ZTISt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTISt9exception -Wl,-unexported_symbol -Wl,__ZTSSt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTSSt9exception -Wl,-unexported_symbol -Wl,__ZdlPvS_ -Wl,-unexported_symbol -Wl,__ZnwmPv -Wl,-all_load; 38 38 OTHER_LDFLAGS_BASE = -lobjc -Wl,-Y,3 $(OTHER_LDFLAGS_HIDE_SYMBOLS); 39 39 OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(REAL_PLATFORM_NAME)); -
trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r111778 r111786 3183 3183 buildSettings = { 3184 3184 INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 3185 LIBRARY_SEARCH_PATHS = (3186 "$(inherited)",3187 "\"$(SRCROOT)/../../WebKitBuild/Release\"",3188 );3189 3185 }; 3190 3186 name = Debug; … … 3195 3191 buildSettings = { 3196 3192 INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 3197 LIBRARY_SEARCH_PATHS = (3198 "$(inherited)",3199 "\"$(SRCROOT)/../../WebKitBuild/Release\"",3200 );3201 3193 }; 3202 3194 name = Release; … … 3207 3199 buildSettings = { 3208 3200 BUILD_VARIANTS = normal; 3209 LIBRARY_SEARCH_PATHS = (3210 "$(inherited)",3211 "\"$(SRCROOT)/../../WebKitBuild/Release\"",3212 );3213 3201 }; 3214 3202 name = Production; … … 3372 3360 buildSettings = { 3373 3361 INSTALL_PATH = "$(BUILT_PRODUCTS_DIR)"; 3374 LIBRARY_SEARCH_PATHS = (3375 "$(inherited)",3376 "\"$(SRCROOT)/../../WebKitBuild/Release\"",3377 );3378 3362 }; 3379 3363 name = Profiling;
Note:
See TracChangeset
for help on using the changeset viewer.