Changes between Version 29 and Version 30 of EFLWebKit
- Timestamp:
- Nov 14, 2010, 1:14:33 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKit
v29 v30 85 85 build$ 86 86 }}} 87 * Run CMake :87 * Run CMake (production settings, see bellow for development flags): 88 88 {{{ 89 build$ cmake .. -DPORT=Efl 89 build$ cmake .. -DPORT=Efl -DSHARED_CORE=OFF -DCMAKE_BUILD_TYPE=Release 90 90 }}} 91 91 * Run make: … … 98 98 make install 99 99 }}} 100 101 Alternatively while doing development it is interesting to turn on debug and shared core. '''Debug''' will generate immensely big libraries with debug symbols and also turn on assertions in the code. '''Shared core''' is a feature that splits all internal libraries into actual dynamic loaded libraries (libJavaScriptCore, libWebCore...) which reduces the link time and memory consumption, with a slight performance hit during startup (whence not recommended for production builds): 102 {{{ 103 build$ cmake .. -DPORT=Efl -DSHARED_CORE=ON -DCMAKE_BUILD_TYPE=Debug 104 }}} 105 100 106 101 107 == Building without !LibSoup or Glib ==