Project

General

Profile

Installing Wt on Mac OS X Lion » History » Version 1

Koen Deforche, 08/12/2013 02:15 PM

1 1 Koen Deforche
h1. Installing Wt on Mac OS X Lion
2
3
{{toc}}
4
5
The following are generic installation instructions for installing Wt (from source) on OS X 10.7 "Lion" and above. The installation instructions below use CLang + libc++. This toolchain is recommended as it is clearly the way forward on Mac OS X and it is supported best by the other XCode tools (Instruments, Debugger, etc...).
6
7
Note that building with CLang (/usr/bin/c++) defaults (at the time of writing) to using the GNU stdlibc++. You need to pass @stdlib=libc++@ to select the new libc++, also in your own projects since these two standard library options are not binary compatible.
8
9
h2. Requirements 
10
11
* Get "Xcode":http://developer.apple.com/tools/xcode/ to get the compilers and basic libraries.
12
* Get "CMake":http://www.cmake.org/cmake/resources/software.html.
13
* Download "Boost 1.54.0":http://www.boost.org/users/download/ (why not, use the latest version).
14
15
h2. Preparation 
16
17
h3. Build Boost
18
19
The following builds and installs Boost in /usr/local:
20
21
<pre>
22
$ echo 'using clang ;' > ~/user-config.jam
23
$ cd boost*
24
$ ./bootstrap.sh
25
$ sudo ./b2 --toolset=clang cxxflags="-stdlib=libc++" linkflags="-stdlib=libc++" install
26
</pre>
27
28
If you would like to install in a different directory, you should add @--prefix=/custom/directory@ to the b2 command line options, and you will need to modify your dynamic library path:
29
30
<pre>
31
$ export DYLD_LIBRARY_PATH=/custom/directory/lib:$DYLD_LIBRARY_PATH
32
</pre>
33
34
35
h2. Building Wt 
36
37
Get the "latest Wt version":http://sourceforge.net/projects/witty/files/wt/. 
38
39
To build Wt, do the following:
40
41
<pre>
42
$ cd wt-3*
43
$ mkdir build
44
$ cd build
45
$ cmake CMAKE_CXX_FLAGS='-stdlib=libc++' -DCMAKE_EXE_LINKER_FLAGS='-stdlib=libc++' CMAKE_MODULE_LINKER_FLAGS='-stdlib=libc++' -DWT_CPP_11_MODE='-std=c++11' ../
46
$ make
47
$ make -C examples # to build the examples
48
</pre>
49
50
_NOTE: If you used the --prefix option when compiling Boost, you must run @cmake -DBOOST_DIR=/custom/directory@ instead of just @cmake@._
51
52
You may receive warnings that not all features will be built, but Wt doesn't require those. You can ofcourse install the other dependencies too, e.g. using portage. It doesn't matter that these other dependencies are built using gcc since these dependencies are C libraries and thus the libc++ issue does not exist.
53
54
To run the examples, please see the "generic installation instructions":http://www.webtoolkit.eu/wt/doc/reference/html/InstallationUnix.html#examples.