From b46522394dde7341a5253658096f354b65cbd90d Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Thu, 17 May 2007 20:18:11 -0700 Subject: Revert "[PATCH] x86: Drop cc-options call for all options supported in gcc 3.2+" This reverts commit c8fdd247255a3a027cd9f66dcf93e6847d1d2f85. It turns out the kernel was correct, and the gcc complaint was a gcc bug. The preferred stack boundary is expressed not in bytes, but in the the log2() of the preferred boundary, so "-mpreferred-stack-boundary=2" is in fact exactly what we want, but a gcc that is compiled for x86-64 will consider it an error (because the 64-bit calling sequence says that the stack should be 16-byte aligned) even if we are then using "-m32" to generate 32-bit code. Noted-by: Mikulas Patocka Cc: Jan Hubicka Acked-by: Andi Kleen Signed-off-by: Linus Torvalds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e6990e2cdafc..948fa09442f1 100644 --- a/Makefile +++ b/Makefile @@ -491,7 +491,7 @@ endif include $(srctree)/arch/$(ARCH)/Makefile ifdef CONFIG_FRAME_POINTER -CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls +CFLAGS += -fno-omit-frame-pointer $(call cc-option,-fno-optimize-sibling-calls,) else CFLAGS += -fomit-frame-pointer endif -- cgit v1.2.1 From 55b637c6a003a8c4850b41a2c2fd6942d8a7f530 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 18 May 2007 21:06:17 -0700 Subject: Linux v2.6.22-rc2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 948fa09442f1..34210af91ce2 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 22 -EXTRAVERSION = -rc1 +EXTRAVERSION = -rc2 NAME = Nocturnal Monster Puppy # *DOCUMENTATION* -- cgit v1.2.1 From c420bc9f09a0926b708c3edb27eacba434a4f4ba Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 25 May 2007 19:55:14 -0700 Subject: Linux 2.6.22-rc3 It's that time of the year again. Summer starts in the US, and people want to sit at the beach with a new -rc candidate. Signed-off-by: Linus Torvalds --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 34210af91ce2..562a90902cf6 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 22 -EXTRAVERSION = -rc2 -NAME = Nocturnal Monster Puppy +EXTRAVERSION = -rc3 +NAME = Jeff Thinks I Should Change This, But To What? # *DOCUMENTATION* # To see a list of typical targets execute "make help" -- cgit v1.2.1