diff options
author | Denys Zagorui <dzagorui@cisco.com> | 2020-11-02 04:08:53 -0800 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-11-25 03:41:17 +0900 |
commit | a716bd7432106aed82a751409d7be851a23022ac (patch) | |
tree | ff5a0639aa5f5a2cedfe1f77cd78e0c6bfe310f2 | |
parent | 095fbca0a94930b58f977284ef1b759b98700f8b (diff) | |
download | linux-stable-a716bd7432106aed82a751409d7be851a23022ac.tar.gz linux-stable-a716bd7432106aed82a751409d7be851a23022ac.tar.bz2 linux-stable-a716bd7432106aed82a751409d7be851a23022ac.zip |
kbuild: use -fmacro-prefix-map for .S sources
Follow-up to commit a73619a845d5 ("kbuild: use -fmacro-prefix-map to
make __FILE__ a relative path"). Assembler sources also use __FILE__
macro so this flag should be also applied to those sources.
Signed-off-by: Denys Zagorui <dzagorui@cisco.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -946,7 +946,7 @@ KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types) KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init) # change __FILE__ to the relative path from the srctree -KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=) +KBUILD_CPPFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=) # ensure -fcf-protection is disabled when using retpoline as it is # incompatible with -mindirect-branch=thunk-extern |