Linux MIPS Architecture development
 help / color / mirror / Atom feed
* compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
@ 2005-07-06 23:12 rolf liu
  2005-07-07  0:08 ` Pete Popov
  2005-07-14  0:18 ` Pete Popov
  0 siblings, 2 replies; 6+ messages in thread
From: rolf liu @ 2005-07-06 23:12 UTC (permalink / raw)
  To: linux-mips

I use gcc 3.4.4 to compile the recent 2.6.12, got the following errors:

  CC      arch/mips/au1000/common/setup.o
In file included from include/asm/io.h:29,
                 from include/asm/mach-au1x00/au1000.h:43,
                 from arch/mips/au1000/common/setup.c:42:
include/asm-mips/mach-au1x00/ioremap.h:25: warning: static declaration
of 'fixup_bigphys_addr' follows non-static declaration
include/asm/pgtable.h:363: warning: 'fixup_bigphys_addr' declared
inline after being called
include/asm/pgtable.h:363: warning: previous declaration of
'fixup_bigphys_addr' was here
include/asm-mips/mach-au1x00/ioremap.h: In function `fixup_bigphys_addr':
include/asm-mips/mach-au1x00/ioremap.h:26: warning: implicit
declaration of function `__fixup_bigphys_addr'
arch/mips/au1000/common/setup.c: At top level:
arch/mips/au1000/common/setup.c:159: error: conflicting types for
'__fixup_bigphys_addr'
include/asm-mips/mach-au1x00/ioremap.h:26: error: previous implicit
declaration of '__fixup_bigphys_addr' was here
make[1]: *** [arch/mips/au1000/common/setup.o] Error 1
make: *** [arch/mips/au1000/common] Error 2

Not sure if it is just compiler's problem

thanks

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

* Re: compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
  2005-07-06 23:12 compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig rolf liu
@ 2005-07-07  0:08 ` Pete Popov
  2005-07-07 11:22   ` Maciej W. Rozycki
  2005-07-07 18:48   ` rolf liu
  2005-07-14  0:18 ` Pete Popov
  1 sibling, 2 replies; 6+ messages in thread
From: Pete Popov @ 2005-07-07  0:08 UTC (permalink / raw)
  To: rolf liu; +Cc: 'linux-mips@linux-mips.org'


On Wed, 2005-07-06 at 16:12 -0700, rolf liu wrote:
> I use gcc 3.4.4 to compile the recent 2.6.12, got the following errors:
> 
>   CC      arch/mips/au1000/common/setup.o
> In file included from include/asm/io.h:29,
>                  from include/asm/mach-au1x00/au1000.h:43,
>                  from arch/mips/au1000/common/setup.c:42:
> include/asm-mips/mach-au1x00/ioremap.h:25: warning: static declaration
> of 'fixup_bigphys_addr' follows non-static declaration
> include/asm/pgtable.h:363: warning: 'fixup_bigphys_addr' declared
> inline after being called
> include/asm/pgtable.h:363: warning: previous declaration of
> 'fixup_bigphys_addr' was here
> include/asm-mips/mach-au1x00/ioremap.h: In function `fixup_bigphys_addr':
> include/asm-mips/mach-au1x00/ioremap.h:26: warning: implicit
> declaration of function `__fixup_bigphys_addr'
> arch/mips/au1000/common/setup.c: At top level:
> arch/mips/au1000/common/setup.c:159: error: conflicting types for
> '__fixup_bigphys_addr'
> include/asm-mips/mach-au1x00/ioremap.h:26: error: previous implicit
> declaration of '__fixup_bigphys_addr' was here
> make[1]: *** [arch/mips/au1000/common/setup.o] Error 1
> make: *** [arch/mips/au1000/common] Error 2
> 
> Not sure if it is just compiler's problem

No, it's not. Looks like Maciej's patch on Thursday broke the above. 

Maciej, I assume you built a kernel for one of the Au1x boards before
you applied the patch ;)?

Pete

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

* Re: compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
  2005-07-07  0:08 ` Pete Popov
@ 2005-07-07 11:22   ` Maciej W. Rozycki
  2005-07-07 19:29     ` Pete Popov
  2005-07-07 18:48   ` rolf liu
  1 sibling, 1 reply; 6+ messages in thread
From: Maciej W. Rozycki @ 2005-07-07 11:22 UTC (permalink / raw)
  To: Pete Popov; +Cc: rolf liu, 'linux-mips@linux-mips.org'

On Wed, 6 Jul 2005, Pete Popov wrote:

> Maciej, I assume you built a kernel for one of the Au1x boards before
> you applied the patch ;)?

 Certainly not -- I don't maintain that part of the tree in any sense -- I 
don't even have any related hardware, so why should I bother?  I sent the 
patch for public review to let interested parties exactly to catch such 
problems -- I even mentioned explicitly I only did a minimal arrangement 
for the Au1000 code.

  Maciej

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

* Re: compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
  2005-07-07  0:08 ` Pete Popov
  2005-07-07 11:22   ` Maciej W. Rozycki
