sanushks 25 Light Poster

Hi,

Below is the makeFile i tried executing on SuSe linux and getting many undefined reference errors. Anybody can shed light on this.

SHELL = /bin/sh


CFLAGS = -O -DSVR4

CC = /usr/bin/cc

SO_LIBS = channel.so

all: $(SO_LIBS)


channel.so:      channel_limit.o chglobals.o chinit_windup.o chprocess.o files_n_pipes.o list.o tree.o
        ld channel_limiting.o chglobals.o \
                        chinit_windup.o chprocess.o files_n_pipes.o \
                        list.o tree.o \
                        -o $(@)

channel_limiting.o:     tree.h list.h channel_limiting.h
chglobals.o:    channel_limiting.h
chinit_windup.o:        channel_limiting.h
chprocess.o:    channel_limiting.h
list.o: list.h
tree.o: tree.h
files_n_pipes.o:        files_n_pipes.h



clean:
        rm -f *.o *.so

]
------------------------------------------------------------------------------------
Error message: 

ld: warning: i386 architecture of input file `chglobals.o' is incompatible with i386:x86-64 output
ld: warning: i386 architecture of input file `chinit_windup.o' is incompatible with i386:x86-64 output
ld: warning: i386 architecture of input file `chprocess.o' is incompatible with i386:x86-64 output
ld: warning: i386 architecture of input file `files_n_pipes.o' is incompatible with i386:x86-64 output
ld: warning: i386 architecture of input file `list.o' is incompatible with i386:x86-64 output
ld: warning: i386 architecture of input file `tree.o' is incompatible with i386:x86-64 output
ld: warning: cannot find entry symbol _start; defaulting to 00000000004000f0
channel_limiting.o: In function `_dynamn':
channel_limiting.c:(.text+0x4ec): undefined reference to `memcpy'
channel_limiting.c:(.text+0x535): undefined reference to `puts'
channel_limiting.c:(.text+0x6ed): undefined reference to `printf'
chinit_windup.o: In function `__AIR_showVectorTreeStats':
chinit_windup.c:(.text+0x19): undefined reference to `printf'
chinit_windup.c:(.text+0x3d): undefined reference to `printf'
sanushks 25 Light Poster

Hi,

I'm running a Perl script as a service which moves files from a particular source directory to the target directory in Windows server 2003 . It polls the source directory and runs in an infinite loop.

The service hangs and perl script does not move files from source to target. Will need to manually go and restart the service thru services to msc to restart the service.

Is there a way i can find out ,what happened to the perl script or the windows service.

Thanks in advance.