* [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE
@ 2015-09-15 3:19 Sedat Dilek
2015-09-15 3:40 ` Behan Webster
0 siblings, 1 reply; 4+ messages in thread
From: Sedat Dilek @ 2015-09-15 3:19 UTC (permalink / raw)
To: Michal Marek, linux-kbuild, linux-kernel; +Cc: Sedat Dilek, Behan Webster
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
--
2.5.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE
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
2015-09-15 4:07 ` Sedat Dilek
0 siblings, 1 reply; 4+ messages in thread
From: Behan Webster @ 2015-09-15 3:40 UTC (permalink / raw)
To: Sedat Dilek, Michal Marek, linux-kbuild, linux-kernel
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE
2015-09-15 3:40 ` Behan Webster
@ 2015-09-15 4:07 ` Sedat Dilek
2015-09-15 4:29 ` Behan Webster
0 siblings, 1 reply; 4+ messages in thread
From: Sedat Dilek @ 2015-09-15 4:07 UTC (permalink / raw)
To: Behan Webster; +Cc: Michal Marek, linux-kbuild, LKML
On Tue, Sep 15, 2015 at 5:40 AM, Behan Webster
<behanw@converseincode.com> wrote:
> Other than you changing the commit comment, this *is* my patch.
>
You were mentioned in the commit-message as original author.
> I haven't upstreamed this patch yet because we are still characterizing its
> effects on other architectures.
>
Then embed this information into the changelog of *your* patch.
> 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.
>
Read my changelog carefully - I reported success on AMD64.
So what is *your* solution in case of CONFIG_CC_OPTIMIZE_FOR_SIZE=y
(OptLevel '-Os' is wrong, '-Oz' is correct)?
Hack around with BROKEN Kconfig keyword :-)...
[ init/Kconfig ]
...
config CC_OPTIMIZE_FOR_SIZE
bool "Optimize for size"
help
Enabling this option will pass "-Os" instead of "-O2" to
your compiler resulting in a smaller kernel.
If unsure, say N.
...
Or at least document it in the official upstream Linux-kernel as clang
supported landed there.
Document BROKEN kernel-options with llvmlinux (clang).
Do you have a doc-file in Documentation-dir?
- Sedat -
>
> 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
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] kbuild: llvmlinux: Set appropriate compiler-flag for CONFIG_CC_OPTIMIZE_FOR_SIZE
2015-09-15 4:07 ` Sedat Dilek
@ 2015-09-15 4:29 ` Behan Webster
0 siblings, 0 replies; 4+ messages in thread
From: Behan Webster @ 2015-09-15 4:29 UTC (permalink / raw)
To: sedat.dilek; +Cc: Michal Marek, linux-kbuild, LKML
On 09/14/15 22:07, Sedat Dilek wrote:
> On Tue, Sep 15, 2015 at 5:40 AM, Behan Webster
> <behanw@converseincode.com> wrote:
>> I haven't upstreamed this patch yet because we are still characterizing its
>> effects on other architectures.
> Then embed this information into the changelog of *your* patch.
It's in our tree/build system, as a work in progress. Which is why I
haven't upstreamed it yet.
> So what is *your* solution in case of CONFIG_CC_OPTIMIZE_FOR_SIZE=y
> (OptLevel '-Os' is wrong, '-Oz' is correct)?
I don't have one yet, which is precisely why I haven't upstreamed it yet.
Sedat, why don't you try working with us instead of making demands and
accusing people?
Behan
--
Behan Webster
behanw@converseincode.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-09-15 4:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2015-09-15 4:07 ` Sedat Dilek
2015-09-15 4:29 ` Behan Webster
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).