public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* What is the problem here?
@ 1999-10-11  9:29 John Neumöge
  1999-10-12  8:31 ` Jim Buffenbarger
  1999-10-31 13:57 ` John Neumöge
  0 siblings, 2 replies; 6+ messages in thread
From: John Neumöge @ 1999-10-11  9:29 UTC (permalink / raw)
  To: help-gcc

I would like to compile gawk 3.0.4 using GCC 2.8.1 on HP-UX 10.20 and am
getting the following response:

gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
In file included from
/usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
                 from awk.h:44,
                 from array.c:40:
/usr/include/sys/stdsyms.h:244: #error "Large Files (ILP32) not supported in
strict ANSI mode."
make: *** [array.o] Error 1

I am no GCC or C expert. Can anyone please tell me what the problem is here?

Thanks
--John


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

* Re: What is the problem here?
  1999-10-11  9:29 What is the problem here? John Neumöge
@ 1999-10-12  8:31 ` Jim Buffenbarger
  1999-10-13  0:14   ` John Neumöge
  1999-10-31 13:57   ` Jim Buffenbarger
  1999-10-31 13:57 ` John Neumöge
  1 sibling, 2 replies; 6+ messages in thread
From: Jim Buffenbarger @ 1999-10-12  8:31 UTC (permalink / raw)
  To: help-gcc

Hi John,

John> I would like to compile gawk 3.0.4 using GCC 2.8.1 on
John> HP-UX 10.20 and am getting the following response:

John> gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
John> In file included from
John> /usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
John> from awk.h:44, from array.c:40:
John> /usr/include/sys/stdsyms.h:244: #error "Large Files
John> (ILP32) not supported in strict ANSI mode."  make: ***
John> [array.o] Error 1

John> I am no GCC or C expert. Can anyone please tell me
John> what the problem is here?

I modified the generated config.h file. I've attached the diff.

-- Jim

hpbs9968$ diff gawk-3.0.4/config.h.orig config.h 
77c77
< /* #undef HAVE_SYS_WAIT_H */
---
> #define HAVE_SYS_WAIT_H
103c103
< #define RETSIGTYPE int
---
> #define RETSIGTYPE void
134c134
< #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this matters */
---
> /* #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this matters */
135a136
> 
184c185
< /* #undef HAVE_LOCALE_H */
---
> #define HAVE_LOCALE_H
hpbs9968$ 

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

* Re: What is the problem here?
  1999-10-12  8:31 ` Jim Buffenbarger
@ 1999-10-13  0:14   ` John Neumöge
  1999-10-31 13:57     ` John Neumöge
  1999-10-31 13:57   ` Jim Buffenbarger
  1 sibling, 1 reply; 6+ messages in thread
From: John Neumöge @ 1999-10-13  0:14 UTC (permalink / raw)
  To: help-gcc

Jim Buffenbarger <buff@hpbs9968.boi.hp.com> schrieb in im Newsbeitrag:
w2ln1tomx5e.fsf@hpbs9968.boi.hp.com...
> I modified the generated config.h file. I've attached the diff.
>
> -- Jim
>
> hpbs9968$ diff gawk-3.0.4/config.h.orig config.h
> 77c77
> < /* #undef HAVE_SYS_WAIT_H */
> ---
> > #define HAVE_SYS_WAIT_H
> 103c103
> < #define RETSIGTYPE int
> ---
> > #define RETSIGTYPE void
> 134c134
> < #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this
matters */
> ---
> > /* #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this
matters */
> 135a136
> >
> 184c185
> < /* #undef HAVE_LOCALE_H */
> ---
> > #define HAVE_LOCALE_H
> hpbs9968$

Hi Jim,
Thanks for the help.
I modified the generated config.h as you suggested, but the compiler still
breaks off at the same point:

gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
In file included from
/usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
                 from awk.h:44,
                 from array.c:40:
/usr/include/sys/stdsyms.h:244: #error "Large Files (ILP32) not supported in
strict ANSI mode."
make: *** [array.o] Error 1

I have tried several options with the gcc command to get more debugging
information, but I could not find anything that helped much. Is there a
certain option that would give more information as to the cause of the
problem. To be honest, I cannot see what the problem is.

Thanks,
--John



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

