Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools/bootconfig: specify LDFLAGS as an argument to CC

Explicitly specify LDFLAGS as an argument to CC so that this can be
overridden by the user.

Link: https://lore.kernel.org/all/20250328183858.1417835-3-bmasney@redhat.com/

Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>

authored by

Brian Masney and committed by
Masami Hiramatsu (Google)
d81bab11 9c8cedef

+1 -1
+1 -1
tools/bootconfig/Makefile
··· 18 18 all: $(ALL_PROGRAMS) test 19 19 20 20 $(OUTPUT)bootconfig: main.c include/linux/bootconfig.h $(LIBSRC) 21 - $(CC) $(filter %.c,$^) $(CFLAGS) -o $@ 21 + $(CC) $(filter %.c,$^) $(CFLAGS) $(LDFLAGS) -o $@ 22 22 23 23 test: $(ALL_PROGRAMS) test-bootconfig.sh 24 24 ./test-bootconfig.sh $(OUTPUT)