All of lore.kernel.org
 help / color / mirror / Atom feed
* nfs-utils 1.0.3 compile error w/gcc-3.2.2
@ 2003-03-28 13:29 Justin Piszcz
  2003-03-28 14:57 ` Alex Thiel
  0 siblings, 1 reply; 4+ messages in thread
From: Justin Piszcz @ 2003-03-28 13:29 UTC (permalink / raw)
  To: nfs

[-- Attachment #1: Type: text/plain, Size: 107 bytes --]

-rw-r--r--    1 war      wheel        2.7k Mar 28 08:24 log.bz2

The error is contained in the attachment.

[-- Attachment #2: log.bz2 --]
[-- Type: application/octet-stream, Size: 2803 bytes --]

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

* Re: nfs-utils 1.0.3 compile error w/gcc-3.2.2
  2003-03-28 13:29 nfs-utils 1.0.3 compile error w/gcc-3.2.2 Justin Piszcz
@ 2003-03-28 14:57 ` Alex Thiel
  2003-03-28 15:13   ` Justin Piszcz
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Thiel @ 2003-03-28 14:57 UTC (permalink / raw)
  To: Justin Piszcz, nfs

On Friday 28 March 2003 14:29, Justin Piszcz wrote:
> -rw-r--r--    1 war      wheel        2.7k Mar 28 08:24 log.bz2
>
> The error is contained in the attachment.

Did you notice this in your log:

Making all in export
rm -f mount.h mount_clnt.c mount_xdr.c
../../bin/rpcgen -h -o mount.h mount.x
cannot find any C preprocessor (cpp)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Make sure cpp is in your search path.

	Alex



-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

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

* Re: nfs-utils 1.0.3 compile error w/gcc-3.2.2
  2003-03-28 14:57 ` Alex Thiel
@ 2003-03-28 15:13   ` Justin Piszcz
  2003-03-28 19:58     ` Alex Thiel
  0 siblings, 1 reply; 4+ messages in thread
From: Justin Piszcz @ 2003-03-28 15:13 UTC (permalink / raw)
  To: Alex Thiel; +Cc: nfs

CPP is in my path, is it hardcoded or something?


war@war:~$ which cpp
/vapp/bin/cpp
war@war:~$ cpp --version
cpp (GCC) 3.2.2
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

war@war:~$ echo $PATH
/vapp/bin:/vapp/sbin:/appc/netscape-4.8:/appc/realplayer-8.0:/appc/j2re-1.4.1/bin:/appc/jdk-1.4.1/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin
war@war:~$



Alex Thiel wrote:

>On Friday 28 March 2003 14:29, Justin Piszcz wrote:
>  
>
>>-rw-r--r--    1 war      wheel        2.7k Mar 28 08:24 log.bz2
>>
>>The error is contained in the attachment.
>>    
>>
>
>Did you notice this in your log:
>
>Making all in export
>rm -f mount.h mount_clnt.c mount_xdr.c
>../../bin/rpcgen -h -o mount.h mount.x
>cannot find any C preprocessor (cpp)
>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
>Make sure cpp is in your search path.
>
>	Alex
>
>
>
>  
>




-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

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

* Re: nfs-utils 1.0.3 compile error w/gcc-3.2.2
  2003-03-28 15:13   ` Justin Piszcz
@ 2003-03-28 19:58     ` Alex Thiel
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Thiel @ 2003-03-28 19:58 UTC (permalink / raw)
  To: Justin Piszcz; +Cc: nfs

Taking a quick glance at tools/rpcgen/rpc_main.c, I notice that by default 
rpcgen expects cpp in one of these two locations:

#define SVR4_CPP "/usr/ccs/lib/cpp"
#define SUNOS_CPP "/lib/cpp"

However, rpcgen --help reveals this:
./rpcgen --help
  [snip]
-Y path         directory name to find C preprocessor (cpp)

Hope that helps,

	Alex


On Friday 28 March 2003 16:13, Justin Piszcz wrote:
> CPP is in my path, is it hardcoded or something?
>
>
> war@war:~$ which cpp
> /vapp/bin/cpp
> war@war:~$ cpp --version
> cpp (GCC) 3.2.2
> Copyright (C) 2002 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.  There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
>
> war@war:~$ echo $PATH
> /vapp/bin:/vapp/sbin:/appc/netscape-4.8:/appc/realplayer-8.0:/appc/j2re-1.4
>.1/bin:/appc/jdk-1.4.1/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr
>/local/bin:/usr/local/sbin war@war:~$
>
> Alex Thiel wrote:
> >On Friday 28 March 2003 14:29, Justin Piszcz wrote:
> >>-rw-r--r--    1 war      wheel        2.7k Mar 28 08:24 log.bz2
> >>
> >>The error is contained in the attachment.
> >
> >Did you notice this in your log:
> >
> >Making all in export
> >rm -f mount.h mount_clnt.c mount_xdr.c
> >../../bin/rpcgen -h -o mount.h mount.x
> >cannot find any C preprocessor (cpp)
> >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> >
> >Make sure cpp is in your search path.
> >
> >	Alex
>
> -------------------------------------------------------
> This SF.net email is sponsored by:
> The Definitive IT and Networking Event. Be There!
> NetWorld+Interop Las Vegas 2003 -- Register today!
> http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
> _______________________________________________
> NFS maillist  -  NFS@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/nfs



-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

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

end of thread, other threads:[~2003-03-28 19:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-28 13:29 nfs-utils 1.0.3 compile error w/gcc-3.2.2 Justin Piszcz
2003-03-28 14:57 ` Alex Thiel
2003-03-28 15:13   ` Justin Piszcz
2003-03-28 19:58     ` Alex Thiel

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.