linux-kbuild.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Behan Webster <behanw@converseincode.com>
To: Sedat Dilek <sedat.dilek@gmail.com>,
	Michal Marek <mmarek@suse.com>,
	linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE
Date: Mon, 14 Sep 2015 21:40:15 -0600	[thread overview]
Message-ID: <55F7931F.2020100@converseincode.com> (raw)
In-Reply-To: <1442287188-11326-1-git-send-email-sedat.dilek@gmail.com>

Other than you changing the commit comment, this *is* my patch.

I haven't upstreamed this patch yet because we are still characterizing 
its effects on other architectures.

Clang certainly doesn't require -Oz to be used to be able to boot for 
arm nor arm64. So the commit message isn't correct either.

NAK

Behan

On 09/14/15 21:19, Sedat Dilek wrote:
> Based on a patch of Behan Webster (see [1]).
>
> CLANG (here: v3.7) requires '-Oz' as OptLevel to be set.
>
> A Linux v4.3-rc1 kernel built fine with CONFIG_CC_OPTIMIZE_FOR_SIZE=y
> and boots on bare metal.
> This is a Ubuntu/precise AMD64 system.
>
> Tested against Linux v4.3-rc1 and a refreshed llvmlinux patchset.
>
> [1] http://git.linuxfoundation.org/?p=llvmlinux.git;a=blob;f=arch/all/patches/smaller.patch
>
> CC: Behan Webster <behanw@converseincode.com>
> ---
>   Makefile | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 4249441e535d..a57fb6b39ed7 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -622,7 +622,8 @@ KBUILD_CFLAGS	+= $(call cc-option,-fno-delete-null-pointer-checks,)
>   endif
>   
>   ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
> -KBUILD_CFLAGS	+= -Os $(call cc-disable-warning,maybe-uninitialized,)
> +KBUILD_CFLAGS 	+= $(call cc-option,-Oz,-Os)
> +KBUILD_CFLAGS	+= $(call cc-disable-warning,maybe-uninitialized,)
>   else
>   KBUILD_CFLAGS	+= -O2
>   endif


-- 
Behan Webster
behanw@converseincode.com


  reply	other threads:[~2015-09-15  3:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-15  3:19 [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE Sedat Dilek
2015-09-15  3:40 ` Behan Webster [this message]
2015-09-15  4:07   ` Sedat Dilek
2015-09-15  4:29     ` Behan Webster

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55F7931F.2020100@converseincode.com \
    --to=behanw@converseincode.com \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mmarek@suse.com \
    --cc=sedat.dilek@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).