Messages in this thread |  | | Date | Mon, 2 Jun 2003 15:37:05 +0200 | From | Adrian Bunk <> | Subject | Re: const from include/asm-i386/byteorder.h |
| |
On Mon, Jun 02, 2003 at 03:51:39PM +0400, Nikita Danilov wrote: >... > --- 1.15/include/linux/compiler.h Wed Apr 9 22:15:46 2003 > +++ edited/include/linux/compiler.h Mon Jun 2 14:44:18 2003 >... > +/* The attribute `const' is not implemented in GCC versions earlier than 2.5. */ > +/* Basically this is just slightly more strict class than the `pure' > + attribute */ > +#if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) > +#define __attribute_const __attribute__ ((__const__)) > +#else > +#define __attribute_const > +#endif >...
gcc 2.95 is the oldest compiler supported in kernel 2.5, there's no need to be compatible with older compilers.
cu Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |