Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!rutgers!cbmvax!hutch!rabbit1!dml From: dml@rabbit1.UUCP (David Langdon) Newsgroups: comp.sources.d Subject: Re: logo Message-ID: <356@rabbit1.UUCP> Date: Fri, 7-Aug-87 18:06:09 EDT Article-I.D.: rabbit1.356 Posted: Fri Aug 7 18:06:09 1987 Date-Received: Sun, 9-Aug-87 07:21:45 EDT References: Organization: Rabbit Software Corp., Malvern PA Lines: 33 in article , jl42+@andrew.cmu.edu (Jay Mathew Libove) says: > > I know this has been the topic of many bits of discussion for quite a while... > but: > I compiled logo and ended up with the following: > ld -X -i -o logo /lib/crt0.o *.o -lm -lc -ltermlib > ld: -i ignored > Undefined: > ... > > Does anyone know where these functions reside? I can't find them in any > of my libraries. > This is on Sun Unix 3.0 (aka BSD 4.2) on a Sun 3/52. > Thanks! I ran into the same problem. Instead of using "ld", I changed the statement to do a "cc -o" as follows: cc -o logo $(OBJS) -lm ... The OBJS define is set up as all object modules EXCEPT logohead.o Also, if you can not find rindex, then you need to change the reference from rindex to strchr. My version is now running with these minor changes, and I am trying to implement a new turtle tty driver. -- David Langdon Rabbit Software Corp. (215) 647-0440 7 Great Valley Parkway East Malvern PA 19355 ...!ihnp4!{cbmvax,cuuxb}!hutch!dml ...!psuvax1!burdvax!hutch!dml