pkgconfig.md 4.94 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
## Using GoogleTest from various build systems

GoogleTest comes with pkg-config files that can be used to determine all
necessary flags for compiling and linking to GoogleTest (and GoogleMock).
Pkg-config is a standardised plain-text format containing

*   the includedir (-I) path
*   necessary macro (-D) definitions
*   further required flags (-pthread)
*   the library (-L) path
*   the library (-l) to link to

All current build systems support pkg-config in one way or another. For all
examples here we assume you want to compile the sample
`samples/sample3_unittest.cc`.

### CMake

Using `pkg-config` in CMake is fairly easy:

```cmake
cmake_minimum_required(VERSION 3.0)

cmake_policy(SET CMP0048 NEW)
project(my_gtest_pkgconfig VERSION 0.0.1 LANGUAGES CXX)

find_package(PkgConfig)
pkg_search_module(GTEST REQUIRED gtest_main)

add_executable(testapp samples/sample3_unittest.cc)
target_link_libraries(testapp ${GTEST_LDFLAGS})
target_compile_options(testapp PUBLIC ${GTEST_CFLAGS})

include(CTest)
add_test(first_and_only_test testapp)
```

It is generally recommended that you use `target_compile_options` + `_CFLAGS`
over `target_include_directories` + `_INCLUDE_DIRS` as the former includes not
just -I flags (GoogleTest might require a macro indicating to internal headers
that all libraries have been compiled with threading enabled. In addition,
GoogleTest might also require `-pthread` in the compiling step, and as such
splitting the pkg-config `Cflags` variable into include dirs and macros for
`target_compile_definitions()` might still miss this). The same recommendation
goes for using `_LDFLAGS` over the more commonplace `_LIBRARIES`, which happens
to discard `-L` flags and `-pthread`.

Akash Patel's avatar
Akash Patel committed
48
### Help! pkg-config can't find GoogleTest!
49

Akash Patel's avatar
Akash Patel committed
50
51
52
Let's say you have a `CMakeLists.txt` along the lines of the one in this
tutorial and you try to run `cmake`. It is very possible that you get a failure
along the lines of:
53
54

```
Akash Patel's avatar
Akash Patel committed
55
56
57
-- Checking for one of the modules 'gtest_main'
CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:640 (message):
  None of the required 'gtest_main' found
58
59
```

Akash Patel's avatar
Akash Patel committed
60
61
62
63
64
These failures are common if you installed GoogleTest yourself and have not
sourced it from a distro or other package manager. If so, you need to tell
pkg-config where it can find the `.pc` files containing the information. Say you
installed GoogleTest to `/usr/local`, then it might be that the `.pc` files are
installed under `/usr/local/lib64/pkgconfig`. If you set
65
66

```
Akash Patel's avatar
Akash Patel committed
67
export PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig
68
69
```

Akash Patel's avatar
Akash Patel committed
70
pkg-config will also try to look in `PKG_CONFIG_PATH` to find `gtest_main.pc`.
71

Akash Patel's avatar
Akash Patel committed
72
### Using pkg-config in a cross-compilation setting
73

Akash Patel's avatar
Akash Patel committed
74
75
76
Pkg-config can be used in a cross-compilation setting too. To do this, let's
assume the final prefix of the cross-compiled installation will be `/usr`, and
your sysroot is `/home/MYUSER/sysroot`. Configure and install GTest using
77

Akash Patel's avatar
Akash Patel committed
78
79
80
```
mkdir build && cmake -DCMAKE_INSTALL_PREFIX=/usr ..
```
81

Akash Patel's avatar
Akash Patel committed
82
Install into the sysroot using `DESTDIR`:
83

Akash Patel's avatar
Akash Patel committed
84
85
```
make -j install DESTDIR=/home/MYUSER/sysroot
86
87
```

Akash Patel's avatar
Akash Patel committed
88
89
Before we continue, it is recommended to **always** define the following two
variables for pkg-config in a cross-compilation setting:
90

Akash Patel's avatar
Akash Patel committed
91
92
93
94
```
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=yes
export PKG_CONFIG_ALLOW_SYSTEM_LIBS=yes
```
95

Akash Patel's avatar
Akash Patel committed
96
97
98
otherwise `pkg-config` will filter `-I` and `-L` flags against standard prefixes
such as `/usr` (see https://bugs.freedesktop.org/show_bug.cgi?id=28264#c3 for
reasons why this stripping needs to occur usually).
99

Akash Patel's avatar
Akash Patel committed
100
If you look at the generated pkg-config file, it will look something like
101

Akash Patel's avatar
Akash Patel committed
102
103
104
105
106
107
108
109
110
111
112
```
libdir=/usr/lib64
includedir=/usr/include

Name: gtest
Description: GoogleTest (without main() function)
Version: 1.10.0
URL: https://github.com/google/googletest
Libs: -L${libdir} -lgtest -lpthread
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 -lpthread
```
113

Akash Patel's avatar
Akash Patel committed
114
115
116
117
Notice that the sysroot is not included in `libdir` and `includedir`! If you try
to run `pkg-config` with the correct
`PKG_CONFIG_LIBDIR=/home/MYUSER/sysroot/usr/lib64/pkgconfig` against this `.pc`
file, you will get
118

Akash Patel's avatar
Akash Patel committed
119
120
121
122
123
```
$ pkg-config --cflags gtest
-DGTEST_HAS_PTHREAD=1 -lpthread -I/usr/include
$ pkg-config --libs gtest
-L/usr/lib64 -lgtest -lpthread
124
125
```

Akash Patel's avatar
Akash Patel committed
126
127
128
129
which is obviously wrong and points to the `CBUILD` and not `CHOST` root. In
order to use this in a cross-compilation setting, we need to tell pkg-config to
inject the actual sysroot into `-I` and `-L` variables. Let us now tell
pkg-config about the actual sysroot
130
131

```
Akash Patel's avatar
Akash Patel committed
132
133
134
export PKG_CONFIG_DIR=
export PKG_CONFIG_SYSROOT_DIR=/home/MYUSER/sysroot
export PKG_CONFIG_LIBDIR=${PKG_CONFIG_SYSROOT_DIR}/usr/lib64/pkgconfig
135
136
```

Akash Patel's avatar
Akash Patel committed
137
and running `pkg-config` again we get
138
139

```
Akash Patel's avatar
Akash Patel committed
140
141
142
143
$ pkg-config --cflags gtest
-DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include
$ pkg-config --libs gtest
-L/home/MYUSER/sysroot/usr/lib64 -lgtest -lpthread
144
145
```

Akash Patel's avatar
Akash Patel committed
146
147
148
which contains the correct sysroot now. For a more comprehensive guide to also
including `${CHOST}` in build system calls, see the excellent tutorial by Diego
Elio Pettenò: <https://autotools.io/pkgconfig/cross-compiling.html>