Changes between Version 4 and Version 5 of DeveloperTips
- Timestamp:
- Jan 9, 2014, 3:02:17 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperTips
v4 v5 12 12 1. Change Role to private. 13 13 14 == Building Tips == 15 16 * Use `Tools/Scripts/filter-webkit-build` to reduce the amount of build spam for ordinary builds. (Some error messages might get swallowed, so don't use this if you are diagnosing a build failure.) 17 14 18 == Debugging == 15 19 16 20 See [http://webkit.org/building/debug.html this page] for how to debug WebCore, JavaScriptCore or WebKit. 21 22 23 == Submitting Patches == 24 25 === Configuring Authentication === 26 27 On the Mac platform, the `webkit-patch` tool can read your Bugzilla credentials from Keychain. However, 28 in some circumstances the script may not ask to save credentials into the keychain. To manually add these credentials, 29 use the following command: 30 31 ```security add-internet-password -r http -s bugs.webkit.org -a name@email.com -w supersecurepassword```