diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/init/main.c b/init/main.c index afe5eb84ad52..8342c2890b16 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -58,11 +58,6 @@ | |||
58 | * This is one of the first .c files built. Error out early | 58 | * This is one of the first .c files built. Error out early |
59 | * if we have compiler trouble.. | 59 | * if we have compiler trouble.. |
60 | */ | 60 | */ |
61 | #if __GNUC__ == 2 && __GNUC_MINOR__ == 96 | ||
62 | #ifdef CONFIG_FRAME_POINTER | ||
63 | #error This compiler cannot compile correctly with frame pointers enabled | ||
64 | #endif | ||
65 | #endif | ||
66 | 61 | ||
67 | #ifdef CONFIG_X86_LOCAL_APIC | 62 | #ifdef CONFIG_X86_LOCAL_APIC |
68 | #include <asm/smp.h> | 63 | #include <asm/smp.h> |
@@ -74,7 +69,7 @@ | |||
74 | * To avoid associated bogus bug reports, we flatly refuse to compile | 69 | * To avoid associated bogus bug reports, we flatly refuse to compile |
75 | * with a gcc that is known to be too old from the very beginning. | 70 | * with a gcc that is known to be too old from the very beginning. |
76 | */ | 71 | */ |
77 | #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 95) | 72 | #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2) |
78 | #error Sorry, your GCC is too old. It builds incorrect kernels. | 73 | #error Sorry, your GCC is too old. It builds incorrect kernels. |
79 | #endif | 74 | #endif |
80 | 75 | ||