following compile error occured, when i tried to compile ltp on ia64 box. ------------------ make[4]: *** [timerfd01] Error 1 make[4]: Leaving directory `/home/tester/work-b/testnow/ltp-full-20080630.orig/testcases/kernel/syscalls/timerfd' make[3]: *** [all] Error 2 make[3]: Leaving directory `/home/tester/work-b/testnow/ltp-full-20080630.orig/testcases/kernel/syscalls' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/tester/work-b/testnow/ltp-full-20080630.orig/testcases/kernel' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/tester/work-b/testnow/ltp-full-20080630.orig/testcases' make: *** [all] Error 2 ------------------
there is a patch to fix it. similar patch on i386/x86_64 has been applied. (http://marc.info/?l=ltp-list&m=121257587007213&w=2) Signed-off-by: Shi Weihua <[EMAIL PROTECTED]> --- diff -urpN ltp-full-20080630.orig/testcases/kernel/include/ia64.in ltp-full-20080630/testcases/kernel/include/ia64.in --- ltp-full-20080630.orig/testcases/kernel/include/ia64.in 2008-06-29 05:19:03.000000000 +0900 +++ ltp-full-20080630/testcases/kernel/include/ia64.in 2008-07-14 10:32:38.000000000 +0900 @@ -16,3 +16,6 @@ __NR_splice 1297 __NR_tee 1301 __NR_vmsplice 1302 __NR_fallocate 1303 +__NR_timerfd_create 1310 +__NR_timerfd_settime 1311 +__NR_timerfd_gettime 1312 diff -urpN ltp-full-20080630.orig/testcases/kernel/include/linux_syscall_numbers.h ltp-full-20080630/testcases/kernel/include/linux_syscall_numbers.h --- ltp-full-20080630.orig/testcases/kernel/include/linux_syscall_numbers.h 2008-06-29 05:19:03.000000000 +0900 +++ ltp-full-20080630/testcases/kernel/include/linux_syscall_numbers.h 2008-07-14 10:35:32.000000000 +0900 @@ -296,6 +296,15 @@ # ifndef __NR_fallocate # define __NR_fallocate 1303 # endif +# ifndef __NR_timerfd_create +# define __NR_timerfd_create 1310 +# endif +# ifndef __NR_timerfd_settime +# define __NR_timerfd_settime 1311 +# endif +# ifndef __NR_timerfd_gettime +# define __NR_timerfd_gettime 1312 +# endif #endif ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