* Re: What is the problem here?
  1999-10-13  0:14   ` John Neumöge
@ 1999-10-31 13:57     ` John Neumöge
  0 siblings, 0 replies; 6+ messages in thread
From: John Neumöge @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

Jim Buffenbarger <buff@hpbs9968.boi.hp.com> schrieb in im Newsbeitrag:
w2ln1tomx5e.fsf@hpbs9968.boi.hp.com...
> I modified the generated config.h file. I've attached the diff.
>
> -- Jim
>
> hpbs9968$ diff gawk-3.0.4/config.h.orig config.h
> 77c77
> < /* #undef HAVE_SYS_WAIT_H */
> ---
> > #define HAVE_SYS_WAIT_H
> 103c103
> < #define RETSIGTYPE int
> ---
> > #define RETSIGTYPE void
> 134c134
> < #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this
matters */
> ---
> > /* #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this
matters */
> 135a136
> >
> 184c185
> < /* #undef HAVE_LOCALE_H */
> ---
> > #define HAVE_LOCALE_H
> hpbs9968$

Hi Jim,
Thanks for the help.
I modified the generated config.h as you suggested, but the compiler still
breaks off at the same point:

gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
In file included from
/usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
                 from awk.h:44,
                 from array.c:40:
/usr/include/sys/stdsyms.h:244: #error "Large Files (ILP32) not supported in
strict ANSI mode."
make: *** [array.o] Error 1

I have tried several options with the gcc command to get more debugging
information, but I could not find anything that helped much. Is there a
certain option that would give more information as to the cause of the
problem. To be honest, I cannot see what the problem is.

Thanks,
--John



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

* Re: What is the problem here?
  1999-10-12  8:31 ` Jim Buffenbarger
  1999-10-13  0:14   ` John Neumöge
@ 1999-10-31 13:57   ` Jim Buffenbarger
  1 sibling, 0 replies; 6+ messages in thread
From: Jim Buffenbarger @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

Hi John,

John> I would like to compile gawk 3.0.4 using GCC 2.8.1 on
John> HP-UX 10.20 and am getting the following response:

John> gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
John> In file included from
John> /usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
John> from awk.h:44, from array.c:40:
John> /usr/include/sys/stdsyms.h:244: #error "Large Files
John> (ILP32) not supported in strict ANSI mode."  make: ***
John> [array.o] Error 1

John> I am no GCC or C expert. Can anyone please tell me
John> what the problem is here?

I modified the generated config.h file. I've attached the diff.

-- Jim

hpbs9968$ diff gawk-3.0.4/config.h.orig config.h 
77c77
< /* #undef HAVE_SYS_WAIT_H */
---
> #define HAVE_SYS_WAIT_H
103c103
< #define RETSIGTYPE int
---
> #define RETSIGTYPE void
134c134
< #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this matters */
---
> /* #define _FILE_OFFSET_BITS 64 /* bits in a file offset, where this matters */
135a136
> 
184c185
< /* #undef HAVE_LOCALE_H */
---
> #define HAVE_LOCALE_H
hpbs9968$ 

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

* What is the problem here?
  1999-10-11  9:29 What is the problem here? John Neumöge
  1999-10-12  8:31 ` Jim Buffenbarger
@ 1999-10-31 13:57 ` John Neumöge
  1 sibling, 0 replies; 6+ messages in thread
From: John Neumöge @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

I would like to compile gawk 3.0.4 using GCC 2.8.1 on HP-UX 10.20 and am
getting the following response:

gcc -c -DGAWK -I. -I.  -DHAVE_CONFIG_H -g -O2 array.c
In file included from
/usr/local/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.8.1/include/stdio.h:8,
                 from awk.h:44,
                 from array.c:40:
/usr/include/sys/stdsyms.h:244: #error "Large Files (ILP32) not supported in
strict ANSI mode."
make: *** [array.o] Error 1

I am no GCC or C expert. Can anyone please tell me what the problem is here?

Thanks
--John


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

end of thread, other threads:[~1999-10-31 13:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-11  9:29 What is the problem here? John Neumöge
1999-10-12  8:31 ` Jim Buffenbarger
1999-10-13  0:14   ` John Neumöge
1999-10-31 13:57     ` John Neumöge
1999-10-31 13:57   ` Jim Buffenbarger
1999-10-31 13:57 ` John Neumöge

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).