[parisc-linux] Trouble building CVS binutils
    Matthew Wilcox 
    willy@thepuffingroup.com
    Thu, 30 Dec 1999 15:49:25 -0500
    
    
  
On Thu, Dec 30, 1999 at 12:28:48PM -0700, Jeffrey A Law wrote:
> According to the SOM spec the subspace alignment must be greater than zero.
> Thus, this seems like a bug in the HP linker.
OK, it seems we were tripping it with the 2.3 kernel.  We had:
	.SPACE $CODE$
	.SUBSPA $TEXT$
(a function)
	.SUBSPA $DATA$
(some more functions)
Changing this to:
	.SPACE $CODE$
	.SUBSPA $DATA$
(a function)
(some more functions)
seems to work OK.
Thanks to prumpf for his help tracking this down.