All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Kbuild fixes for v5.10-rc6
@ 2020-12-06 12:47 Masahiro Yamada
  2020-12-06 12:56 ` Masahiro Yamada
  2020-12-06 18:38 ` pr-tracker-bot
  0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2020-12-06 12:47 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Linux Kbuild mailing list

Hi Linus,

Please pull some more Kbuild fixes for v5.10
Thanks.



The following changes since commit 418baf2c28f3473039f2f7377760bd8f6897ae18:

  Linux 5.10-rc5 (2020-11-22 15:36:08 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
tags/kbuild-fixes-v5.10-2

for you to fetch changes up to 7d32358be8acb119dcfe39b6cf67ec6d94bf1fe7:

  kbuild: avoid split lines in .mod files (2020-12-06 21:09:28 +0900)

----------------------------------------------------------------
Kbuild fixes for v5.10 (2nd)

 - Move -Wcast-align to W=3, which tends to be false-positive and there
   is no tree-wide solution.

 - Pass -fmacro-prefix-map to KBUILD_CPPFLAGS because it is a preprocessor
   option and makes sense for .S files as well.

 - Disable -gdwarf-2 for Clang's integrated assembler to avoid warnings.

 - Disable --orphan-handling=warn for LLD 10.0.1 to avoid warnings.

 - Fix undesirable line breaks in *.mod files.

----------------------------------------------------------------
Arnd Bergmann (1):
      Makefile.extrawarn: move -Wcast-align to W=3

Denys Zagorui (1):
      kbuild: use -fmacro-prefix-map for .S sources

Masahiro Yamada (1):
      kbuild: avoid split lines in .mod files

Nathan Chancellor (2):
      kbuild: Hoist '--orphan-handling' into Kconfig
      kbuild: Disable CONFIG_LD_ORPHAN_WARN for ld.lld 10.0.1

Nick Desaulniers (1):
      Kbuild: do not emit debug info for assembly with LLVM_IAS=1

 MAINTAINERS                       |  1 +
 Makefile                          | 10 +++++++++-
 arch/Kconfig                      |  9 +++++++++
 arch/arm/Kconfig                  |  1 +
 arch/arm/Makefile                 |  4 ----
 arch/arm/boot/compressed/Makefile |  4 +++-
 arch/arm64/Kconfig                |  1 +
 arch/arm64/Makefile               |  4 ----
 arch/powerpc/Kconfig              |  1 +
 arch/powerpc/Makefile             |  1 -
 arch/x86/Kconfig                  |  1 +
 arch/x86/Makefile                 |  3 ---
 arch/x86/boot/compressed/Makefile |  4 +++-
 init/Kconfig                      | 10 ++++++++++
 scripts/Makefile.build            | 12 ++++--------
 scripts/Makefile.extrawarn        |  2 +-
 scripts/lld-version.sh            | 20 ++++++++++++++++++++
 17 files changed, 64 insertions(+), 24 deletions(-)
 create mode 100755 scripts/lld-version.sh


-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Kbuild fixes for v5.10-rc6
  2020-12-06 12:47 [GIT PULL] Kbuild fixes for v5.10-rc6 Masahiro Yamada
@ 2020-12-06 12:56 ` Masahiro Yamada
  2020-12-06 18:38 ` pr-tracker-bot
  1 sibling, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2020-12-06 12:56 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Linux Kbuild mailing list

The email subject should be "Kbuild fixes for v5.10-rc7",
not for v5.10-rc6.





On Sun, Dec 6, 2020 at 9:47 PM Masahiro Yamada <masahiroy@kernel.org> wrote:
>
> Hi Linus,
>
> Please pull some more Kbuild fixes for v5.10
> Thanks.
>
>
>
> The following changes since commit 418baf2c28f3473039f2f7377760bd8f6897ae18:
>
>   Linux 5.10-rc5 (2020-11-22 15:36:08 -0800)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
> tags/kbuild-fixes-v5.10-2
>
> for you to fetch changes up to 7d32358be8acb119dcfe39b6cf67ec6d94bf1fe7:
>
>   kbuild: avoid split lines in .mod files (2020-12-06 21:09:28 +0900)
>
> ----------------------------------------------------------------
> Kbuild fixes for v5.10 (2nd)
>
>  - Move -Wcast-align to W=3, which tends to be false-positive and there
>    is no tree-wide solution.
>
>  - Pass -fmacro-prefix-map to KBUILD_CPPFLAGS because it is a preprocessor
>    option and makes sense for .S files as well.
>
>  - Disable -gdwarf-2 for Clang's integrated assembler to avoid warnings.
>
>  - Disable --orphan-handling=warn for LLD 10.0.1 to avoid warnings.
>
>  - Fix undesirable line breaks in *.mod files.
>
> ----------------------------------------------------------------
> Arnd Bergmann (1):
>       Makefile.extrawarn: move -Wcast-align to W=3
>
> Denys Zagorui (1):
>       kbuild: use -fmacro-prefix-map for .S sources
>
> Masahiro Yamada (1):
>       kbuild: avoid split lines in .mod files
>
> Nathan Chancellor (2):
>       kbuild: Hoist '--orphan-handling' into Kconfig
>       kbuild: Disable CONFIG_LD_ORPHAN_WARN for ld.lld 10.0.1
>
> Nick Desaulniers (1):
>       Kbuild: do not emit debug info for assembly with LLVM_IAS=1
>
>  MAINTAINERS                       |  1 +
>  Makefile                          | 10 +++++++++-
>  arch/Kconfig                      |  9 +++++++++
>  arch/arm/Kconfig                  |  1 +
>  arch/arm/Makefile                 |  4 ----
>  arch/arm/boot/compressed/Makefile |  4 +++-
>  arch/arm64/Kconfig                |  1 +
>  arch/arm64/Makefile               |  4 ----
>  arch/powerpc/Kconfig              |  1 +
>  arch/powerpc/Makefile             |  1 -
>  arch/x86/Kconfig                  |  1 +
>  arch/x86/Makefile                 |  3 ---
>  arch/x86/boot/compressed/Makefile |  4 +++-
>  init/Kconfig                      | 10 ++++++++++
>  scripts/Makefile.build            | 12 ++++--------
>  scripts/Makefile.extrawarn        |  2 +-
>  scripts/lld-version.sh            | 20 ++++++++++++++++++++
>  17 files changed, 64 insertions(+), 24 deletions(-)
>  create mode 100755 scripts/lld-version.sh
>
>
> --
> Best Regards
> Masahiro Yamada



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Kbuild fixes for v5.10-rc6
  2020-12-06 12:47 [GIT PULL] Kbuild fixes for v5.10-rc6 Masahiro Yamada
  2020-12-06 12:56 ` Masahiro Yamada
@ 2020-12-06 18:38 ` pr-tracker-bot
  1 sibling, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2020-12-06 18:38 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Linus Torvalds, Linux Kernel Mailing List, Linux Kbuild mailing list

The pull request you sent on Sun, 6 Dec 2020 21:47:13 +0900:

> git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git tags/kbuild-fixes-v5.10-2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/e6585a493921991653be1fd65c3aa3fb90b000ae

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Kbuild fixes for v5.10-rc6
  2020-11-28 17:23 Masahiro Yamada
@ 2020-11-28 19:28 ` pr-tracker-bot
  0 siblings, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2020-11-28 19:28 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Linus Torvalds, Linux Kbuild mailing list, Linux Kernel Mailing List

The pull request you sent on Sun, 29 Nov 2020 02:23:31 +0900:

> git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git tags/kbuild-fixes-v5.10

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/45e885c439e825c19f3a51e46ef8210984bc0a9c

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [GIT PULL] Kbuild fixes for v5.10-rc6
@ 2020-11-28 17:23 Masahiro Yamada
  2020-11-28 19:28 ` pr-tracker-bot
  0 siblings, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2020-11-28 17:23 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kbuild mailing list, Linux Kernel Mailing List

Hi Linus,

Please pull Kbuild fixes for v5.10
Thanks.


The following changes since commit 3cea11cd5e3b00d91caf0b4730194039b45c5891:

  Linux 5.10-rc2 (2020-11-01 14:43:51 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
tags/kbuild-fixes-v5.10

for you to fetch changes up to d1889589a4f54b2d1d7075d608b596d6fcfd3d96:

  builddeb: Fix rootless build in setuid/setgid directory (2020-11-02
11:31:00 +0900)

----------------------------------------------------------------
Kbuild fixes for v5.10

 - Remove unused OBJSIZE variable.

 - Fix rootless deb-pkg build in a setgid directory.

----------------------------------------------------------------
Sven Joachim (1):
      builddeb: Fix rootless build in setuid/setgid directory

Vasily Gorbik (1):
      kbuild: remove unused OBJSIZE

 Documentation/kbuild/llvm.rst | 5 ++---
 Makefile                      | 4 +---
 scripts/package/builddeb      | 2 ++
 3 files changed, 5 insertions(+), 6 deletions(-)



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-12-06 18:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-06 12:47 [GIT PULL] Kbuild fixes for v5.10-rc6 Masahiro Yamada
2020-12-06 12:56 ` Masahiro Yamada
2020-12-06 18:38 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2020-11-28 17:23 Masahiro Yamada
2020-11-28 19:28 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.