summaryrefslogtreecommitdiff
path: root/packages/newlib/1.17.0
diff options
context:
space:
mode:
Diffstat (limited to 'packages/newlib/1.17.0')
-rw-r--r--packages/newlib/1.17.0/0000-fix-eabihf.patch27
-rw-r--r--packages/newlib/1.17.0/0001-fix-mt-cflags.patch29
-rw-r--r--packages/newlib/1.17.0/0002-fix-arm-build.patch64
-rw-r--r--packages/newlib/1.17.0/chksum4
-rw-r--r--packages/newlib/1.17.0/version.desc1
5 files changed, 0 insertions, 125 deletions
diff --git a/packages/newlib/1.17.0/0000-fix-eabihf.patch b/packages/newlib/1.17.0/0000-fix-eabihf.patch
deleted file mode 100644
index 66d56a1..0000000
--- a/packages/newlib/1.17.0/0000-fix-eabihf.patch
+++ /dev/null
@@ -1,27 +0,0 @@
----
- libgloss/arm/configure | 2 +-
- libgloss/arm/configure.in | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
---- a/libgloss/arm/configure
-+++ b/libgloss/arm/configure
-@@ -2540,7 +2540,7 @@
-
-
- case "${target}" in
-- *-*-elf | *-*-eabi)
-+ *-*-elf | *-*-eabi*)
- objtype=elf-
- ;;
- *-*-coff)
---- a/libgloss/arm/configure.in
-+++ b/libgloss/arm/configure.in
-@@ -49,7 +49,7 @@
- LIB_AM_PROG_AS
-
- case "${target}" in
-- *-*-elf | *-*-eabi)
-+ *-*-elf | *-*-eabi*)
- objtype=elf-
- ;;
- *-*-coff)
diff --git a/packages/newlib/1.17.0/0001-fix-mt-cflags.patch b/packages/newlib/1.17.0/0001-fix-mt-cflags.patch
deleted file mode 100644
index 9984a7e..0000000
--- a/packages/newlib/1.17.0/0001-fix-mt-cflags.patch
+++ /dev/null
@@ -1,29 +0,0 @@
----
- config/mt-d30v | 4 ++--
- config/mt-gnu | 2 +-
- config/mt-ospace | 4 ++--
- 3 files changed, 5 insertions(+), 5 deletions(-)
-
---- a/config/mt-d30v
-+++ b/config/mt-d30v
-@@ -1,4 +1,4 @@
- # Build libraries optimizing for space, not speed.
- # Turn off warnings about symbols named the same as registers
-- CFLAGS_FOR_TARGET = -g -Os -Wa,-C
-- CXXFLAGS_FOR_TARGET = -g -Os -Wa,-C
-+ CFLAGS_FOR_TARGET += -g -Os -Wa,-C
-+ CXXFLAGS_FOR_TARGET += -g -Os -Wa,-C
---- a/config/mt-gnu
-+++ b/config/mt-gnu
-@@ -1,2 +1,2 @@
--CXXFLAGS_FOR_TARGET = $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) \
-+CXXFLAGS_FOR_TARGET += $(CXXFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) \
- $(DEBUG_PREFIX_CFLAGS_FOR_TARGET) -D_GNU_SOURCE
---- a/config/mt-ospace
-+++ b/config/mt-ospace
-@@ -1,3 +1,3 @@
- # Build libraries optimizing for space, not speed.
-- CFLAGS_FOR_TARGET = -g -Os
-- CXXFLAGS_FOR_TARGET = -g -Os
-+ CFLAGS_FOR_TARGET += -g -Os
-+ CXXFLAGS_FOR_TARGET += -g -Os
diff --git a/packages/newlib/1.17.0/0002-fix-arm-build.patch b/packages/newlib/1.17.0/0002-fix-arm-build.patch
deleted file mode 100644
index 6b8170c..0000000
--- a/packages/newlib/1.17.0/0002-fix-arm-build.patch
+++ /dev/null
@@ -1,64 +0,0 @@
----
- libgloss/arm/linux-syscalls0.S | 44 -----------------------------------------
- 1 file changed, 44 deletions(-)
-
---- a/libgloss/arm/linux-syscalls0.S
-+++ b/libgloss/arm/linux-syscalls0.S
-@@ -19,47 +19,6 @@
- #define GLOBAL(name) .global name; FUNC(name)
- #define SIZE(name) .size name, .-name
-
--#if __thumb__
--
--# define SYSCALL0(name) \
-- GLOBAL(_ ## name); \
-- mov r12, r7; \
-- mov r7, #SYS_ ## name; \
-- swi; \
-- mov r7, r12; \
-- b _set_errno; \
-- SIZE(_ ## name)
--
--/* static int _syscall3(int a, int b, int c, int number); */
--FUNC(_syscall3)
-- push { r7 }
-- mov r7, r3
-- swi
-- pop { r7 }
-- b _set_errno
-- SIZE(_syscall3)
--
--# define SYSCALL3(name) \
-- GLOBAL(_ ## name); \
-- mov r3, #SYS_ ## name; \
-- b _syscall3; \
-- SIZE(_ ## name)
--
--# define SYSCALL6(name) \
-- GLOBAL(_ ## name); \
-- push { r4 - r5, r7 }; \
-- ldr r4, [sp, #12]; \
-- ldr r5, [sp, #16]; \
-- mov r7, #SYS_ ## name; \
-- swi; \
-- pop { r4 - r5, r7 }; \
-- b _set_errno; \
-- SIZE(_ ## name)
--
--# define SYSCALL4(name) SYSCALL6(name)
--
--#else /* __thumb__ */
--
- # define SYSCALL4(name) \
- GLOBAL(_ ## name); \
- swi #SYS_ ## name; \
-@@ -78,9 +37,6 @@
-
- #define SYSCALL0(name) SYSCALL3(name)
- #define SYSCALL3(name) SYSCALL4(name)
--
--#endif /* __thumb__ */
--
- #define SYSCALL1(name) SYSCALL3(name)
- #define SYSCALL2(name) SYSCALL3(name)
- #define SYSCALL5(name) SYSCALL6(name)
diff --git a/packages/newlib/1.17.0/chksum b/packages/newlib/1.17.0/chksum
deleted file mode 100644
index 5018d12..0000000
--- a/packages/newlib/1.17.0/chksum
+++ /dev/null
@@ -1,4 +0,0 @@
-md5 newlib-1.17.0.tar.gz 9c345928b4f600a211ddc5a6072f8337
-sha1 newlib-1.17.0.tar.gz be026382c8621320fc9079f1f148f7e948e9b28f
-sha256 newlib-1.17.0.tar.gz b7c8135f7dbff0269436da26917d9f01fe33f4da0f37c07c3f55066cba80274e
-sha512 newlib-1.17.0.tar.gz 4e58f5446e8000f7df9b874a1fe943fc48021f7e6a0618c900c600340c8f29816f5b5ccf04e79a24af8bffba56e0083ec9520cfc6bfc85243952a8d7444c7845
diff --git a/packages/newlib/1.17.0/version.desc b/packages/newlib/1.17.0/version.desc
deleted file mode 100644
index fcfe389..0000000
--- a/packages/newlib/1.17.0/version.desc
+++ /dev/null
@@ -1 +0,0 @@
-obsolete='yes'