<div dir="ltr">National free hint day!!! <div><br></div><div>Look above the line that is reported. You will see __BEGIN_DECL. It isn't defined. It is intended to expand to the __cplusplus wrapper.</div><div><br></div><div>After you fix this, you will sequentially find 2 other things to change in this file. </div><div><br></div><div>Then we need to make a decision whether the static inline versions of the methods in sys/fenv.h are appropriate for newlib or not.</div><div><br></div><div>--joel</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, May 12, 2020 at 5:20 PM Joel Sherrill <<a href="mailto:joel@rtems.org">joel@rtems.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Gedare is right but one more piece of information is needed. When newlib is being built, it lays target dependent files on top of generic ones. So the default sys/fenv.h is replaced with something like libc/machine/arm/sys/fenv.h. Make sure that 

/home/eshan/development/newlib/newlib-cygwin/newlib/libc/include/fenv.h is in fact the file you think it should be.<div><br></div><div>Also look at what is supposed to be in the generic fenv.h and <sys/fenv.h>. You will probably have to tweak it some. </div><div><br></div><div>Check out what is in x86_64/fenv.h and riscv/fenv.h with respect to the default environment variable. It looks to be declared differently in the other ports so you may have to make it match.</div><div><br></div><div>But more output does help.</div><div><br></div><div>--joel<br><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, May 12, 2020 at 4:53 PM Gedare Bloom <<a href="mailto:gedare@rtems.org" target="_blank">gedare@rtems.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Take the first error reported, and show what is being compiled. You've<br>
trimmed off too much preceding this to know what is being compiled and<br>
how this might be influencing your error.<br>
<br>
The specific error you're getting is often due to some syntax errors<br>
preceding the line shown.<br>
<br>
On Tue, May 12, 2020 at 2:59 PM Eshan Dhawan <<a href="mailto:eshandhawan51@gmail.com" target="_blank">eshandhawan51@gmail.com</a>> wrote:<br>
><br>
> Hello everyone,<br>
> After adding the files and compiling. I am<br>
> getting a few errors which I am not able to rectify.<br>
> If you could take a look and tell how to sort them.<br>
><br>
> link to newlib's git repo: <a href="https://github.com/eshandhawan51/newlib-cygwin/tree/add_fenv_support" rel="noreferrer" target="_blank">https://github.com/eshandhawan51/newlib-cygwin/tree/add_fenv_support</a><br>
><br>
> errors :<br>
><br>
> In file included from /home/eshan/development/newlib/newlib-cygwin/newlib/libc/include/fenv.h:15:0,<br>
>                  from ../../../../../../newlib-cygwin/newlib/libm/fenv/feclearexcept.c:57:<br>
> /home/eshan/development/newlib/c-arm-rtems5-newlib/arm-rtems5/thumb/newlib/targ-include/sys/fenv.h:82:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'extern'<br>
>  extern const fenv_t *_fe_dfl_env;<br>
>  ^~~~~~<br>
> In file included from ../../../../../../newlib-cygwin/newlib/libm/fenv/feclearexcept.c:57:0:<br>
> /home/eshan/development/newlib/newlib-cygwin/newlib/libc/include/fenv.h:22:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int'<br>
>  int feclearexcept(int excepts);<br>
>  ^~~<br>
><br>
> thanks<br>
> -Eshan<br>
> On Sat, May 9, 2020 at 2:53 AM Joel Sherrill <<a href="mailto:joel@rtems.org" target="_blank">joel@rtems.org</a>> wrote:<br>
>><br>
>><br>
>><br>
>> On Thu, May 7, 2020 at 1:33 PM Eshan Dhawan <<a href="mailto:eshandhawan51@gmail.com" target="_blank">eshandhawan51@gmail.com</a>> wrote:<br>
>>><br>
>>> Hello everyone,<br>
>>> This the tread to discuss adding fenv support for ARM architecture in newlib.<br>
>>><br>
>>> Link to previous thread: <a href="https://lists.rtems.org/pipermail/devel/2020-March/058473.html" rel="noreferrer" target="_blank">https://lists.rtems.org/pipermail/devel/2020-March/058473.html</a><br>
>>><br>
>>> ---FreeBSD Source<br>
>>> # <a href="https://github.com/freebsd/freebsd/tree/master/lib/msun/arm" rel="noreferrer" target="_blank">https://github.com/freebsd/freebsd/tree/master/lib/msun/arm</a><br>
>>> # <a href="https://github.com/freebsd/freebsd/blob/master/sys/arm/include/ieeefp.h" rel="noreferrer" target="_blank">https://github.com/freebsd/freebsd/blob/master/sys/arm/include/ieeefp.h</a><br>
>>> ---NetBSD Source<br>
>>> # <a href="https://github.com/NetBSD/src/tree/trunk/lib/libm/arch/arm" rel="noreferrer" target="_blank">https://github.com/NetBSD/src/tree/trunk/lib/libm/arch/arm</a><br>
>>><br>
>>> --- Musl has no implementation for fenv support for ARM  in it<br>
>>><br>
>>> After going through the implementations both FreeBSD and NetBSD have a stub implementation.<br>
>>> But then FreeBSD implementation seems to be more portable compared to that in NetBSD.<br>
>>><br>
>>> Should I start porting it from FreeBSD?<br>
>>> And which ARM BSP should I use for testing the changes?<br>
>>> Currently, I have xilinx_zynq_a9_qemu build<br>
>><br>
>><br>
>> I think the FreeBSD implementation is the one to use. It looks to support hard and soft floating point implementations.<br>
>><br>
>> I think the fenv.h file there will have to be worked on so some of the contents go into sys or machine/fenv.h. There is a portable fenv.h.<br>
>><br>
>>><br>
>>><br>
>>> There would also be a requirement to discuss where to place the files in Newlib.<br>
>><br>
>><br>
>> Not much to discuss. It should go into newlib-cygwin/newlib/libm/machine/arm.<br>
>>><br>
>>><br>
>>> Thanks<br>
>>> -Eshan<br>
>>><br>
> _______________________________________________<br>
> devel mailing list<br>
> <a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
> <a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>
</blockquote></div>