* [rocko/master][PATCH 1/4] doxygen: import from meta-arago
@ 2017-12-19 6:01 Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation Denys Dmytriyenko
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2017-12-19 6:01 UTC (permalink / raw)
To: meta-ti
From: Denys Dmytriyenko <denys@ti.com>
Many LLD and RTOS components in meta-ti use doxygen during build.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
.../doxygen/doxygen/patch-flex_2_6_0.diff | 66 ++++++++++++++++++++++
recipes-devtools/doxygen/doxygen_1.8.9.1.bb | 34 +++++++++++
2 files changed, 100 insertions(+)
create mode 100644 recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff
create mode 100644 recipes-devtools/doxygen/doxygen_1.8.9.1.bb
diff --git a/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff b/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff
new file mode 100644
index 0000000..36d7379
--- /dev/null
+++ b/recipes-devtools/doxygen/doxygen/patch-flex_2_6_0.diff
@@ -0,0 +1,66 @@
+--- src/code.l.orig
++++ src/code.l
+@@ -3695,7 +3695,7 @@ void codeFreeScanner()
+ extern "C" { // some bogus code to keep the compiler happy
+ void codeYYdummy() { yy_flex_realloc(0,0); }
+ }
+-#elif YY_FLEX_SUBMINOR_VERSION<33
++#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
+ #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!"
+ #endif
+
+--- src/commentscan.l.orig
++++ src/commentscan.l
+@@ -1098,7 +1098,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
+ // but we need to know the position in the input buffer where this
+ // rule matched.
+ // for flex 2.5.33+ we should use YY_CURRENT_BUFFER_LVALUE
+-#if YY_FLEX_MINOR_VERSION>=5 && YY_FLEX_SUBMINOR_VERSION>=33
++#if YY_FLEX_MAJOR_VERSION>=2 && (YY_FLEX_MINOR_VERSION>5 || (YY_FLEX_MINOR_VERSION==5 && YY_FLEX_SUBMINOR_VERSION>=33))
+ inputPosition=prevPosition + (int)(yy_bp - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf);
+ #else
+ inputPosition=prevPosition + (int)(yy_bp - yy_current_buffer->yy_ch_buf);
+@@ -1160,7 +1160,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
+ g_memberGroupHeader.resize(0);
+ parseMore=TRUE;
+ needNewEntry = TRUE;
+-#if YY_FLEX_MINOR_VERSION>=5 && YY_FLEX_SUBMINOR_VERSION>=33
++#if YY_FLEX_MAJOR_VERSION>=2 && (YY_FLEX_MINOR_VERSION>5 || (YY_FLEX_MINOR_VERSION==5 && YY_FLEX_SUBMINOR_VERSION>=33))
+ inputPosition=prevPosition + (int)(yy_bp - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf) + strlen(yytext);
+ #else
+ inputPosition=prevPosition + (int)(yy_bp - yy_current_buffer->yy_ch_buf) + strlen(yytext);
+
+--- src/fortrancode.l.orig
++++ src/fortrancode.l
+@@ -1289,7 +1289,7 @@ void parseFortranCode(CodeOutputInterfac
+ extern "C" { // some bogus code to keep the compiler happy
+ void fortrancodeYYdummy() { yy_flex_realloc(0,0); }
+ }
+-#elif YY_FLEX_SUBMINOR_VERSION<33
++#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
+ #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!"
+ #else
+ extern "C" { // some bogus code to keep the compiler happy
+
+--- src/pycode.l.orig
++++ src/pycode.l
+@@ -1503,7 +1503,7 @@ void parsePythonCode(CodeOutputInterface
+ extern "C" { // some bogus code to keep the compiler happy
+ void pycodeYYdummy() { yy_flex_realloc(0,0); }
+ }
+-#elif YY_FLEX_SUBMINOR_VERSION<33
++#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
+ #error "You seem to be using a version of flex newer than 2.5.4. These are currently incompatible with 2.5.4, and do NOT work with doxygen! Please use version 2.5.4 or expect things to be parsed wrongly! A bug report has been submitted (#732132)."
+ #endif
+
+--- src/vhdlcode.l
++++ src.a/vhdlcode.l
+@@ -1613,7 +1613,7 @@ void codeFreeVhdlScanner()
+ extern "C" { // some bogus code to keep the compiler happy
+ void vhdlcodeYYdummy() { yy_flex_realloc(0,0); }
+ }
+-#elif YY_FLEX_SUBMINOR_VERSION<33
++#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
+ #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!"
+ #endif
+
diff --git a/recipes-devtools/doxygen/doxygen_1.8.9.1.bb b/recipes-devtools/doxygen/doxygen_1.8.9.1.bb
new file mode 100644
index 0000000..27560fd
--- /dev/null
+++ b/recipes-devtools/doxygen/doxygen_1.8.9.1.bb
@@ -0,0 +1,34 @@
+SUMMARY = "Utilities for generating documentation from source code"
+HOMEPAGE = "http://www.doxygen.org/"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b380c86cea229fa42b9e543fc491f5eb"
+
+DEPENDS = "flex-native bison-native"
+
+SRC_URI = "http://ftp.stack.nl/pub/users/dimitri/${BP}.src.tar.gz \
+ file://patch-flex_2_6_0.diff;striplevel=0"
+
+SRC_URI[md5sum] = "3d1a5c26bef358c10a3894f356a69fbc"
+SRC_URI[sha256sum] = "d4ab6e28d4d45d8956cad17470aade3fbe2356e8f64b92167e738c1887feccec"
+
+EXTRA_OECONF = "--prefix ${prefix}"
+
+do_configure () {
+ ./configure ${EXTRA_OECONF}
+
+ # TODO on rebuilds will repeatedly append. Change logic to include a
+ # separate file and overwrite that file?
+ echo "TMAKE_CC=${CC}" >> tmake/lib/linux-g++/tmake.conf
+ echo "TMAKE_CXX=${CXX}" >> tmake/lib/linux-g++/tmake.conf
+ echo "TMAKE_CFLAGS=${CFLAGS}" >> tmake/lib/linux-g++/tmake.conf
+ echo "TMAKE_CXXFLAGS=${CXXFLAGS}" >> tmake/lib/linux-g++/tmake.conf
+ echo "TMAKE_LINK=${CXX}" >> tmake/lib/linux-g++/tmake.conf
+ echo "TMAKE_LFLAGS=${LDFLAGS}" >> tmake/lib/linux-g++/tmake.conf
+}
+
+do_install() {
+ oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1
+}
+
+BBCLASSEXTEND = "native nativesdk"
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread* [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation
2017-12-19 6:01 [rocko/master][PATCH 1/4] doxygen: import from meta-arago Denys Dmytriyenko
@ 2017-12-19 6:01 ` Denys Dmytriyenko
2018-01-05 18:33 ` Joshua Watt
2017-12-19 6:01 ` [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native " Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 4/4] layer.conf: remove doxygen from HOSTTOOLS, depend on doxygen-native instead Denys Dmytriyenko
2 siblings, 1 reply; 8+ messages in thread
From: Denys Dmytriyenko @ 2017-12-19 6:01 UTC (permalink / raw)
To: meta-ti
From: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
classes/ti-pdk.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/classes/ti-pdk.bbclass b/classes/ti-pdk.bbclass
index f876802..801c495 100644
--- a/classes/ti-pdk.bbclass
+++ b/classes/ti-pdk.bbclass
@@ -3,7 +3,7 @@ require recipes-ti/includes/ti-staging.inc
inherit perlnative
-DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-rtos libxml-simple-perl-native gcc-arm-none-eabi-native ti-cgt6x-native ti-cgt-pru-native ti-pdk-build-rtos"
+DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-rtos libxml-simple-perl-native gcc-arm-none-eabi-native ti-cgt6x-native ti-cgt-pru-native ti-pdk-build-rtos doxygen-native"
DEPENDS_append_omap-a15 = " ti-cgt-arm-native"
DEPENDS_remove_ti33x = "ti-cgt6x-native"
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation
2017-12-19 6:01 ` [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation Denys Dmytriyenko
@ 2018-01-05 18:33 ` Joshua Watt
0 siblings, 0 replies; 8+ messages in thread
From: Joshua Watt @ 2018-01-05 18:33 UTC (permalink / raw)
To: Denys Dmytriyenko, meta-ti
On Tue, 2017-12-19 at 01:01 -0500, Denys Dmytriyenko wrote:
> From: Denys Dmytriyenko <denys@ti.com>
>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
> classes/ti-pdk.bbclass | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/classes/ti-pdk.bbclass b/classes/ti-pdk.bbclass
> index f876802..801c495 100644
> --- a/classes/ti-pdk.bbclass
> +++ b/classes/ti-pdk.bbclass
> @@ -3,7 +3,7 @@ require recipes-ti/includes/ti-staging.inc
>
> inherit perlnative
>
> -DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-
> rtos libxml-simple-perl-native gcc-arm-none-eabi-native ti-cgt6x-
> native ti-cgt-pru-native ti-pdk-build-rtos"
> +DEPENDS = "ti-xdctools ti-cg-xml-native ti-sysbios common-csl-ip-
> rtos libxml-simple-perl-native gcc-arm-none-eabi-native ti-cgt6x-
> native ti-cgt-pru-native ti-pdk-build-rtos doxygen-native"
>
> DEPENDS_append_omap-a15 = " ti-cgt-arm-native"
> DEPENDS_remove_ti33x = "ti-cgt6x-native"
> --
> 2.7.4
>
Can we backport this to morty please?
^ permalink raw reply [flat|nested] 8+ messages in thread
* [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native for documentation
2017-12-19 6:01 [rocko/master][PATCH 1/4] doxygen: import from meta-arago Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation Denys Dmytriyenko
@ 2017-12-19 6:01 ` Denys Dmytriyenko
2018-01-05 18:33 ` Joshua Watt
2017-12-19 6:01 ` [rocko/master][PATCH 4/4] layer.conf: remove doxygen from HOSTTOOLS, depend on doxygen-native instead Denys Dmytriyenko
2 siblings, 1 reply; 8+ messages in thread
From: Denys Dmytriyenko @ 2017-12-19 6:01 UTC (permalink / raw)
To: meta-ti
From: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
recipes-ti/openmp-rtos/openmp-rtos_git.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-ti/openmp-rtos/openmp-rtos_git.bb b/recipes-ti/openmp-rtos/openmp-rtos_git.bb
index f5bf476..df082ea 100644
--- a/recipes-ti/openmp-rtos/openmp-rtos_git.bb
+++ b/recipes-ti/openmp-rtos/openmp-rtos_git.bb
@@ -19,7 +19,7 @@ SRCREV = "a2a518dcc9154a372b38bd5be8a483359123823c"
LIC_FILES_CHKSUM = "file://docs/license/omp_manifest_template.html;md5=61a6972303c0447b7c056195d7ebafee"
-DEPENDS = "common-csl-ip-rtos ti-xdctools ti-ipc-rtos ti-sysbios ti-cgt6x-native libulm zip-native"
+DEPENDS = "common-csl-ip-rtos doxygen-native libulm ti-xdctools ti-ipc-rtos ti-sysbios ti-cgt6x-native zip-native"
DEPENDS_append_k2hk = " qmss-lld-rtos cppi-lld-rtos"
DEPENDS_append_k2e = " qmss-lld-rtos cppi-lld-rtos"
DEPENDS_append_k2l-evm = " qmss-lld-rtos cppi-lld-rtos"
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native for documentation
2017-12-19 6:01 ` [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native " Denys Dmytriyenko
@ 2018-01-05 18:33 ` Joshua Watt
2018-01-08 19:29 ` Denys Dmytriyenko
0 siblings, 1 reply; 8+ messages in thread
From: Joshua Watt @ 2018-01-05 18:33 UTC (permalink / raw)
To: Denys Dmytriyenko, meta-ti
On Tue, 2017-12-19 at 01:01 -0500, Denys Dmytriyenko wrote:
> From: Denys Dmytriyenko <denys@ti.com>
>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
> recipes-ti/openmp-rtos/openmp-rtos_git.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-ti/openmp-rtos/openmp-rtos_git.bb b/recipes-
> ti/openmp-rtos/openmp-rtos_git.bb
> index f5bf476..df082ea 100644
> --- a/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> +++ b/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> @@ -19,7 +19,7 @@ SRCREV = "a2a518dcc9154a372b38bd5be8a483359123823c"
>
> LIC_FILES_CHKSUM =
> "file://docs/license/omp_manifest_template.html;md5=61a6972303c0447b7
> c056195d7ebafee"
>
> -DEPENDS = "common-csl-ip-rtos ti-xdctools ti-ipc-rtos ti-sysbios ti-
> cgt6x-native libulm zip-native"
> +DEPENDS = "common-csl-ip-rtos doxygen-native libulm ti-xdctools ti-
> ipc-rtos ti-sysbios ti-cgt6x-native zip-native"
> DEPENDS_append_k2hk = " qmss-lld-rtos cppi-lld-rtos"
> DEPENDS_append_k2e = " qmss-lld-rtos cppi-lld-rtos"
> DEPENDS_append_k2l-evm = " qmss-lld-rtos cppi-lld-rtos"
> --
> 2.7.4
>
Can we backport this to morty please?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native for documentation
2018-01-05 18:33 ` Joshua Watt
@ 2018-01-08 19:29 ` Denys Dmytriyenko
2018-01-08 19:36 ` Joshua Watt
0 siblings, 1 reply; 8+ messages in thread
From: Denys Dmytriyenko @ 2018-01-08 19:29 UTC (permalink / raw)
To: Joshua Watt; +Cc: meta-ti
On Fri, Jan 05, 2018 at 12:33:23PM -0600, Joshua Watt wrote:
> On Tue, 2017-12-19 at 01:01 -0500, Denys Dmytriyenko wrote:
> > From: Denys Dmytriyenko <denys@ti.com>
> >
> > Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > ---
> > recipes-ti/openmp-rtos/openmp-rtos_git.bb | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/recipes-ti/openmp-rtos/openmp-rtos_git.bb b/recipes-
> > ti/openmp-rtos/openmp-rtos_git.bb
> > index f5bf476..df082ea 100644
> > --- a/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> > +++ b/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> > @@ -19,7 +19,7 @@ SRCREV = "a2a518dcc9154a372b38bd5be8a483359123823c"
> >
> > LIC_FILES_CHKSUM =
> > "file://docs/license/omp_manifest_template.html;md5=61a6972303c0447b7
> > c056195d7ebafee"
> >
> > -DEPENDS = "common-csl-ip-rtos ti-xdctools ti-ipc-rtos ti-sysbios ti-
> > cgt6x-native libulm zip-native"
> > +DEPENDS = "common-csl-ip-rtos doxygen-native libulm ti-xdctools ti-
> > ipc-rtos ti-sysbios ti-cgt6x-native zip-native"
> > DEPENDS_append_k2hk = " qmss-lld-rtos cppi-lld-rtos"
> > DEPENDS_append_k2e = " qmss-lld-rtos cppi-lld-rtos"
> > DEPENDS_append_k2l-evm = " qmss-lld-rtos cppi-lld-rtos"
> > --
> > 2.7.4
> >
> Can we backport this to morty please?
This change requires adding doxygen recipe to meta-ti, which is a new feature
and not a simple bugfix. It's probably too late for adding new stuff to morty.
Do you have specific issues with the way it used to work in morty? Since there
weren't RSS or HOSTTOOLS restrictions in morty, host-wide doxygen install used
to work just fine then.
--
Denys
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native for documentation
2018-01-08 19:29 ` Denys Dmytriyenko
@ 2018-01-08 19:36 ` Joshua Watt
0 siblings, 0 replies; 8+ messages in thread
From: Joshua Watt @ 2018-01-08 19:36 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On Mon, 2018-01-08 at 14:29 -0500, Denys Dmytriyenko wrote:
> On Fri, Jan 05, 2018 at 12:33:23PM -0600, Joshua Watt wrote:
> > On Tue, 2017-12-19 at 01:01 -0500, Denys Dmytriyenko wrote:
> > > From: Denys Dmytriyenko <denys@ti.com>
> > >
> > > Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > > ---
> > > recipes-ti/openmp-rtos/openmp-rtos_git.bb | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/recipes-ti/openmp-rtos/openmp-rtos_git.bb b/recipes-
> > > ti/openmp-rtos/openmp-rtos_git.bb
> > > index f5bf476..df082ea 100644
> > > --- a/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> > > +++ b/recipes-ti/openmp-rtos/openmp-rtos_git.bb
> > > @@ -19,7 +19,7 @@ SRCREV =
> > > "a2a518dcc9154a372b38bd5be8a483359123823c"
> > >
> > > LIC_FILES_CHKSUM =
> > > "file://docs/license/omp_manifest_template.html;md5=61a6972303c04
> > > 47b7
> > > c056195d7ebafee"
> > >
> > > -DEPENDS = "common-csl-ip-rtos ti-xdctools ti-ipc-rtos ti-sysbios
> > > ti-
> > > cgt6x-native libulm zip-native"
> > > +DEPENDS = "common-csl-ip-rtos doxygen-native libulm ti-xdctools
> > > ti-
> > > ipc-rtos ti-sysbios ti-cgt6x-native zip-native"
> > > DEPENDS_append_k2hk = " qmss-lld-rtos cppi-lld-rtos"
> > > DEPENDS_append_k2e = " qmss-lld-rtos cppi-lld-rtos"
> > > DEPENDS_append_k2l-evm = " qmss-lld-rtos cppi-lld-rtos"
> > > --
> > > 2.7.4
> > >
> >
> > Can we backport this to morty please?
>
> This change requires adding doxygen recipe to meta-ti, which is a new
> feature
> and not a simple bugfix. It's probably too late for adding new stuff
> to morty.
>
> Do you have specific issues with the way it used to work in morty?
> Since there
> weren't RSS or HOSTTOOLS restrictions in morty, host-wide doxygen
> install used
> to work just fine then.
Ya makes sense... We have been carrying around a bbappend that did the
same thing as this patch, but we've always had a doxygen recipe in our
layer setup. I missed/forgot that doxygen *wasn't* in meta-ti (on
morty). We can just keep using the bbappend, sorry for the noise
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [rocko/master][PATCH 4/4] layer.conf: remove doxygen from HOSTTOOLS, depend on doxygen-native instead
2017-12-19 6:01 [rocko/master][PATCH 1/4] doxygen: import from meta-arago Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native " Denys Dmytriyenko
@ 2017-12-19 6:01 ` Denys Dmytriyenko
2 siblings, 0 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2017-12-19 6:01 UTC (permalink / raw)
To: meta-ti
From: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
conf/layer.conf | 3 ---
1 file changed, 3 deletions(-)
diff --git a/conf/layer.conf b/conf/layer.conf
index 4c2cf5f..a07e62f 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -27,6 +27,3 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \
qmss-lld \
multiprocmgr \
"
-
-# Required by openmp-rtos "docs" target
-HOSTTOOLS_NONFATAL += "doxygen"
--
2.7.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2018-01-08 19:37 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-19 6:01 [rocko/master][PATCH 1/4] doxygen: import from meta-arago Denys Dmytriyenko
2017-12-19 6:01 ` [rocko/master][PATCH 2/4] ti-pdk.bbclass: depend on doxygen native for documentation Denys Dmytriyenko
2018-01-05 18:33 ` Joshua Watt
2017-12-19 6:01 ` [rocko/master][PATCH 3/4] openmp-rtos: depend on doxygen-native " Denys Dmytriyenko
2018-01-05 18:33 ` Joshua Watt
2018-01-08 19:29 ` Denys Dmytriyenko
2018-01-08 19:36 ` Joshua Watt
2017-12-19 6:01 ` [rocko/master][PATCH 4/4] layer.conf: remove doxygen from HOSTTOOLS, depend on doxygen-native instead Denys Dmytriyenko
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.