[SCore-users] Score 5.6 for ia64

kameyama at pccluster.org kameyama at pccluster.org
Mon Dec 15 10:10:04 JST 2003


In article <200312131823.26711.nick at streamline-computing.com> Nick Birkett <nick at streamline-computing.com> wrotes:
> /usr/bin/gcc -Wall -Wno-implicit -g -O`[ "" !=3D "" ] || echo "3"` -D__US=
> E_FIXED_PROTOTYPES__  -I../../include -I../../../pm2/include -I../../../m=
> ttl-ult/ult -I../../../sclib/scwrap/include `if grep 'Using kernel' /usr/=
> include/linux/string.h> /dev/null; then echo -I/usr/src/linux-2.4/include=
> ; fi` -DSCORE_VERSION=3D\"5.6.1\"  `[ "" =3D "" ] || echo "-DSCORE_DO_TRA=
> CE -DDEVELOPMENT"`  -o ckpt_syscall.o -c ../ckpt_syscall.c
> =2E./ckpt_syscall.c: In function `score_ckpt_install_scwrappers':
> =2E./ckpt_syscall.c:3693: `SYS__llseek' undeclared (first use in this fun=
> ction)
> =2E./ckpt_syscall.c:3693: (Each undeclared identifier is reported only on=
> ce
> =2E./ckpt_syscall.c:3693: for each function it appears in.)
> =2E./ckpt_syscall.c:3694: `SYS_truncate64' undeclared (first use in this =
> function)
> =2E./ckpt_syscall.c:3695: `SYS_ftruncate64' undeclared (first use in this=
>  function)

Sorry.
Please change #ifdef line in ckpt_syscall.c:score_ckpt_install_scwrappers().
from:
    #ifndef __x86_64
    score_scwrap(SYS__llseek, _llseek_hook);
    ...
to
    #if !defined(__x86_64__) && !defined(__ia64__) && !defined(__alpha__)
    score_scwrap(SYS__llseek, _llseek_hook);
    ...

                       from Kameyama Toyohisa



More information about the SCore-users mailing list