Re: kernel build dependency on gcc-4.0?

2006-09-06 Thread Paul Slootman
On Tue 05 Sep 2006, Paul Slootman wrote:

 It's naively running that kernel just fine now :-)

Oh yeah,
I did need to tweak arch/alpha/kernel/vmlinux.lds.S a bit, as I got a
warning about a symbol being in the discard section or something like
that.  I replaced:

  /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }

with:

  . = ALIGN(64);
  __exit_start = .;
  .exit : { *(.exit) }
  __exit_end = .;


Note that I haven't a clue whether what I did makes sense, but at least
it compiled and runs.


Paul Slootman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



kernel build dependency on gcc-4.0?

2006-09-05 Thread Matthias Klose
Will gcc-4.0 be dropped as a build dependency for etch, or be kept?
And on which architectures?

Would you mind dropping gcc-4.0 from etch for some architectures?

  Matthias


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: kernel build dependency on gcc-4.0?

2006-09-05 Thread Frederik Schueler
Hello,

On Tue, Sep 05, 2006 at 09:55:09AM +0200, Matthias Klose wrote:
 Will gcc-4.0 be dropped as a build dependency for etch, or be kept?

It will be dropped.

Currently, only hppa and alpha still build-depend on gcc-4.0. This will
be changed with linux-2.6 2.6.18-1 (and maybe in 2.6.17 too, if we do
another ABI bump), as soon as we get there.

Best regards
Frederik Schueler

-- 
ENOSIG


signature.asc
Description: Digital signature


Re: kernel build dependency on gcc-4.0?

2006-09-05 Thread Bastian Blank
On Tue, Sep 05, 2006 at 09:55:09AM +0200, Matthias Klose wrote:
 Will gcc-4.0 be dropped as a build dependency for etch, or be kept?

The alpha maintainer said, gcc-4.1 is not capable to build the linux
kernel, the same applies to m68k. Any other architecture can use it.
hppa just did not switch on the last abibump of 2.6.17 and we don't plan
another.

 Would you mind dropping gcc-4.0 from etch for some architectures?

We need it until we drop 2.6.16 and 2.6.17 from the archive.

Bastian

-- 
Wait!  You have not been prepared!
-- Mr. Atoz, Tomorrow is Yesterday, stardate 3113.2


signature.asc
Description: Digital signature


Re: kernel build dependency on gcc-4.0?

2006-09-05 Thread Steve Langasek
On Tue, Sep 05, 2006 at 11:54:11AM +0200, Bastian Blank wrote:
 On Tue, Sep 05, 2006 at 09:55:09AM +0200, Matthias Klose wrote:
  Will gcc-4.0 be dropped as a build dependency for etch, or be kept?

 The alpha maintainer said, gcc-4.1 is not capable to build the linux
 kernel, the same applies to m68k. Any other architecture can use it.
 hppa just did not switch on the last abibump of 2.6.17 and we don't plan
 another.

  Would you mind dropping gcc-4.0 from etch for some architectures?

 We need it until we drop 2.6.16 and 2.6.17 from the archive.

So for the current 2.6.17 it's still needed for *all* architectures, or
could gcc-4.0 still be dropped on some architectures where the kernel is
already using gcc-4.1?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: kernel build dependency on gcc-4.0?

2006-09-05 Thread Paul Slootman
On Tue 05 Sep 2006, Steve Langasek wrote:
 On Tue, Sep 05, 2006 at 11:54:11AM +0200, Bastian Blank wrote:
 
  The alpha maintainer said, gcc-4.1 is not capable to build the linux
  kernel, the same applies to m68k. Any other architecture can use it.
  hppa just did not switch on the last abibump of 2.6.17 and we don't plan
  another.
 
   Would you mind dropping gcc-4.0 from etch for some architectures?
 
  We need it until we drop 2.6.16 and 2.6.17 from the archive.
 
 So for the current 2.6.17 it's still needed for *all* architectures, or
 could gcc-4.0 still be dropped on some architectures where the kernel is
 already using gcc-4.1?

Please don't tell my alpha that gcc 4.1 is not capable to build the
linux kernel:

alf:/etc# cat /proc/version 
Linux version 2.6.17.11 ([EMAIL PROTECTED]) (gcc version 4.1.2 20060814 
(prerelease) (Debian 4.1.1-11)) #2 Wed Aug 30 10:01:12 CEST 2006
alf:/etc# uptime
 22:26:53 up 5 days,  1:16,  2 users,  load average: 0.13, 0.09, 0.06

It's naively running that kernel just fine now :-)


Paul Slootman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]