summaryrefslogtreecommitdiffstats
path: root/templates/feature/agl-devel/README_feature_agl-devel.md
blob: 24483f95ef4afeacfb22a54268d7071706fdf4f4 (plain)
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
---
description: Feature agl-devel
authors: José Bollo <jose.bollo@iot.bzh>, Ronan Le Martret <ronan.lemartret@iot.bzh>, Stephane Desneux <stephane.desneux@iot.bzh>, Yannick Gicquel <yannick.gicquel@iot.bzh>
---
	
### Feature agl-devel
	 
Activation of the agl-devel features turns on
features needed for developping and debugging
agl distribution.

This includes:

* adding to images some useful packages
* adding to images the package group 'packagegroup-agl-devel'
* definition of a contionnal the tag 'agl-devel'
    for conditionnal building

  * definition of the distro feature 'agl-devel'
  * adds packages for development in SDK

### How to use agl-devel in conditionnal builds

The following example shows how to activate C/C++ code
specific to agl-devel:

```yocto
CPPFLAGS_append_agl-devel = " -DAGL_DEVEL"
```

Using this, any code enclosed in

```yocto
#ifdef AGL_DEVEL
...my code specific to agl-devel...
#endif
```

will normaly be effective only if agl-devel is set on.

At this time, it is recommended to use AGL_DEVEL as tag
within C/C++ code.