public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* fenv.h
@ 2005-05-17  7:35 Philippe Poelvoorde
  2005-05-17  7:54 ` fenv.h Lionel B
  2005-05-17 13:51 ` fenv.h Ian Lance Taylor
  0 siblings, 2 replies; 6+ messages in thread
From: Philippe Poelvoorde @ 2005-05-17  7:35 UTC (permalink / raw)
  To: gcc-help

Hi,

I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something 
that include fenv.h the file is not found. What can I do to use the C99 
header ?  (upgrade gcc or patch Solaris 8 ?).
Any help appreciated (as I am a total newby under solaris).

Ph.

-- 
Philippe Poelvoorde
COS Trading Ltd.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fenv.h
  2005-05-17  7:35 fenv.h Philippe Poelvoorde
@ 2005-05-17  7:54 ` Lionel B
  2005-05-17  8:05   ` fenv.h Philippe Poelvoorde
  2005-05-17 13:51 ` fenv.h Ian Lance Taylor
  1 sibling, 1 reply; 6+ messages in thread
From: Lionel B @ 2005-05-17  7:54 UTC (permalink / raw)
  To: gcc-help

"Philippe Poelvoorde" <philippe@costrading.co.uk> wrote in message news:42899D35.8060208@costrading.co.uk...
> Hi,
> 
> I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something 
> that include fenv.h the file is not found.

Have you searched for any files called fenv.h on your system?

find / -name fenv.h

Perhaps it is in a nonstandard place.

> What can I do to use the C99 
> header ?  (upgrade gcc or patch Solaris 8 ?).
> Any help appreciated (as I am a total newby under solaris).
> 
> Ph.
> 
> -- 
> Philippe Poelvoorde
> COS Trading Ltd.
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fenv.h
  2005-05-17  7:54 ` fenv.h Lionel B
@ 2005-05-17  8:05   ` Philippe Poelvoorde
  0 siblings, 0 replies; 6+ messages in thread
From: Philippe Poelvoorde @ 2005-05-17  8:05 UTC (permalink / raw)
  To: gcc-help

Lionel B wrote:

> "Philippe Poelvoorde" <philippe@costrading.co.uk> wrote in message news:42899D35.8060208@costrading.co.uk...
> 
>>Hi,
>>
>>I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something 
>>that include fenv.h the file is not found.
> 
> 
> Have you searched for any files called fenv.h on your system?
> 
> find / -name fenv.h
> 
> Perhaps it is in a nonstandard place.

yep, find / -print | grep fenv
does not return any match.
I think they should be shipped with the C library, as it is the case 
with the glibc, but they are not. (and well obviously, i can't install 
the glibc for solaris).

> 
> 
>>What can I do to use the C99 
>>header ?  (upgrade gcc or patch Solaris 8 ?).
>>Any help appreciated (as I am a total newby under solaris).
>>
>>Ph.
>>
>>-- 
>>Philippe Poelvoorde
>>COS Trading Ltd.
>>
> 
> 
> 
> 
> 


-- 
Philippe Poelvoorde
COS Trading Ltd.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fenv.h
  2005-05-17  7:35 fenv.h Philippe Poelvoorde
  2005-05-17  7:54 ` fenv.h Lionel B
@ 2005-05-17 13:51 ` Ian Lance Taylor
  2005-05-17 14:13   ` fenv.h Adam Stein
  2005-05-18  9:20   ` fenv.h Philippe Poelvoorde
  1 sibling, 2 replies; 6+ messages in thread
From: Ian Lance Taylor @ 2005-05-17 13:51 UTC (permalink / raw)
  To: Philippe Poelvoorde; +Cc: gcc-help

Philippe Poelvoorde <philippe@costrading.co.uk> writes:

> I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something
> that include fenv.h the file is not found. What can I do to use the
> C99 header ?  (upgrade gcc or patch Solaris 8 ?).
> Any help appreciated (as I am a total newby under solaris).

gcc does not provide fenv.h.  It has to have library support specific
to your system.

I don't know whether Solaris provides a C library with fenv.h.  You
will have to ask people who know Solaris--i.e., some other mailing
list somewhere.

Ian

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fenv.h
  2005-05-17 13:51 ` fenv.h Ian Lance Taylor
@ 2005-05-17 14:13   ` Adam Stein
  2005-05-18  9:20   ` fenv.h Philippe Poelvoorde
  1 sibling, 0 replies; 6+ messages in thread
From: Adam Stein @ 2005-05-17 14:13 UTC (permalink / raw)
  To: Ian Lance Taylor; +Cc: Philippe Poelvoorde, gcc-help

Solaris 8 does NOT have fenv.h.  RH9 does.  According to the initial
comments in the file, fenv.h is a part of the GNU C library.

On Tue, 2005-05-17 at 09:47, Ian Lance Taylor wrote:
> Philippe Poelvoorde <philippe@costrading.co.uk> writes:
> 
> > I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something
> > that include fenv.h the file is not found. What can I do to use the
> > C99 header ?  (upgrade gcc or patch Solaris 8 ?).
> > Any help appreciated (as I am a total newby under solaris).
> 
> gcc does not provide fenv.h.  It has to have library support specific
> to your system.
> 
> I don't know whether Solaris provides a C library with fenv.h.  You
> will have to ask people who know Solaris--i.e., some other mailing
> list somewhere.
> 
> Ian
-- 
Adam Stein @ Xerox Corporation       Email: adam@scan.mc.xerox.com

Disclaimer: Any/All views expressed
here have been proved to be my own.  [http://www.csh.rit.edu/~adam/]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fenv.h
  2005-05-17 13:51 ` fenv.h Ian Lance Taylor
  2005-05-17 14:13   ` fenv.h Adam Stein
@ 2005-05-18  9:20   ` Philippe Poelvoorde
  1 sibling, 0 replies; 6+ messages in thread
From: Philippe Poelvoorde @ 2005-05-18  9:20 UTC (permalink / raw)
  To: gcc-help

Ian Lance Taylor wrote:
> Philippe Poelvoorde <philippe@costrading.co.uk> writes:
> 
> 
>>I'm using gcc 3.4.2 under Solaris 8 (02/04). When I compile something
>>that include fenv.h the file is not found. What can I do to use the
>>C99 header ?  (upgrade gcc or patch Solaris 8 ?).
>>Any help appreciated (as I am a total newby under solaris).
> 
> 
> gcc does not provide fenv.h.  It has to have library support specific
> to your system.
> 

ok, thanks for your answer.

> I don't know whether Solaris provides a C library with fenv.h.  You
> will have to ask people who know Solaris--i.e., some other mailing
> list somewhere.
> 
> Ian
> 
> 
> 


-- 
Philippe Poelvoorde
COS Trading Ltd.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-05-18  9:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-17  7:35 fenv.h Philippe Poelvoorde
2005-05-17  7:54 ` fenv.h Lionel B
2005-05-17  8:05   ` fenv.h Philippe Poelvoorde
2005-05-17 13:51 ` fenv.h Ian Lance Taylor
2005-05-17 14:13   ` fenv.h Adam Stein
2005-05-18  9:20   ` fenv.h Philippe Poelvoorde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).