Re: checking if CC supports weak symbols

2003-01-24 Thread Raja R Harinath
Hi, Andreas Schwab <[EMAIL PROTECTED]> writes: > Raja R Harinath <[EMAIL PROTECTED]> writes: [snip] > |> * The Intel C compiler for Linux is supposed to be able to compile > |> the Linux kernel. New versions the Linux kernel do use weak > |> symbols (possibly with this syntax) -- so ma

Re: checking if CC supports weak symbols

2003-01-24 Thread Andreas Schwab
Raja R Harinath <[EMAIL PROTECTED]> writes: |> Hi, |> |> Peter Eisentraut <[EMAIL PROTECTED]> writes: |> |> > Ralf Corsepius writes: |> > |> >> More precisely, I am trying to detect whether a c-compiler supports |> >> gcc's "function __attribute__((weak))" syntax or not. |> > |> > Is there any r

Re: checking if CC supports weak symbols

2003-01-23 Thread Raja R Harinath
Hi, Peter Eisentraut <[EMAIL PROTECTED]> writes: > Ralf Corsepius writes: > >> More precisely, I am trying to detect whether a c-compiler supports >> gcc's "function __attribute__((weak))" syntax or not. > > Is there any reason to think that compilers other than GCC support this > syntax? I'm no

Re: checking if CC supports weak symbols

2003-01-23 Thread Ralf Corsepius
On Fri, 2003-01-24 at 00:53, Peter Eisentraut wrote: > Ralf Corsepius writes: > > > More precisely, I am trying to detect whether a c-compiler supports > > gcc's "function __attribute__((weak))" syntax or not. > > Is there any reason to think that compilers other than GCC support this > syntax? W

Re: checking if CC supports weak symbols

2003-01-23 Thread Peter Eisentraut
Ralf Corsepius writes: > More precisely, I am trying to detect whether a c-compiler supports > gcc's "function __attribute__((weak))" syntax or not. Is there any reason to think that compilers other than GCC support this syntax? -- Peter Eisentraut [EMAIL PROTECTED]

checking if CC supports weak symbols

2003-01-22 Thread Ralf Corsepius
Hi, I am looking for an autoconf macro to check whether the CC in use supports weak symbols. More precisely, I am trying to detect whether a c-compiler supports gcc's "function __attribute__((weak))" syntax or not. TIA, Ralf