patches/strace/4.5.19/150-undef-syscall.patch
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Fri Jan 27 13:31:16 2012 +0100 (2012-01-27)
changeset 2854 a70abdbfa342
permissions -rw-r--r--
complibs/cloog: fix linking with libm

In Ubuntu 11.04 and 11.10, the default options for ld have changed.
--no-copy-dt-needed-entries and --as-needed are now enabled by default, which
causes errors like:

[EXTRA] Checking CLooG/ppl
[DEBUG] ==> Executing: 'make' '-j3' '-s' 'check'
[ALL ] Making check in .
[ALL ] config.status: creating include/cloog/cloog-config.h
[ALL ] config.status: include/cloog/cloog-config.h is unchanged
[ALL ] libtool: link: i686-build_pc-linux-gnu-gcc -Wall -fomit-frame-pointer
-pipe -o cloog cloog.o -L/<snip>/build/static/lib ./.libs/libcloog.a -lm
/<snip>/build/static/lib/libppl_c.a /<snip>/build/static/lib/libpwl.a
/<snip>/build/static/lib/libppl.a /<snip>/build/static/lib/libgmpxx.a
/<snip>/build/static/lib/libgmp.a -lstdc++
[ALL ] /usr/bin/ld: /<snip>/build/static/lib/libppl.a(MIP_Problem.o):
undefined reference to symbol 'sqrt@@GLIBC_2.0'
[ALL ] /usr/bin/ld: note: 'sqrt@@GLIBC_2.0' is defined in DSO
/usr/lib/gcc/i686-linux-gnu/4.6.1/../../../i386-linux-gnu/libm.so so try adding
it to the linker command line
[ALL ] /usr/lib/gcc/i686-linux-gnu/4.6.1/../../../i386-linux-gnu/libm.so:
could not read symbols: Invalid operation
[ALL ] collect2: ld returned 1 exit status
[ERROR] make[2]: *** [cloog] Error 1
[ERROR] make[1]: *** [check-recursive] Error 1

See:
https://wiki.ubuntu.com/NattyNarwhal/ToolchainTransition

This patch fixes these errors by placing '-lm' at the right place on the command
line as libppl requires libm when linking cloog.

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
yann@1613
     1
diff -durN strace-4.5.19.orig/linux/syscallent.h strace-4.5.19/linux/syscallent.h
yann@1613
     2
--- strace-4.5.19.orig/linux/syscallent.h	2009-09-01 21:53:29.000000000 +0200
yann@1613
     3
+++ strace-4.5.19/linux/syscallent.h	2009-10-28 18:47:18.000000000 +0100
yann@1613
     4
@@ -130,7 +130,11 @@
yann@1613
     5
 	{ 2,	TF,	sys_statfs,		"statfs"	}, /* 99 */
yann@1613
     6
 	{ 2,	TD,	sys_fstatfs,		"fstatfs"	}, /* 100 */
yann@1613
     7
 	{ 3,	0,	sys_ioperm,		"ioperm"	}, /* 101 */
yann@1613
     8
-	{ 2,	TD,	sys_socketcall,		"socketcall", SYS_socketcall }, /* 102 */
yann@1613
     9
+	{ 2,	TD,	sys_socketcall,		"socketcall"
yann@1613
    10
+#ifdef __NR_socketcall
yann@1613
    11
+	    , SYS_socketcall
yann@1613
    12
+#endif
yann@1613
    13
+								}, /* 102 */
yann@1613
    14
 	{ 3,	0,	sys_syslog,		"syslog"	}, /* 103 */
yann@1613
    15
 	{ 3,	0,	sys_setitimer,		"setitimer"	}, /* 104 */
yann@1613
    16
 	{ 2,	0,	sys_getitimer,		"getitimer"	}, /* 105 */
yann@1613
    17
@@ -145,7 +149,11 @@
yann@1613
    18
 	{ 4,	TP,	sys_wait4,		"wait4", SYS_wait4 }, /* 114 */
yann@1613
    19
 	{ 1,	0,	sys_swapoff,		"swapoff"	}, /* 115 */
yann@1613
    20
 	{ 1,	0,	sys_sysinfo,		"sysinfo"	}, /* 116 */
yann@1613
    21
-	{ 6,	0,	sys_ipc,		"ipc", SYS_ipc }, /* 117 */
yann@1613
    22
+	{ 6,	0,	sys_ipc,		"ipc"
yann@1613
    23
+#ifdef __NR_ipc
yann@1613
    24
+	    , SYS_ipc
yann@1613
    25
+#endif
yann@1613
    26
+								}, /* 117 */
yann@1613
    27
 	{ 1,	TD,	sys_fsync,		"fsync"		}, /* 118 */
yann@1613
    28
 	{ 1,	TS,	sys_sigreturn,		"sigreturn"	}, /* 119 */
yann@1613
    29
 	{ 5,	TP,	sys_clone,		"clone", SYS_clone }, /* 120 */
yann@1613
    30
@@ -282,7 +290,11 @@
yann@1613
    31
 	{ 3,	0,	sys_io_cancel,		"io_cancel"	}, /* 249 */
yann@1613
    32
 	{ 5,	0,	sys_fadvise64,		"fadvise64"	}, /* 250 */
yann@1613
    33
 	{ 5,	0,	printargs,		"SYS_251"	}, /* 251 */
yann@1613
    34
-	{ 1,	TP,	sys_exit,		"exit_group", __NR_exit_group }, /* 252 */
yann@1613
    35
+	{ 1,	TP,	sys_exit,		"exit_group"
yann@1613
    36
+#ifdef __NR_exit_group
yann@1613
    37
+	    , __NR_exit_group
yann@1613
    38
+#endif
yann@1613
    39
+								}, /* 252 */
yann@1613
    40
 	{ 4,	0,	printargs,		"lookup_dcookie"}, /* 253 */
yann@1613
    41
 	{ 1,	0,	sys_epoll_create,	"epoll_create"	}, /* 254 */
yann@1613
    42
 	{ 4,	TD,	sys_epoll_ctl,		"epoll_ctl"	}, /* 255 */