From: Philippe Gerum <rpm@xenomai.org>
To: Frederik Bayart <frederik_bayart@yahoo.co.uk>, xenomai@xenomai.org
Subject: Re: [Xenomai] include guard trank/posix/pthread.h
Date: Mon, 22 Jun 2015 14:48:47 +0200 [thread overview]
Message-ID: <5588042F.8030902@xenomai.org> (raw)
In-Reply-To: <5587E2D9.8000307@xenomai.org>
On 06/22/2015 12:26 PM, Philippe Gerum wrote:
> On 06/22/2015 11:54 AM, Frederik Bayart wrote:
>>
>>
>>
>> On Friday, 19 June 2015, 15:07, Philippe Gerum <rpm@xenomai.org> wrote:
>>> On 06/19/2015 03:02 PM, Frederik Bayart wrote:
>>>
>>>
>>>
>>>
>>>> Hallo,
>>>> I noticed that both /usr/xenomai/include/trank/trank.h and /usr/xenomai/include/trank/posix/pthread.h share the same include guard (_XENOMAI_TRANK_TRANK_H).Can this be an error ? I use compile flags 'xeno-config --skin=native --cflags' and get compile errors. If I change the include guard of pthread.h to _XENOMAI_TRANK_POSIX_PTHREAD_H, the problem seems to be solved.In attachment a diff with my changes.
>>>> Frederik
>>>>
>>>
>>> Yes, the guard is definitely wrong, will fix. Thanks for pointing this out.
>>>
>>> --
>>> Philippe.
>>
>> In the same context : to make it compile, I had to add
>> /usr/xenomai/include/trank/posix to
>> $(shell xeno-config --skin=native --cflags).
>> At the moment -I/usr/xenomai/include/trank -D__XENO_COMPAT__
>> -I/usr/xenomai/include/cobalt -I/usr/xenomai/include -D_GNU_SOURCE
>> -D_REENTRANT -D__COBALT__ -I/usr/xenomai/include/alchemy
>> is returned.
>>
>> If this is the correct solution, I can prepare a patch for
>> xeno-config if desired.
>>
>
> Please do.
>
-rc5 is ready and I don't want to hold it for too long, so if possible,
any feedback regarding this asap would be great. By default, I'll merge
the patch below, which should address this issue.
diff --git a/scripts/xeno-config-cobalt.in b/scripts/xeno-config-cobalt.in
index c6e51d1..7b623db 100644
--- a/scripts/xeno-config-cobalt.in
+++ b/scripts/xeno-config-cobalt.in
@@ -198,7 +198,10 @@ if test x$do_cflags = xy; then
test x$compat = xy && cflags="-I$XENO_INCLUDE_DIR/trank
-D__XENO_COMPAT__ $cflags"
for skin in $skin_list; do
case "$skin" in
- posix|cobalt|rtdm)
+ posix|rtdm)
+ test x$compat = xy && cflags="$cflags -I$XENO_INCLUDE_DIR/trank/posix"
+ ;;
+ cobalt)
;;
vxworks|psos|alchemy|smokey)
cflags="$cflags -I$XENO_INCLUDE_DIR/$skin"
--
Philippe.
next prev parent reply other threads:[~2015-06-22 12:48 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-22 9:54 [Xenomai] include guard trank/posix/pthread.h Frederik Bayart
2015-06-22 10:26 ` Philippe Gerum
2015-06-22 12:48 ` Philippe Gerum [this message]
2015-06-22 13:41 ` Frederik Bayart
2015-06-22 14:37 ` Frederik Bayart
2015-06-22 14:49 ` Philippe Gerum
2015-06-22 15:20 ` Frederik Bayart
2015-06-22 14:39 ` Philippe Gerum
2015-06-22 15:48 ` Frederik Bayart
2015-06-22 17:53 ` Philippe Gerum
-- strict thread matches above, loose matches on Subject: below --
2015-06-19 13:02 Frederik Bayart
2015-06-19 13:07 ` Philippe Gerum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5588042F.8030902@xenomai.org \
--to=rpm@xenomai.org \
--cc=frederik_bayart@yahoo.co.uk \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.