blob: 039ca623d7df3bce9eef23bd3687956cae0f708f [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
101 cmake -DWITH_SSL=0 ..
102or
103 cmake -DWITH_SSL:BOOL=OFF ..
104
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
149Below is an example of how one of these files might look like:
150
151 #
152 # CMake Toolchain file for crosscompiling on ARM.
153 #
154 # This can be used when running cmake in the following way:
155 # cd build/
156 # cmake .. -DCMAKE_TOOLCHAIN_FILE=/path/to/this/file/TC_arm-linux-gcc.cmake
157 #
158
159 set(CROSS_PATH /path/to/cross_environment/uClibc)
160
161 # Target operating system name.
162 set(CMAKE_SYSTEM_NAME Linux)
163
164 # Name of C compiler.
165 set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/arm-linux-uclibc-gcc")
166 set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/arm-linux-uclibc-g++")
167
168 # Where to look for the target environment. (More paths can be added here)
169 set(CMAKE_FIND_ROOT_PATH "${CROSS_PATH}")
170
171 # Adjust the default behavior of the FIND_XXX() commands:
172 # search programs in the host environment only.
173 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
174
175 # Search headers and libraries in the target environment only.
176 set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
177 set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
178
179Additional information on cross compilation with CMake:
180 http://www.vtk.org/Wiki/CMake_Cross_Compiling
Andy Green0097a992013-03-09 13:06:37 +0800181
182
183Memory efficiency
184-----------------
185
186Embedded server-only configuration without extensions (ie, no compression
187on websocket connections), but with full v13 websocket features and http
188server, built on ARM Cortex-A9:
189
190Update at 8dac94d (2013-02-18)
191
192./configure --without-client --without-extensions --disable-debug --without-daemonize
193
194Context Creation, 1024 fd limit[2]: 16720 (includes 12 bytes per fd)
195Per-connection [3]: 72 bytes, +1328 during headers
196
197.text .rodata .data .bss
19811512 2784 288 4
199
200This shows the impact of the major configuration with/without options at
20113ba5bbc633ea962d46d using Ubuntu ARM on a PandaBoard ES.
202
203These are accounting for static allocations from the library elf, there are
204additional dynamic allocations via malloc. These are a bit old now but give
205the right idea for relative "expense" of features.
206
207Static allocations, ARM9
208 .text .rodata .data .bss
209 All (no without) 35024 9940 336 4104
210 without client 25684 7144 336 4104
211 without client, exts 21652 6288 288 4104
212 without client, exts, debug[1] 19756 3768 288 4104
213 without server 30304 8160 336 4104
214 without server, exts 25382 7204 288 4104
215 without server, exts, debug[1] 23712 4256 288 4104
216
217[1] --disable-debug only removes messages below lwsl_notice. Since that is
218the default logging level the impact is not noticable, error, warn and notice
219logs are all still there.
220
221[2] 1024 fd per process is the default limit (set by ulimit) in at least Fedora
222and Ubuntu. You can make significant savings tailoring this to actual expected
223peak fds, ie, at a limit of 20, context creation allocation reduces to 4432 +
224240 = 4672)
225
226[3] known header content is freed after connection establishment
227
228
229