Re: indirect lcall without `*'

2005-03-13 Thread Hacksaw
Ahh, okay. I'm just jumpy because this is a production server.

Thanks for the answer. :-)
-- 
Nothing can plugh you now
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD


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


Re: indirect lcall without `*'

2005-03-13 Thread Mikael Pettersson
On Sun, 13 Mar 2005 00:46:24 -0500, Hacksaw <[EMAIL PROTECTED]> wrote:
>In compiling 2.4.29 I get this during the compilation of pci-pc.c:
>
>Warning: indirect lcall without `*'
>
>I note from looking around the net that this is an old "problem", dating back 
>at least to 2.4.18, if not earlier.
>
>What does it mean? Should I care? If I shouldn't, shouldn't there be a message 
>somewhere in the build process that says "This isn't a problem" so people 
>don't write to lkml and ask about it?

It's a binutils version issue. Older binutils didn't
require the '*', while newer ones print a warning when
it's missing. Adding the missing '*'s breaks old binutils,
which isn't considered acceptable in the stable 2.4 series.

So just live with the warnings, or apply personal patches
to silence them (like I've been doing for ages).

/Mikael
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


indirect lcall without `*'

2005-03-12 Thread Hacksaw
In compiling 2.4.29 I get this during the compilation of pci-pc.c:

Warning: indirect lcall without `*'

I note from looking around the net that this is an old "problem", dating back 
at least to 2.4.18, if not earlier.

What does it mean? Should I care? If I shouldn't, shouldn't there be a message 
somewhere in the build process that says "This isn't a problem" so people 
don't write to lkml and ask about it?

Thanks in advance for your time and consideration.
-- 
That which is impossible has become necessary.
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD


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


Warning: indirect lcall without `*'

2001-07-19 Thread Matthew Gardiner

gcc -D__KERNEL__ -I/usr/src/linux-2.4.6/include -Wall -Wstrict-prototypes 
-Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common 
-pipe -mpreferred-stack-boundary=2 -march=i686 -DMODULE   -c -o apm.o apm.c
{standard input}: Assembler messages:
{standard input}:188: Warning: indirect lcall without `*'
{standard input}:265: Warning: indirect lcall without `*'
make[1]: Leaving directory `/usr/src/linux-2.4.6/arch/i386/kernel'
make -C  arch/i386/mm CFLAGS="-D__KERNEL__ -I/usr/src/linux-2.4.6/include 
-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer 
-fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 
-march=i686 -DMODULE" MAKING_MODULES=1 modules
make[1]: Entering directory `/usr/src/linux-2.4.6/arch/i386/mm'
make[1]: Nothing to be done for `modules'.
make[1]: Leaving directory `/usr/src/linux-2.4.6/arch/i386/mm'
make -C  arch/i386/lib CFLAGS="-D__KERNEL__ -I/usr/src/linux-2.4.6/include 
-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer 
-fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 
-march=i686 -DMODULE" MAKING_MODULES=1 modules
make[1]: Entering directory `/usr/src/linux-2.4.6/arch/i386/lib'
make[1]: Nothing to be done for `modules'.
make[1]: Leaving directory `/usr/src/linux-2.4.6/arch/i386/lib'
[root@kiwiunix linux]#
-- 
WARNING:

This email was written on an OS using the viral 'GPL' as its license.

Please check with Bill Gates before continuing to read this email/posting.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/