Changeset 267416 in webkit
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r267399 r267416 1 2020-09-22 Jonathan Bedard <jbedard@apple.com> 2 3 Correct instructions for building iOS in ReadMe 4 https://bugs.webkit.org/show_bug.cgi?id=216825 5 <rdar://problem/69372654> 6 7 Reviewed by David Kilzer. 8 9 * ReadMe.md: Update iOS build instructions to apply to all embedded platforms. 10 1 11 2020-09-21 Adrian Perez de Castro <aperez@igalia.com> 2 12 -
trunk/ReadMe.md
r242121 r267416 76 76 If you don't use a custom build location in Xcode preferences, you have to update the workspace settings to use `WebKitBuild` directory. In menu bar, choose File > Workspace Settings, then click the Advanced button, select "Custom", "Relative to Workspace", and enter `WebKitBuild` for both Products and Intermediates. 77 77 78 ### Building iOS Port78 ### Embedded Builds 79 79 80 The first time after you install a new Xcode, you will need to run the following command to enable Xcode to build command line tools for iOS Simulator:80 iOS, tvOS and watchOS are all considered embedded builds. The first time after you install a new Xcode, you will need to run: 81 81 82 82 ``` … … 86 86 Without this step, you will see the error message: "`target specifies product type ‘com.apple.product-type.tool’, but there’s no such product type for the ‘iphonesimulator’ platform.`" when building target `JSCLLIntOffsetsExtractor` of project `JavaScriptCore`. 87 87 88 Run the following command to build a debug build with debugging symbols and assertions for iOS:88 Run the following command to build a debug build with debugging symbols and assertions for embededded simulators: 89 89 90 90 ``` 91 Tools/Scripts/build-webkit --debug -- ios-simulator91 Tools/Scripts/build-webkit --debug --<platform>-simulator 92 92 ``` 93 94 or embedded devices: 95 ``` 96 Tools/Scripts/build-webkit --debug --<platform>-device 97 ``` 98 99 where `platform` is `ios`, `tvos` or `watchos`. 93 100 94 101 ### Building the GTK+ Port
Note:
See TracChangeset
for help on using the changeset viewer.