@@ -86,7 +86,7 @@ TARGET_CXXFLAGS:= $(TARGET_CFLAGS_ARCH) -fwrapv -fno-ident
TARGET_LDFLAGS:= -L$(STAGING_TARGET_DIR)/lib -L$(STAGING_TARGET_DIR)/usr/lib \
-Wl,-O2 -Wl,-rpath -Wl,/usr/lib \
-Wl,-rpath-link -Wl,${STAGING_TARGET_DIR}/usr/lib \
- $(ADK_TARGET_ABI_LDFLAGS)
+ $(ADK_TARGET_ABI_LDFLAGS) $(TARGET_CFLAGS_ARCH)
ifneq ($(ADK_NATIVE),)
TARGET_CPPFLAGS:=
@@ -0,0 +1,5 @@
+/* GNU ld script
+ Use the shared library, but some functions are only in
+ the static library, so try that secondarily. */
+OUTPUT_FORMAT(elf32-powerpc)
+GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) )
@@ -46,6 +46,13 @@ CONFIGURE_ARGS+= --enable-languages=c,c++
else
CONFIGURE_ARGS+= --enable-languages=c
endif
+ifeq ($(ARCH),powerpc)
+CONFIGURE_ARGS+= --disable-target-optspace --with-long-double-64 --enable-secureplt
+TARGET_CFLAGS+= '-Wl,--secure-plt'
+else
+CONFIGURE_ARGS+= --enable-target-optspace
+endif
+
CONFIGURE_ENV+= have_sys_sdt_h=no
CONFIGURE_ARGS+= --host=$(REAL_GNU_TARGET_NAME) \
@@ -4,14 +4,16 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= ndisc6
-PKG_VERSION:= 0.9.8
+PKG_VERSION:= 1.0.2
PKG_RELEASE:= 1
-PKG_MD5SUM:= cb8d70564b8d40aae95e19592c6be183
+PKG_MD5SUM:= 50cb4c19606cf6ff2b7388e71832f579
PKG_DESCR:= ICMPv6 Neighbour Discovery tools
PKG_SECTION:= ipv6
PKG_URL:= http://www.remlab.net/
PKG_SITES:= http://www.remlab.net/files/ndisc6/
+PKG_LIBC_DEPENDS:= uclibc eglibc glibc
PKG_SUBPKGS:= NDISC6 RDISC6 TCPTRACEROUTE6
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
@@ -13,6 +13,8 @@ PKG_DEPENDS:= ppp kmod-crypto kmod-ppp-mppe kmod-ppp kmod-net-ipgre
PKG_URL:= http://www.poptop.org/
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=poptop/}
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,PPTPD,pptpd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
@@ -23,6 +23,9 @@ TARGET_CFLAGS+= -static
ifeq ($(ADK_TARGET_LIB_MUSL),y)
TARGET_CPPFLAGS+= -DMSG_EXCEPT=020000 -D_LARGEFILE64_SOURCE=1
+ifeq ($(ADK_LINUX_PPC),y)
+TARGET_CPPFLAGS+= -Dsigcontext_struct=sigcontext -include ppc-regs.h
INSTALL_STYLE:= manual
@@ -1,5 +1,5 @@
--- strace-4.8.orig/defs.h 2013-05-14 16:10:42.000000000 +0200
-+++ strace-4.8/defs.h 2013-10-25 13:21:18.000000000 +0200
++++ strace-4.8/defs.h 2014-01-15 12:10:01.000000000 +0100
@@ -37,6 +37,28 @@
# endif
#endif
@@ -42,7 +42,7 @@
# include <sys/ptrace.h>
# undef ptrace
-# ifdef POWERPC
-+# if defined(POWERPC) || defined(ARM)
++# if defined(ARM)
# define __KERNEL__
# include <asm/ptrace.h>
# undef __KERNEL__
--- strace-4.8.orig/process.c 2013-05-18 00:22:19.000000000 +0200
-+++ strace-4.8/process.c 2013-10-25 13:17:58.000000000 +0200
++++ strace-4.8/process.c 2014-01-15 12:21:31.000000000 +0100
@@ -55,19 +55,6 @@
@@ -0,0 +1,49 @@
+#define PT_R0 0
+#define PT_R1 1
+#define PT_R2 2
+#define PT_R3 3
+#define PT_R4 4
+#define PT_R5 5
+#define PT_R6 6
+#define PT_R7 7
+#define PT_R8 8
+#define PT_R9 9
+#define PT_R10 10
+#define PT_R11 11
+#define PT_R12 12
+#define PT_R13 13
+#define PT_R14 14
+#define PT_R15 15
+#define PT_R16 16
+#define PT_R17 17
+#define PT_R18 18
+#define PT_R19 19
+#define PT_R20 20
+#define PT_R21 21
+#define PT_R22 22
+#define PT_R23 23
+#define PT_R24 24
+#define PT_R25 25
+#define PT_R26 26
+#define PT_R27 27
+#define PT_R28 28
+#define PT_R29 29
+#define PT_R30 30
+#define PT_R31 31
+#define PT_NIP 32
+#define PT_MSR 33
+#define PT_ORIG_R3 34
+#define PT_CTR 35
+#define PT_LNK 36
+#define PT_XER 37
+#define PT_CCR 38
+#define PT_MQ 39
+#define PT_TRAP 40
+#define PT_DAR 41
+#define PT_DSISR 42
+#define PT_RESULT 43
+#define PT_REGS_COUNT 44
+#define PT_FPR0 48
+#define PT_FPR31 (PT_FPR0 + 2*31)
+#define PT_FPSCR (PT_FPR0 + 2*32 + 1)
@@ -66,12 +66,8 @@ GCC_CONFOPTS+= --enable-tls
ifeq ($(ARCH),powerpc)
-ifeq ($(ADK_TARGET_LIBC),musl)
GCC_CONFOPTS+= --disable-target-optspace --with-long-double-64 --enable-secureplt
-GCC_CONFOPTS+= --disable-target-optspace --with-long-double-128 --enable-secureplt
-endif
-else
GCC_CONFOPTS+= --enable-target-optspace