X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=templates%2Ffeature%2Fagl-devel%2Fagl-devel.md;fp=templates%2Ffeature%2Fagl-devel%2Fagl-devel.md;h=0000000000000000000000000000000000000000;hb=bf1fe809582f424c65e593ece030351aaf797065;hp=389dcba303661ec5d049787162ff38491ea17a8d;hpb=f5bad757c85b4937d27785ff4e9400ff0e171082;p=AGL%2Fmeta-agl.git diff --git a/templates/feature/agl-devel/agl-devel.md b/templates/feature/agl-devel/agl-devel.md deleted file mode 100644 index 389dcba30..000000000 --- a/templates/feature/agl-devel/agl-devel.md +++ /dev/null @@ -1,37 +0,0 @@ -# The features of 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.