search for: f147a37309e3

Displaying 2 results from an estimated 2 matches for "f147a37309e3".

2019 Jan 06
2
[PATCH klibc 0/2] Fix i386 build
This series fixes link/load issues I found on i386 with Debian's toolchain (gcc 8 with PIE as default, binutils 2.31). Ben. Ben Hutchings (2): [klibc] i386: Use -Ttext-segment to avoid address collision [klibc] Disable PIE scripts/Kbuild.klibc | 3 ++- usr/klibc/arch/i386/MCONFIG | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) -------------- next part -------------- A
2018 Jun 27
0
[PATCH] add more PHONY targets to $(PHONY)
...$(Q)mkdir -p $(INSTALLROOT)$(bindir) @@ -111,3 +111,7 @@ descend: footer __install: descend @: endif + +# Declare the contents of the PHONY variable as phony. We keep the variable for +# if_changed. +.PHONY: $(PHONY) diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc index f500d5358ef6..f147a37309e3 100644 --- a/scripts/Kbuild.klibc +++ b/scripts/Kbuild.klibc @@ -54,7 +54,7 @@ src := $(obj) # Preset target and make sure it is a ':=' variable targets := -.phony: __build +PHONY := __build __build: # Read .config if it exist, otherwise ignore @@ -374,7 +374,7 @@ endif # Descendin...