new package:

- strace for better debugging
This commit is contained in:
Stephan Raue 2009-10-03 22:16:15 +02:00
parent 05a29d5833
commit 910460f198
4 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME
make

View File

@ -0,0 +1,6 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/strace $INSTALL/usr/bin

View File

@ -0,0 +1,13 @@
CTL_PROC was removed in linux 2.6.18
diff -Nur strace-4.5.12.orig/system.c strace-4.5.12/system.c
--- strace-4.5.12.orig/system.c Wed Jun 1 22:22:06 2005
+++ strace-4.5.12/system.c Sat Sep 23 11:18:04 2006
@@ -1572,7 +1572,6 @@
{ CTL_KERN, "CTL_KERN" },
{ CTL_VM, "CTL_VM" },
{ CTL_NET, "CTL_NET" },
- { CTL_PROC, "CTL_PROC" },
{ CTL_FS, "CTL_FS" },
{ CTL_DEBUG, "CTL_DEBUG" },
{ CTL_DEV, "CTL_DEV" },

View File

@ -0,0 +1 @@
http://prdownloads.sourceforge.net/strace/strace-4.5.18.tar.bz2