From: "Jerome Marchand" <jmarchan@xxxxxxxxxx> do_compile_shared_library shouldn't ignore LDFLAGS. That makes it difficult for packager to follow their distribution packaging guidelines. [ Taken from trace-cmd ] Link: https://lore.kernel.org/all/20211111180318.499099-1-jmarchan@xxxxxxxxxx/ Signed-off-by: "Jerome Marchand" <jmarchan@xxxxxxxxxx> Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- scripts/utils.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.mk b/scripts/utils.mk index 7a88b10..0b3c067 100644 --- a/scripts/utils.mk +++ b/scripts/utils.mk @@ -56,7 +56,7 @@ do_build_static_lib = \ do_compile_shared_library = \ ($(print_shared_lib_compile) \ - $(CC) --shared $^ '-Wl,-soname,$(1),-rpath=$$ORIGIN' -o $@ $(LIBS)) + $(CC) --shared $^ '-Wl,-soname,$(1),-rpath=$$ORIGIN' -o $@ $(LDFLAGS) $(LIBS)) do_compile_plugin_obj = \ ($(print_plugin_obj_compile) \ -- 2.31.1