Path: utzoo!attcan!uunet!samsung!sdd.hp.com!ncr-sd!ncrcae!cs-col!cc!haug From: haug@cc.Columbia.NCR.COM Newsgroups: comp.sys.ncr Subject: Re: netnews on NCR 32/700? Summary: just a warning Message-ID: <1990Apr7.154601.2343@cc.Columbia.NCR.COM> Date: 7 Apr 90 15:46:01 GMT References: <132@dynasys.UUCP> Reply-To: haug@cc.Columbia.NCR.COM (PUT YOUR NAME HERE) Followup-To: comp.sys.ncr Organization: NCR E&M Columbia (SGS Group) Lines: 39 In article <132@dynasys.UUCP> jessea@dynasys.UUCP (Jesse W. Asher) writes: >I'm trying to compile netnews on an NCR tower 32/700 and I'm having >a couple of problems. The first error message I get is: > >Warning: Nested asm calls not now supported. > >The compile continues, but I was wondering if this will be a problem >when netnews is run, and if so, how can I get around it? This is a warning that indicates you can get better code performance by re-arranging the subroutine call to explicitly use sub expressions. Basicly, you will find that the statement in question consists of a string function which has another string function as an argument. Assembler coded versions of the string functions are provided in the file istring.h, which is automaticly included (see istring(4) and cc(1)). The compiler previously refused to an assembler function if it had as an argument another assembler function. The old error message was changed to a warning. There will be no problems if you get this warning message. >ld: Symbol rmlock in libc.a is multiply defined. First defined in >elock.o. > >I looked for rmlock outside of netnews and couldn't find any reference >to it. It's a function in elock.c, but other than that, I can't find the >problem area. I would appreciate any help I could get with these two >problems. Thanks in advance. This problem is due to the fact that there is a rmlock in dial.o in libc.a. Why you are reading in this module, I cannot tell you. You could extract the module from the library and see if it has any symbols defined that are used in news. You can use ar(1) to extract dial.o from /lib/libc.a or /usr/lib/fp/libc.a. nm(1) can be used to find out what symbols are defined in the module. Share and Enjoy! Brian P.S. Followups redirected to comp.sys.ncr