/devel/gcc-4.4: gcc-4.4
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jun 01 13:31:12 2009 +0000 (2009-06-01)
branchgcc-4.4
changeset 13963dc779343d7f
parent 1395 da3d13b0880a
child 1397 593fb5054810
/devel/gcc-4.4:
- fix building strace-4.5.18

-------- diffstat follows --------
/devel/gcc-4.4/patches/strace/4.5.18/180-arm-EABI-syscalls.patch | 23 23 0 0 ++++++++++++++++++++++
1 file changed, 23 insertions(+)
patches/strace/4.5.18/180-arm-EABI-syscalls.patch
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/patches/strace/4.5.18/180-arm-EABI-syscalls.patch	Mon Jun 01 13:31:12 2009 +0000
     1.3 @@ -0,0 +1,23 @@
     1.4 +Patch from upstream:
     1.5 +http://strace.cvs.sourceforge.net/viewvc/strace/strace/linux/arm/syscallent.h?r1=1.17&r2=1.18&sortby=file
     1.6 +
     1.7 +2008-11-13  Kirill A. Shutemov  <kirill@shutemov.name>
     1.8 +
     1.9 +    * linux/arm/syscallent.h: Fix build on ARM EABI which does not
    1.10 +    provide syscalls socketcall and ipc.
    1.11 +
    1.12 +--- strace-4.5.18.orig/linux/arm/syscallent.h	2008/12/29 20:04:15	1.17
    1.13 ++++ strace-4.5.18/linux/arm/syscallent.h	2009/01/01 23:20:38	1.18
    1.14 +@@ -431,6 +431,7 @@
    1.15 + 	{ 5,	0,	printargs,		"SYS_398"	}, /* 398 */
    1.16 + 	{ 5,	0,	printargs,		"SYS_399"	}, /* 399 */
    1.17 + 
    1.18 ++#ifndef __ARM_EABI__
    1.19 + #if SYS_socket_subcall != 400
    1.20 +  #error fix me
    1.21 + #endif
    1.22 +@@ -481,3 +482,4 @@
    1.23 + 	{ 4,	TI,	sys_shmdt,		"shmdt"		}, /* 440 */
    1.24 + 	{ 4,	TI,	sys_shmget,		"shmget"	}, /* 441 */
    1.25 + 	{ 4,	TI,	sys_shmctl,		"shmctl"	}, /* 442 */
    1.26 ++#endif