Displaying 4 results from an estimated 4 matches for "dc10fc5".
Did you mean:
dc105
2019 Jan 18
0
[klibc:master] Never clean files in quilt status directory
...m the clean rules for
a similar reason, so do the same for .pc.
Link: https://www.zytor.com/pipermail/klibc/2018-July/003999.html
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index dc10fc5..cd15149 100644
--- a/Makefile
+++ b/Makefile
@@ -158,7 +158,7 @@ FORCE: ;
###
# clean: remove generated files
# mrproper does a full cleaning including .config and linux symlink
-FIND_IGNORE := \( -name .git \) -prune -o
+FIND_IGNORE := \( -name .git -o -name .pc \) -prune -o
quiet_cmd_rmfiles...
2013 Dec 03
0
[klibc:master] ppc64: Add ppc64le support
....S | 34 ++++++++++++++++++++-----------
usr/klibc/arch/ppc64/setjmp.S | 40 ++++++++++++++++++++++++++----------
usr/klibc/arch/ppc64/sysstub.ph | 45 ++++++++++++++++++++++++++---------------
5 files changed, 87 insertions(+), 43 deletions(-)
diff --git a/Makefile b/Makefile
index a7da622..dc10fc5 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,11 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/a...
2013 Dec 03
2
[PATCH 1/2] ppc64: Add ppc64le support
....S | 34 ++++++++++++++++++++-----------
usr/klibc/arch/ppc64/setjmp.S | 40 ++++++++++++++++++++++++++----------
usr/klibc/arch/ppc64/sysstub.ph | 45 ++++++++++++++++++++++++++---------------
5 files changed, 87 insertions(+), 43 deletions(-)
diff --git a/Makefile b/Makefile
index a7da622..dc10fc5 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,11 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/a...
2016 Apr 13
0
[PATCH 1/1] x32 support
...arch/x32/setjmp.S | 54 ++++++++++++++
usr/klibc/arch/x32/vfork.S | 27 +++++++
usr/klibc/lseek.c | 2 +-
usr/klibc/open.c | 4 +-
12 files changed, 383 insertions(+), 14 deletions(-)
diff --git a/Makefile b/Makefile
index dc10fc5..6d53bbb 100644
--- a/Makefile
+++ b/Makefile
@@ -92,9 +92,14 @@ MAKEFLAGS += --no-print-directory
klibc := -f $(srctree)/scripts/Kbuild.klibc obj
# Very first target
-.PHONY: all klcc klibc
+.PHONY: all klcc klibc srctree
all: klcc klibc
+srctree:
+ test -f scripts/mk_srctree/$(ARCH) &&am...