|
@@ -58,11 +58,6 @@
|
|
* This is one of the first .c files built. Error out early
|
|
* This is one of the first .c files built. Error out early
|
|
* if we have compiler trouble..
|
|
* if we have compiler trouble..
|
|
*/
|
|
*/
|
|
-#if __GNUC__ == 2 && __GNUC_MINOR__ == 96
|
|
|
|
-#ifdef CONFIG_FRAME_POINTER
|
|
|
|
-#error This compiler cannot compile correctly with frame pointers enabled
|
|
|
|
-#endif
|
|
|
|
-#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
|
#include <asm/smp.h>
|
|
#include <asm/smp.h>
|
|
@@ -74,7 +69,7 @@
|
|
* To avoid associated bogus bug reports, we flatly refuse to compile
|
|
* To avoid associated bogus bug reports, we flatly refuse to compile
|
|
* with a gcc that is known to be too old from the very beginning.
|
|
* with a gcc that is known to be too old from the very beginning.
|
|
*/
|
|
*/
|
|
-#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 95)
|
|
|
|
|
|
+#if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2)
|
|
#error Sorry, your GCC is too old. It builds incorrect kernels.
|
|
#error Sorry, your GCC is too old. It builds incorrect kernels.
|
|
#endif
|
|
#endif
|
|
|
|
|