Re: unresoved symbol _gp_disp

2007-10-05 Thread Ralf Baechle
ECTED]>, > "linux-kernel.org" > Subject: Re: unresoved symbol _gp_disp > Content-Type: text/plain; charset=us-ascii > > "Steven J. Hill" <[EMAIL PROTECTED]> writes: > > > > I have written a loadble module ( which gets complied

Re: unresoved symbol _gp_disp

2007-10-05 Thread Ralf Baechle
Subject: Re: unresoved symbol _gp_disp Content-Type: text/plain; charset=us-ascii Steven J. Hill [EMAIL PROTECTED] writes: I have written a loadble module ( which gets complied along with kernel) which does some floating point operation. NO FLOATING POINT in the kernel PERIOD

Re: unresoved symbol _gp_disp

2007-10-04 Thread Andi Kleen
"Steven J. Hill" <[EMAIL PROTECTED]> writes: > > I have written a loadble module ( which gets complied > > along with kernel) which does some floating point > > operation. > > > NO FLOATING POINT in the kernel PERIOD. Either use integer > operations, or redo your software architecture and do

Re: unresoved symbol _gp_disp

2007-10-04 Thread Steven J. Hill
> I have written a loadble module ( which gets complied > along with kernel) which does some floating point > operation. > NO FLOATING POINT in the kernel PERIOD. Either use integer operations, or redo your software architecture and do the floating point in userspace. -Steve - To unsubscribe

Re: unresoved symbol _gp_disp

2007-10-04 Thread David Daney
Steven J. Hill wrote: I have written a loadble module ( which gets complied along with kernel) which does some floating point operation. NO FLOATING POINT in the kernel PERIOD. Unless you compile your code with -msoft-float *and* also have a version of libgcc compiled with -mlong-calls

unresoved symbol _gp_disp

2007-10-04 Thread veerasena reddy
to load the module i get the following error "unresoved symbol _gp_disp". === below is from MIPS FAQ which also doesn't help: Insmod complains about the _gp_disp symbol being undefined _gp_disp is a magic symbol used with PIC code on MIPS

unresoved symbol _gp_disp

2007-10-04 Thread veerasena reddy
to load the module i get the following error unresoved symbol _gp_disp. === below is from MIPS FAQ which also doesn't help: Insmod complains about the _gp_disp symbol being undefined _gp_disp is a magic symbol used with PIC code on MIPS. Be happy

Re: unresoved symbol _gp_disp

2007-10-04 Thread Steven J. Hill
I have written a loadble module ( which gets complied along with kernel) which does some floating point operation. NO FLOATING POINT in the kernel PERIOD. Either use integer operations, or redo your software architecture and do the floating point in userspace. -Steve - To unsubscribe from

Re: unresoved symbol _gp_disp

2007-10-04 Thread David Daney
Steven J. Hill wrote: I have written a loadble module ( which gets complied along with kernel) which does some floating point operation. NO FLOATING POINT in the kernel PERIOD. Unless you compile your code with -msoft-float *and* also have a version of libgcc compiled with -mlong-calls

Re: unresoved symbol _gp_disp

2007-10-04 Thread Andi Kleen
Steven J. Hill [EMAIL PROTECTED] writes: I have written a loadble module ( which gets complied along with kernel) which does some floating point operation. NO FLOATING POINT in the kernel PERIOD. Either use integer operations, or redo your software architecture and do the floating