@ 2005-07-07 18:48   ` rolf liu
  1 sibling, 0 replies; 6+ messages in thread
From: rolf liu @ 2005-07-07 18:48 UTC (permalink / raw)
  To: ppopov; +Cc: linux-mips@linux-mips.org

Another error:

"No rule to make target `drivers/pcmcia/bulkmem.s`, needed by
`drivers/pcmcia/bulkmem.o`. Stop"

I think the rule is in the top level Makefile. Why this error comes out?

thanks


On 7/6/05, Pete Popov <ppopov@embeddedalley.com> wrote:
> 
> On Wed, 2005-07-06 at 16:12 -0700, rolf liu wrote:
> > I use gcc 3.4.4 to compile the recent 2.6.12, got the following errors:
> >
> >   CC      arch/mips/au1000/common/setup.o
> > In file included from include/asm/io.h:29,
> >                  from include/asm/mach-au1x00/au1000.h:43,
> >                  from arch/mips/au1000/common/setup.c:42:
> > include/asm-mips/mach-au1x00/ioremap.h:25: warning: static declaration
> > of 'fixup_bigphys_addr' follows non-static declaration
> > include/asm/pgtable.h:363: warning: 'fixup_bigphys_addr' declared
> > inline after being called
> > include/asm/pgtable.h:363: warning: previous declaration of
> > 'fixup_bigphys_addr' was here
> > include/asm-mips/mach-au1x00/ioremap.h: In function `fixup_bigphys_addr':
> > include/asm-mips/mach-au1x00/ioremap.h:26: warning: implicit
> > declaration of function `__fixup_bigphys_addr'
> > arch/mips/au1000/common/setup.c: At top level:
> > arch/mips/au1000/common/setup.c:159: error: conflicting types for
> > '__fixup_bigphys_addr'
> > include/asm-mips/mach-au1x00/ioremap.h:26: error: previous implicit
> > declaration of '__fixup_bigphys_addr' was here
> > make[1]: *** [arch/mips/au1000/common/setup.o] Error 1
> > make: *** [arch/mips/au1000/common] Error 2
> >
> > Not sure if it is just compiler's problem
> 
> No, it's not. Looks like Maciej's patch on Thursday broke the above.
> 
> Maciej, I assume you built a kernel for one of the Au1x boards before
> you applied the patch ;)?
> 
> Pete
> 
>

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

* Re: compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
  2005-07-07 11:22   ` Maciej W. Rozycki
@ 2005-07-07 19:29     ` Pete Popov
  0 siblings, 0 replies; 6+ messages in thread
From: Pete Popov @ 2005-07-07 19:29 UTC (permalink / raw)
  To: Maciej W. Rozycki; +Cc: 'linux-mips@linux-mips.org'

On Thu, 2005-07-07 at 12:22 +0100, Maciej W. Rozycki wrote:
> On Wed, 6 Jul 2005, Pete Popov wrote:
> 
> > Maciej, I assume you built a kernel for one of the Au1x boards before
> > you applied the patch ;)?
> 
>  Certainly not -- I don't maintain that part of the tree in any sense -- I 
> don't even have any related hardware, so why should I bother?  

Well, I understand you don't have the HW so you can't test the patch.
But at least it should compile, imho.

> I sent the 
> patch for public review to let interested parties exactly to catch such 
> problems -- I even mentioned explicitly I only did a minimal arrangement 
> for the Au1000 code.


Pete

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

* Re: compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig
  2005-07-06 23:12 compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig rolf liu
  2005-07-07  0:08 ` Pete Popov
@ 2005-07-14  0:18 ` Pete Popov
  1 sibling, 0 replies; 6+ messages in thread
From: Pete Popov @ 2005-07-14  0:18 UTC (permalink / raw)
  To: rolf liu; +Cc: 'linux-mips@linux-mips.org'


Try again, I just fixed it and one other compile error in 2.6.13-rc3.

Pete

On Wed, 2005-07-06 at 16:12 -0700, rolf liu wrote:
> I use gcc 3.4.4 to compile the recent 2.6.12, got the following errors:
> 
>   CC      arch/mips/au1000/common/setup.o
> In file included from include/asm/io.h:29,
>                  from include/asm/mach-au1x00/au1000.h:43,
>                  from arch/mips/au1000/common/setup.c:42:
> include/asm-mips/mach-au1x00/ioremap.h:25: warning: static declaration
> of 'fixup_bigphys_addr' follows non-static declaration
> include/asm/pgtable.h:363: warning: 'fixup_bigphys_addr' declared
> inline after being called
> include/asm/pgtable.h:363: warning: previous declaration of
> 'fixup_bigphys_addr' was here
> include/asm-mips/mach-au1x00/ioremap.h: In function `fixup_bigphys_addr':
> include/asm-mips/mach-au1x00/ioremap.h:26: warning: implicit
> declaration of function `__fixup_bigphys_addr'
> arch/mips/au1000/common/setup.c: At top level:
> arch/mips/au1000/common/setup.c:159: error: conflicting types for
> '__fixup_bigphys_addr'
> include/asm-mips/mach-au1x00/ioremap.h:26: error: previous implicit
> declaration of '__fixup_bigphys_addr' was here
> make[1]: *** [arch/mips/au1000/common/setup.o] Error 1
> make: *** [arch/mips/au1000/common] Error 2
> 
> Not sure if it is just compiler's problem
> 
> thanks
> 

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

end of thread, other threads:[~2005-07-14  0:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-06 23:12 compiling error of linux 2.6.12 recent cvs head for db1550 using defconfig rolf liu
2005-07-07  0:08 ` Pete Popov
2005-07-07 11:22   ` Maciej W. Rozycki
2005-07-07 19:29     ` Pete Popov
2005-07-07 18:48   ` rolf liu
2005-07-14  0:18 ` Pete Popov

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