<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Aug 28, 2017 at 9:39 AM, Gedare Bloom <span dir="ltr"><<a href="mailto:gedare@rtems.org" target="_blank">gedare@rtems.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Sun, Aug 27, 2017 at 5:02 PM, Joel Sherrill <<a href="mailto:joel@rtems.org">joel@rtems.org</a>> wrote:<br>
> ---<br>
>  cpukit/libmisc/shell/main_dd.c | 11 +++++++++++<br>
>  1 file changed, 11 insertions(+)<br>
><br>
> diff --git a/cpukit/libmisc/shell/main_<wbr>dd.c b/cpukit/libmisc/shell/main_<wbr>dd.c<br>
> index e9c8bf3..6ae4abb 100644<br>
> --- a/cpukit/libmisc/shell/main_<wbr>dd.c<br>
> +++ b/cpukit/libmisc/shell/main_<wbr>dd.c<br>
> @@ -73,6 +73,17 @@ __FBSDID("$FreeBSD: src/bin/dd/dd.c,v 1.43 2004/08/15 19:10:05 rwatson Exp $");<br>
>  #include <string.h><br>
>  #include <unistd.h><br>
><br>
> +#ifdef __rtems__<br>
> +/*<br>
> + * We should be able to define _XOPEN_SOURCE=900 to get a prototype for<br>
> + * swab() but if that is defined before including <rtems.h>, then the RTEMS<br>
> + * headers don't compile. If defined after including <rtems.h>, then<br>
> + * it still doesn't trip the include. Thus this prototype.<br>
> + */<br>
</span>Why don't the rtems headers compile?<br>
<br></blockquote><div><br></div><div>Looks like rtems.h needs BSD stuff enabled to know the core time types. When </div><div>you add _XOPEN_SOURCE 900, it doesn't compile. If you add it immediately</div><div>below rtems.h, then it doesn't have any impact.</div><div><br></div><div>Try removing the warning for a few minutes yourself and see if you have</div><div>any insight. My hunch is that this hints at something ugly.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I don't see a patch 1/2.<br></blockquote><div><br></div><div>I was working on a branch and the other patch was an obvious warning fix</div><div>so I committed it directly.</div><div><br></div><div>I posted this one because it is definitely more of a hack and hints at</div><div>some weird underlying header file issue.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
> +<br>
> +void swab(const void *from, void *to, ssize_t n);<br>
> +#endif<br>
> +<br>
>  #include "dd.h"<br>
>  #include "extern-dd.h"<br>
><br>
> --<br>
> 1.8.3.1<br>
><br>
</span>> ______________________________<wbr>_________________<br>
> devel mailing list<br>
> <a href="mailto:devel@rtems.org">devel@rtems.org</a><br>
> <a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/<wbr>mailman/listinfo/devel</a><br>
</blockquote></div><br></div></div>