diff options
author | Bill Wendling <morbo@google.com> | 2020-09-22 16:21:40 -0700 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-10-09 23:57:30 +0900 |
commit | a968433723310f35898b4a2f635a7991aeef66b1 (patch) | |
tree | 27bc9ae9916d55f2ccb9bec2afbd5aa0f9ecb678 /tools/testing | |
parent | 548b8b5168c90c42e88f70fcf041b4ce0b8e7aa8 (diff) | |
download | linux-a968433723310f35898b4a2f635a7991aeef66b1.tar.gz linux-a968433723310f35898b4a2f635a7991aeef66b1.tar.bz2 linux-a968433723310f35898b4a2f635a7991aeef66b1.zip |
kbuild: explicitly specify the build id style
ld's --build-id defaults to "sha1" style, while lld defaults to "fast".
The build IDs are very different between the two, which may confuse
programs that reference them.
Signed-off-by: Bill Wendling <morbo@google.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/bpf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile index fc946b7ac288..daf186f88a63 100644 --- a/tools/testing/selftests/bpf/Makefile +++ b/tools/testing/selftests/bpf/Makefile @@ -133,7 +133,7 @@ $(OUTPUT)/%:%.c $(OUTPUT)/urandom_read: urandom_read.c $(call msg,BINARY,,$@) - $(Q)$(CC) $(LDFLAGS) -o $@ $< $(LDLIBS) -Wl,--build-id + $(Q)$(CC) $(LDFLAGS) -o $@ $< $(LDLIBS) -Wl,--build-id=sha1 $(OUTPUT)/test_stub.o: test_stub.c $(BPFOBJ) $(call msg,CC,,$@) |