public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Compiling 2.4.1-preX series
@ 2001-01-17  1:35 Shawn Starr
  2001-01-17  2:17 ` Jes Sorensen
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Starr @ 2001-01-17  1:35 UTC (permalink / raw)
  To: linux-kernel

Which compiler will compile the 2.4.1-preX series? Since 2.4.0, my
GCC 2.95.2 patched with PGCC 2.95.3 (which creates pgcc-2.95.2) refuses
to compile any versions after this. Which is the next stable and binary
compatable compiler?

Anyone have any suggestions? I dont wish to use the development
GCC 2.96/2.97 because they will break my binary compatability with
pgcc-2.95.2/3.

Thanks,

Shawn Starr.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

* Re: Compiling 2.4.1-preX series
  2001-01-17  1:35 Compiling 2.4.1-preX series Shawn Starr
@ 2001-01-17  2:17 ` Jes Sorensen
  2001-01-17  2:21   ` Shawn Starr
  0 siblings, 1 reply; 4+ messages in thread
From: Jes Sorensen @ 2001-01-17  2:17 UTC (permalink / raw)
  To: Shawn Starr; +Cc: linux-kernel

>>>>> "Shawn" == Shawn Starr <Shawn.Starr@Home.net> writes:

Shawn> Which compiler will compile the 2.4.1-preX series? Since 2.4.0,
Shawn> my GCC 2.95.2 patched with PGCC 2.95.3 (which creates
Shawn> pgcc-2.95.2) refuses to compile any versions after this. Which
Shawn> is the next stable and binary compatable compiler?

Shawn> Anyone have any suggestions? I dont wish to use the development
Shawn> GCC 2.96/2.97 because they will break my binary compatability
Shawn> with pgcc-2.95.2/3.

Yes, it's simple you want the real gcc 2.96/2.97 or egcs-1.1.2. pgcc
is not supported.

Jes
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

* Re: Compiling 2.4.1-preX series
  2001-01-17  2:17 ` Jes Sorensen
@ 2001-01-17  2:21   ` Shawn Starr
  2001-01-17 19:08     ` Compiling 2.4.1-preX series - Confirmed - PGCC sucks Shawn Starr
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Starr @ 2001-01-17  2:21 UTC (permalink / raw)
  To: Jes Sorensen; +Cc: linux-kernel

Fair enough, but something in bugs.h changed from 2.4.0 to 2.4.1-preX and
broke my GCC, I shall recompile GCC with no PGCC patches however if this
happens still then there's a problem somewhere.

I dont know what FXSR is but there was no problem in 2.4.0 with this.


 diff include/asm-i386/bugs.h ../linux/include/asm-i386/bugs.h  |
more78a79
> #if defined(CONFIG_X86_FXSR) || defined(CONFIG_X86_RUNTIME_FXSR)
82,85c83,85
<  if (offsetof(struct task_struct, thread.i387.fxsave) & 15) {
<   extern void __buggy_fxsr_alignment(void);
<   __buggy_fxsr_alignment();
<  }
---
>  if (offsetof(struct task_struct, thread.i387.fxsave) & 15)
>   panic("Kernel compiled for PII/PIII+ with FXSR, data not 16-byte
aligned!");
>
90a91,92


Jes Sorensen wrote:

> >>>>> "Shawn" == Shawn Starr <Shawn.Starr@Home.net> writes:
>
> Shawn> Which compiler will compile the 2.4.1-preX series? Since 2.4.0,
> Shawn> my GCC 2.95.2 patched with PGCC 2.95.3 (which creates
> Shawn> pgcc-2.95.2) refuses to compile any versions after this. Which
> Shawn> is the next stable and binary compatable compiler?
>
> Shawn> Anyone have any suggestions? I dont wish to use the development
> Shawn> GCC 2.96/2.97 because they will break my binary compatability
> Shawn> with pgcc-2.95.2/3.
>
> Yes, it's simple you want the real gcc 2.96/2.97 or egcs-1.1.2. pgcc
> is not supported.
>
> Jes

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

* Re: Compiling 2.4.1-preX series - Confirmed - PGCC sucks
  2001-01-17  2:21   ` Shawn Starr
@ 2001-01-17 19:08     ` Shawn Starr
  0 siblings, 0 replies; 4+ messages in thread
From: Shawn Starr @ 2001-01-17 19:08 UTC (permalink / raw)
  To: Jes Sorensen, linux-kernel

Yes, it appears the PGCC patches *BREAK* GCC (go figure). 2.4.1-pre7 compiled
fine. JUST as pre8 was released *sigh*
oh well, at least now I wont have to worry about any compiler bugs (unless
some are discovered with 2.95.2) ;)

Shawn.


Shawn Starr wrote:

> Fair enough, but something in bugs.h changed from 2.4.0 to 2.4.1-preX and
> broke my GCC, I shall recompile GCC with no PGCC patches however if this
> happens still then there's a problem somewhere.
>
> I dont know what FXSR is but there was no problem in 2.4.0 with this.
>
>  diff include/asm-i386/bugs.h ../linux/include/asm-i386/bugs.h  |
> more78a79
> > #if defined(CONFIG_X86_FXSR) || defined(CONFIG_X86_RUNTIME_FXSR)
> 82,85c83,85
> <  if (offsetof(struct task_struct, thread.i387.fxsave) & 15) {
> <   extern void __buggy_fxsr_alignment(void);
> <   __buggy_fxsr_alignment();
> <  }
> ---
> >  if (offsetof(struct task_struct, thread.i387.fxsave) & 15)
> >   panic("Kernel compiled for PII/PIII+ with FXSR, data not 16-byte
> aligned!");
> >
> 90a91,92
>
> Jes Sorensen wrote:
>
> > >>>>> "Shawn" == Shawn Starr <Shawn.Starr@Home.net> writes:
> >
> > Shawn> Which compiler will compile the 2.4.1-preX series? Since 2.4.0,
> > Shawn> my GCC 2.95.2 patched with PGCC 2.95.3 (which creates
> > Shawn> pgcc-2.95.2) refuses to compile any versions after this. Which
> > Shawn> is the next stable and binary compatable compiler?
> >
> > Shawn> Anyone have any suggestions? I dont wish to use the development
> > Shawn> GCC 2.96/2.97 because they will break my binary compatability
> > Shawn> with pgcc-2.95.2/3.
> >
> > Yes, it's simple you want the real gcc 2.96/2.97 or egcs-1.1.2. pgcc
> > is not supported.
> >
> > Jes
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> Please read the FAQ at http://www.tux.org/lkml/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

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

end of thread, other threads:[~2001-01-17 19:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-17  1:35 Compiling 2.4.1-preX series Shawn Starr
2001-01-17  2:17 ` Jes Sorensen
2001-01-17  2:21   ` Shawn Starr
2001-01-17 19:08     ` Compiling 2.4.1-preX series - Confirmed - PGCC sucks Shawn Starr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox