home *** CD-ROM | disk | FTP | other *** search
- Path: god.bel.alcatel.be!nlev00!barnhoorn
- From: barnhoorn@nlev00 ()
- Newsgroups: comp.sys.amiga.programmer
- Subject: Re: SasC linker Error:
- Date: 29 Feb 1996 10:03:56 GMT
- Organization: Alcatel Bell
- Distribution: world
- Message-ID: <4h3tmc$87i@btmpjg.god.bel.alcatel.be>
- References: <dkauppDnEzzs.FsD@netcom.com>
- Reply-To: barnhoorn@nlev00 ()
- NNTP-Posting-Host: 138.203.178.61
- X-Newsreader: mxrn 6.18-10
-
-
- In article <dkauppDnEzzs.FsD@netcom.com>, dkaupp@netcom.com (Blitter) writes:
-
- >ERROR: Multiply defined symbol '_MOBtrigger'.
- > First defined in file 'comm.o'.
- > Type = RELOCATABLE Value = 1010
- > Redefined in file 'special.o'.
- > Type = RELOCATABLE Value = 9
- (lots of other similar errors deleted...)
- >ERROR: Multiply defined symbol '_MOBtrigger'.
- > First defined in file 'comm.o'.
- > Type = RELOCATABLE Value = 1010
- > Redefined in file 'update.o'.
- > Type = RELOCATABLE Value = 16
- >Warning 617: MERGED data > 64K.
- >
-
- Looks like one of your include-files actually define MOBtrigger.
- In the include file, specify
-
- extern int MOBtrigger;
-
- and in one and only one of your source-files, specify
-
- int MOBtrigger=FALSE;
-
- Then the linker will define the symbol only once.
- ---------------------------------------------------------------------------
- Jaco Barnhoorn barnie@xs4all.nl
- Software Test Engineer barnhoorn%nlev00@btmv56.se.bel.alcatel.be
- Alcatel Telecom Systems
- Rijswijk, The Netherlands
- ---------------------------------------------------------------------------
-