Changeset 246282 in webkit
- Timestamp:
- Jun 10, 2019, 2:35:13 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 11 edited
-
ChangeLog (modified) (1 diff)
-
DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig (modified) (1 diff)
-
DumpRenderTree/mac/Configurations/DumpRenderTreeApp.xcconfig (modified) (1 diff)
-
DumpRenderTree/mac/Configurations/LayoutTestHelper.xcconfig (modified) (1 diff)
-
ImageDiff/cg/Configurations/ImageDiff.xcconfig (modified) (1 diff)
-
MiniBrowser/Configurations/MiniBrowser.xcconfig (modified) (1 diff)
-
MobileMiniBrowser/Configurations/MobileMiniBrowser.xcconfig (modified) (1 diff)
-
TestWebKitAPI/Configurations/TestWTF.xcconfig (modified) (1 diff)
-
TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig (modified) (1 diff)
-
WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig (modified) (1 diff)
-
WebKitTestRunner/Configurations/WebKitTestRunnerApp.xcconfig (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r246276 r246282 1 2019-06-10 Alexey Proskuryakov <ap@apple.com> 2 3 Tool binaries like WebKitTestRunner have too aggressive stripping, resulting in non-symbolicated crash logs 4 https://bugs.webkit.org/show_bug.cgi?id=198616 5 rdar://problem/36386573 6 7 Reviewed by David Kilzer. 8 9 Adding an explicit STRIP_STYLE to appropriate xcconfigs. 10 11 * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig: 12 * DumpRenderTree/mac/Configurations/DumpRenderTreeApp.xcconfig: 13 * DumpRenderTree/mac/Configurations/LayoutTestHelper.xcconfig: 14 * ImageDiff/cg/Configurations/ImageDiff.xcconfig: 15 * MiniBrowser/Configurations/MiniBrowser.xcconfig: 16 * MobileMiniBrowser/Configurations/MobileMiniBrowser.xcconfig: 17 * TestWebKitAPI/Configurations/TestWTF.xcconfig: 18 * TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig: 19 * WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig: 20 * WebKitTestRunner/Configurations/WebKitTestRunnerApp.xcconfig: 21 1 22 2019-06-10 Wenson Hsieh <wenson_hsieh@apple.com> 2 23 -
trunk/Tools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig
r222897 r246282 28 28 PLATFORM_OTHER_LDFLAGS[sdk=macosx*] = -lWebCoreTestSupport -force_load $(BUILT_PRODUCTS_DIR)/libDumpRenderTree.a -framework Carbon -framework Cocoa -framework JavaScriptCore -framework OpenGL -framework QuartzCore -framework WebKit; 29 29 LD_RUNPATH_SEARCH_PATHS = "@loader_path/."; 30 STRIP_STYLE = debugging; 30 31 PRODUCT_NAME = DumpRenderTree; 31 32 SKIP_INSTALL[sdk=macosx*] = NO; -
trunk/Tools/DumpRenderTree/mac/Configurations/DumpRenderTreeApp.xcconfig
r222897 r246282 32 32 PLATFORM_OTHER_LDFLAGS[sdk=macosx*] = -framework JavaScriptCore; 33 33 34 STRIP_STYLE = debugging; 35 34 36 LD_RUNPATH_SEARCH_PATHS = "@loader_path/."; 35 37 -
trunk/Tools/DumpRenderTree/mac/Configurations/LayoutTestHelper.xcconfig
r184209 r246282 27 27 28 28 OTHER_LDFLAGS[sdk=macosx*] = $(inherited) -framework Carbon -framework Cocoa -framework OpenGL -framework IOKit; 29 STRIP_STYLE = debugging; -
trunk/Tools/ImageDiff/cg/Configurations/ImageDiff.xcconfig
r216207 r246282 29 29 OTHER_LDFLAGS[sdk=macosx*] = $(inherited) -framework Carbon -framework Cocoa -framework QuartzCore; 30 30 OTHER_LDFLAGS[sdk=iphone*] = $(inherited) -framework CoreFoundation -framework CoreGraphics -framework MobileCoreServices -framework ImageIO; 31 STRIP_STYLE = debugging; -
trunk/Tools/MiniBrowser/Configurations/MiniBrowser.xcconfig
r227908 r246282 29 29 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = * 30 30 OTHER_LDFLAGS[sdk=macosx*] = $(inherited) -framework Cocoa -framework WebKit 31 STRIP_STYLE = debugging; -
trunk/Tools/MobileMiniBrowser/Configurations/MobileMiniBrowser.xcconfig
r205353 r246282 23 23 24 24 PRODUCT_NAME = MiniBrowser 25 26 STRIP_STYLE=debugging -
trunk/Tools/TestWebKitAPI/Configurations/TestWTF.xcconfig
r215424 r246282 37 37 // FIXME: This should not be built on iOS. Instead we should create and use a TestWTF application. 38 38 OTHER_LDFLAGS_PLATFORM[sdk=iphone*] = -framework CoreGraphics; 39 40 STRIP_STYLE = debugging; -
trunk/Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig
r220536 r246282 38 38 39 39 CODE_SIGN_ENTITLEMENTS[sdk=iphone*] = Configurations/TestWebKitAPI-iOS.entitlements; 40 41 STRIP_STYLE = debugging; -
trunk/Tools/WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig
r222897 r246282 31 31 GCC_ENABLE_OBJC_EXCEPTIONS = YES; 32 32 OTHER_LDFLAGS[sdk=macosx*] = $(inherited) -lWebKitTestRunner -framework Carbon -framework Cocoa -framework JavaScriptCore -framework WebKit; 33 STRIP_STYLE = debugging; 33 34 SKIP_INSTALL[sdk=iphone*] = YES; 34 35 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = mac/*; -
trunk/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerApp.xcconfig
r244220 r246282 33 33 OTHER_LDFLAGS = $(inherited) -lWebKitTestRunner -lWebCoreTestSupport -framework JavaScriptCore -framework CoreGraphics -framework QuartzCore -framework ImageIO -framework IOKit -framework UIKit -framework WebKit -framework Foundation -framework GraphicsServices; 34 34 35 STRIP_STYLE = debugging; 36 35 37 SKIP_INSTALL[sdk=macosx*] = YES; 36 38
Note:
See TracChangeset
for help on using the changeset viewer.