scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit c3de857eebb8836ff812219b184ba3f4255a98e7
parent bb6fdedd6627a773e285cdd9b7bc7e788c94a736
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 19 Jun 2020 16:57:19 +0200

libc: Rename ppc32 to ppc

This name is more extended and it creates less problems when
interacting with other toolchains.

Diffstat:
Rinclude/bits/ppc32/arch/cdefs.h -> include/bits/ppc/arch/cdefs.h | 0
Rinclude/bits/ppc32/arch/limits.h -> include/bits/ppc/arch/limits.h | 0
Rinclude/bits/ppc32/arch/stdint.h -> include/bits/ppc/arch/stdint.h | 0
Rinclude/bits/ppc32/arch/stdio.h -> include/bits/ppc/arch/stdio.h | 0
Rinclude/bits/ppc32/arch/stdlib.h -> include/bits/ppc/arch/stdlib.h | 0
Rinclude/bits/ppc32/arch/string.h -> include/bits/ppc/arch/string.h | 0
Rinclude/bits/ppc32/arch/time.h -> include/bits/ppc/arch/time.h | 0
Msrc/libc/arch/Makefile | 2+-
Rsrc/libc/arch/ppc32/Makefile -> src/libc/arch/ppc/Makefile | 0
Rsrc/libc/arch/ppc32/crt-posix.s -> src/libc/arch/ppc/crt-posix.s | 0
Rsrc/libc/arch/ppc32/deps.mk -> src/libc/arch/ppc/deps.mk | 0
Rsrc/libc/arch/ppc32/linux/Makefile -> src/libc/arch/ppc/linux/Makefile | 0
Rsrc/libc/arch/ppc32/linux/_cerrno.s -> src/libc/arch/ppc/linux/_cerrno.s | 0
Rsrc/libc/arch/ppc32/linux/_getheap.c -> src/libc/arch/ppc/linux/_getheap.c | 0
Rsrc/libc/arch/ppc32/linux/crt.s -> src/libc/arch/ppc/linux/crt.s | 0
Rsrc/libc/arch/ppc32/linux/deps.mk -> src/libc/arch/ppc/linux/deps.mk | 0
Rsrc/libc/arch/ppc32/linux/gensys.sh -> src/libc/arch/ppc/linux/gensys.sh | 0
Rsrc/libc/arch/ppc32/linux/syscall.lst -> src/libc/arch/ppc/linux/syscall.lst | 0
Rsrc/libc/arch/ppc32/longjmp.s -> src/libc/arch/ppc/longjmp.s | 0
Rsrc/libc/arch/ppc32/memchr.c -> src/libc/arch/ppc/memchr.c | 0
Rsrc/libc/arch/ppc32/memcmp.c -> src/libc/arch/ppc/memcmp.c | 0
Rsrc/libc/arch/ppc32/memcpy.c -> src/libc/arch/ppc/memcpy.c | 0
Rsrc/libc/arch/ppc32/memmove.c -> src/libc/arch/ppc/memmove.c | 0
Rsrc/libc/arch/ppc32/memset.c -> src/libc/arch/ppc/memset.c | 0
Rsrc/libc/arch/ppc32/setjmp.s -> src/libc/arch/ppc/setjmp.s | 0
Rsrc/libcrt/ppc32/Makefile -> src/libcrt/ppc/Makefile | 0
Rsrc/libcrt/ppc32/dummy.s -> src/libcrt/ppc/dummy.s | 0
27 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/bits/ppc32/arch/cdefs.h b/include/bits/ppc/arch/cdefs.h diff --git a/include/bits/ppc32/arch/limits.h b/include/bits/ppc/arch/limits.h diff --git a/include/bits/ppc32/arch/stdint.h b/include/bits/ppc/arch/stdint.h diff --git a/include/bits/ppc32/arch/stdio.h b/include/bits/ppc/arch/stdio.h diff --git a/include/bits/ppc32/arch/stdlib.h b/include/bits/ppc/arch/stdlib.h diff --git a/include/bits/ppc32/arch/string.h b/include/bits/ppc/arch/string.h diff --git a/include/bits/ppc32/arch/time.h b/include/bits/ppc/arch/time.h diff --git a/src/libc/arch/Makefile b/src/libc/arch/Makefile @@ -8,7 +8,7 @@ DIRS =\ arm32\ arm64\ i386\ - ppc32\ + ppc\ all: +@cd $(ARCH) && $(MAKE) diff --git a/src/libc/arch/ppc32/Makefile b/src/libc/arch/ppc/Makefile diff --git a/src/libc/arch/ppc32/crt-posix.s b/src/libc/arch/ppc/crt-posix.s diff --git a/src/libc/arch/ppc32/deps.mk b/src/libc/arch/ppc/deps.mk diff --git a/src/libc/arch/ppc32/linux/Makefile b/src/libc/arch/ppc/linux/Makefile diff --git a/src/libc/arch/ppc32/linux/_cerrno.s b/src/libc/arch/ppc/linux/_cerrno.s diff --git a/src/libc/arch/ppc32/linux/_getheap.c b/src/libc/arch/ppc/linux/_getheap.c diff --git a/src/libc/arch/ppc32/linux/crt.s b/src/libc/arch/ppc/linux/crt.s diff --git a/src/libc/arch/ppc32/linux/deps.mk b/src/libc/arch/ppc/linux/deps.mk diff --git a/src/libc/arch/ppc32/linux/gensys.sh b/src/libc/arch/ppc/linux/gensys.sh diff --git a/src/libc/arch/ppc32/linux/syscall.lst b/src/libc/arch/ppc/linux/syscall.lst diff --git a/src/libc/arch/ppc32/longjmp.s b/src/libc/arch/ppc/longjmp.s diff --git a/src/libc/arch/ppc32/memchr.c b/src/libc/arch/ppc/memchr.c diff --git a/src/libc/arch/ppc32/memcmp.c b/src/libc/arch/ppc/memcmp.c diff --git a/src/libc/arch/ppc32/memcpy.c b/src/libc/arch/ppc/memcpy.c diff --git a/src/libc/arch/ppc32/memmove.c b/src/libc/arch/ppc/memmove.c diff --git a/src/libc/arch/ppc32/memset.c b/src/libc/arch/ppc/memset.c diff --git a/src/libc/arch/ppc32/setjmp.s b/src/libc/arch/ppc/setjmp.s diff --git a/src/libcrt/ppc32/Makefile b/src/libcrt/ppc/Makefile diff --git a/src/libcrt/ppc32/dummy.s b/src/libcrt/ppc/dummy.s