From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Lance Taylor To: joel@merlin.gcs.redstone.army.mil Cc: gas2@cygnus.com Subject: Re: libiberty question Date: Tue, 09 Jul 1996 08:17:00 -0000 Message-id: <199607091516.LAA17703@sanguine.cygnus.com> References: X-SW-Source: 1996/msg00056.html Date: Tue, 9 Jul 1996 09:57:02 -0500 (CDT) From: Joel Sherrill On Tue, 9 Jul 1996, Ian Lance Taylor wrote: > config/mt-rtems which had the following: > > HDEFINES = -DNO_SYS_PARAM_H -DNO_SYS_FILE_H > > I tend to think that you will be better off providing both those > files. Right now almost every header file we have is directly from newlib. Looking at the Solaris versions of these two, it will be a while before we could do them. I think the vxworks configuration made a good decision here. The current version of newlib provides both those files. VxWorks has its own header files, which are controlled by WRS, so the VxWorks configuration has no choice. Here is from newlib: ================================================== #include ================================================== Here is from newlib: ================================================== /* This is a dummy file, not customized for any particular system. If there is a param.h in libc/sys/SYSDIR/sys, it will override this one. */ #ifndef _SYS_PARAM_H # define _SYS_PARAM_H # define HZ (60) # define NOFILE (60) # define PATHSIZE (1024) #endif ================================================== Ian