Changes between Version 126 and Version 127 of BuildingGtk
- Timestamp:
- Dec 10, 2016, 12:21:44 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingGtk
v126 v127 1 1 [[PageOutline]] 2 2 3 = Building WebKitGTK+ = 3 = Building WebKitGTK+ from a release tarball = 4 5 You can build and install WebKitGTK+ from a [https://webkitgtk.org/releases/ release tarball] the same as you would any other CMake module. The only trick is that you must pass the CMake option -DPORT=GTK. For example, to do a release build with debug info, with one parallel build per processor, and install the result: 4 6 5 7 {{{ 6 #!div style="border: 1pt dotted; margin: 1em; background: PeachPuff" 7 **These instructions are meant for use with the source code repository and are generally not suitable for building a release tarball.** 8 cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo 9 make -j`nproc` 10 make install 8 11 }}} 12 13 = Building WebKitGTK+ from git = 14 15 If you want to do development on WebKit itself, you'll need a git checkout. You'll also need to use our JHBuild moduleset to build several dependencies, as using other versions of dependencies may cause layout tests to fail. 9 16 10 17 == Getting the source == … … 91 98 92 99 This has been tested with WebKit2GTK 2.12.x and 2.14.x releases as well as with trunk. If you find any issue/comment, please comment on the [https://github.com/mariospr/webkit2gtk-ARM github repo], or open a pull request. 93