blob: a2e0ba691ccee7debd0b1bcde937fcc0a34daaf7 [file] [log] [blame]
Andy Green0097a992013-03-09 13:06:37 +08001Introduction to CMake
2---------------------
Joakim Soderberg7df99082013-02-07 20:24:19 +08003
4CMake is a multi-platform build tool that can generate build files for many
5different target platforms. See more info at http://www.cmake.org
6
7CMake also allows/recommends you to do "out of source"-builds, that is,
8the build files are separated from your sources, so there is no need to
9create elaborate clean scripts to get a clean source tree, instead you
10simply remove your build directory.
11
12Libwebsockets has been tested to build successfully on the following platforms
13with SSL support (both OpenSSL/CyaSSL):
14
15- Windows
16- Linux (x86 and ARM)
17- OSX
18- NetBSD
19
20Building the library and test apps
21----------------------------------
22
23The project settings used by CMake to generate the platform specific build
24files is called CMakeLists.txt. CMake then uses one of its "Generators" to
25output a Visual Studio project or Make file for instance. To see a list of
26the available generators for your platform, simply run the "cmake" command.
27
28Note that by default OpenSSL will be linked, if you don't want SSL support
29see below on how to toggle compile options.
30
31Building on Unix:
32-----------------
33
341. Install CMake 2.6 or greater: http://cmake.org/cmake/resources/software.html
35 (Most Unix distributions comes with a packaged version also)
36
372. Install OpenSSL.
38
393. Generate the build files (default is Make files):
40
41 cd /path/to/src
42 mkdir build
43 cd build
44 cmake ..
45
46 (NOTE: The build/ directory can have any name and be located anywhere
47 on your filesystem, and that the argument ".." given to cmake is simply
Andy Green0097a992013-03-09 13:06:37 +080048 the source directory of libwebsockets containing the CMakeLists.txt
49 project file. All examples in this file assumes you use "..")
Joakim Soderberg7df99082013-02-07 20:24:19 +080050
Andy Green975423c2013-02-26 11:58:45 +080051 NOTE2
Andy Green799ecbf2013-02-19 10:26:39 +080052 A common option you may want to give is to set the install path, same
53 as --prefix= with autotools. It defaults to /usr/local.
54 You can do this by, eg
55
56 cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/usr
57
Andy Green975423c2013-02-26 11:58:45 +080058 NOTE3
59 On machines that want libraries in lib64, you can also add the
60 following to the cmake line
61
62 -DLIB_SUFFIX=64
63
Joakim Soderberg7df99082013-02-07 20:24:19 +0800644. Finally you can build using the generated Makefile:
65
66 make
67
68Building on Windows (Visual Studio)
69-----------------------------------
701. Install CMake 2.6 or greater: http://cmake.org/cmake/resources/software.html
71
722. Install OpenSSL binaries. http://www.openssl.org/related/binaries.html
73 (Preferably in the default location to make it easier for CMake to find them)
74
753. Generate the Visual studio project by opening the Visual Studio cmd prompt:
76
77 cd <path to src>
78 md build
79 cd build
80 cmake -G "Visual Studio 10" ..
81
82 (NOTE: There is also a cmake-gui available on Windows if you prefer that)
83
844. Now you should have a generated Visual Studio Solution in your
85 <path to src>/build directory, which can be used to build.
86
87Setting compile options
88-----------------------
89
90To set compile time flags you can either use one of the CMake gui applications
91or do it via command line.
92
93Command line
94------------
95To list avaialable options (ommit the H if you don't want the help text):
96
97 cmake -LH ..
98
99Then to set an option and build (for example turn off SSL support):
100
Andy Green1ea84e72014-02-21 18:45:45 +0800101 cmake -DLWS_WITH_SSL=0 ..
Joakim Soderberg7df99082013-02-07 20:24:19 +0800102or
Andy Green1ea84e72014-02-21 18:45:45 +0800103 cmake -DLWS_WITH_SSL:BOOL=OFF ..
Joakim Soderberg7df99082013-02-07 20:24:19 +0800104
105Unix GUI
106--------
107If you have a curses enabled build you simply type:
108(not all packages include this, my debian install does not for example).
109
110 ccmake
111
112Windows GUI
113-----------
114On windows CMake comes with a gui application:
115 Start -> Programs -> CMake -> CMake (cmake-gui)
116
117CyaSSL replacement for OpenSSL
118------------------------------
119CyaSSL is a lightweight SSL library targeted at embedded system:
120http://www.yassl.com/yaSSL/Products-cyassl.html
121
122It contains a OpenSSL compatability layer which makes it possible to pretty
123much link to it instead of OpenSSL, giving a much smaller footprint.
124
125NOTE: At the time of writing this the current release of CyaSSL contains a
126crash bug due to some APIs libwebsocket uses. To be able to use this you will
127need to use the current HEAD in their official repository:
128 https://github.com/cyassl/cyassl
129
130NOTE: cyassl needs to be compiled using the --enable-opensslExtra flag for
131this to work.
132
133Compiling libwebsockets with CyaSSL
134-----------------------------------
135
136cmake -DUSE_CYASSL=1
137 -DCYASSL_INCLUDE_DIRS=/path/to/cyassl
138 -DCYASSL_LIB=/path/to/cyassl/cyassl.a ..
139
140NOTE: On windows use the .lib file extension for CYASSL_LIB instead.
141
142Cross compiling
143---------------
144To enable cross compiling libwebsockets using CMake you need to create
145a "Toolchain file" that you supply to CMake when generating your build files.
146CMake will then use the cross compilers and build paths specified in this file
147to look for dependencies and such.
148
Andy Green5b479ac2013-03-30 10:30:03 +0800149Libwebsockets includes an example toolchain file cross-arm-linux-gnueabihf.cmake
150you can use as a starting point.
Joakim Soderberg7df99082013-02-07 20:24:19 +0800151
Andy Green5b479ac2013-03-30 10:30:03 +0800152The commandline to configure for cross with this would look like
Joakim Soderberg7df99082013-02-07 20:24:19 +0800153
Andy Green5b479ac2013-03-30 10:30:03 +0800154cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/usr \
155 -DCMAKE_TOOLCHAIN_FILE=../cross-arm-linux-gnueabihf.cmake \
156 -DWITHOUT_EXTENSIONS=1 -DWITH_SSL=0
Joakim Soderberg7df99082013-02-07 20:24:19 +0800157
Andy Green5b479ac2013-03-30 10:30:03 +0800158The example shows how to build with no external cross lib dependencies, you
159need to proide the cross libraries otherwise.
Joakim Soderberg7df99082013-02-07 20:24:19 +0800160
Andy Green5b479ac2013-03-30 10:30:03 +0800161NOTE: start from an EMPTY build directory if you had a non-cross build in there
162 before the settings will be cached and your changes ignored.
Joakim Soderberg7df99082013-02-07 20:24:19 +0800163
164Additional information on cross compilation with CMake:
165 http://www.vtk.org/Wiki/CMake_Cross_Compiling
Andy Green0097a992013-03-09 13:06:37 +0800166
167
168Memory efficiency
169-----------------
170
171Embedded server-only configuration without extensions (ie, no compression
172on websocket connections), but with full v13 websocket features and http
173server, built on ARM Cortex-A9:
174
175Update at 8dac94d (2013-02-18)
176
177./configure --without-client --without-extensions --disable-debug --without-daemonize
178
179Context Creation, 1024 fd limit[2]: 16720 (includes 12 bytes per fd)
180Per-connection [3]: 72 bytes, +1328 during headers
181
182.text .rodata .data .bss
18311512 2784 288 4
184
185This shows the impact of the major configuration with/without options at
18613ba5bbc633ea962d46d using Ubuntu ARM on a PandaBoard ES.
187
188These are accounting for static allocations from the library elf, there are
189additional dynamic allocations via malloc. These are a bit old now but give
190the right idea for relative "expense" of features.
191
192Static allocations, ARM9
193 .text .rodata .data .bss
194 All (no without) 35024 9940 336 4104
195 without client 25684 7144 336 4104
196 without client, exts 21652 6288 288 4104
197 without client, exts, debug[1] 19756 3768 288 4104
198 without server 30304 8160 336 4104
199 without server, exts 25382 7204 288 4104
200 without server, exts, debug[1] 23712 4256 288 4104
201
202[1] --disable-debug only removes messages below lwsl_notice. Since that is
203the default logging level the impact is not noticable, error, warn and notice
204logs are all still there.
205
206[2] 1024 fd per process is the default limit (set by ulimit) in at least Fedora
207and Ubuntu. You can make significant savings tailoring this to actual expected
208peak fds, ie, at a limit of 20, context creation allocation reduces to 4432 +
209240 = 4672)
210
211[3] known header content is freed after connection establishment
212
213
214