Path: utzoo!utgpu!watmath!clyde!att!pacbell!lll-tis!helios.ee.lbl.gov!pasteur!ucbvax!POSTGRES.BERKELEY.EDU!dillon From: dillon@POSTGRES.BERKELEY.EDU (Matt Dillon) Newsgroups: comp.sys.amiga.tech Subject: Re: problem with Aztec's Large Data option (Help!) Message-ID: <8811160805.AA26243@postgres.Berkeley.EDU> Date: 16 Nov 88 08:05:31 GMT Sender: usenet@ucbvax.BERKELEY.EDU Lines: 16 : I'm having a problem with the Large Data option of Aztec's C. I've : cc +D ca.c :Aztec C68K 3.6a 12-18-87 (C) 1982-1987 by Manx Software Systems, Inc. :Aztec 68000 Assembler 3.6a 12-18-87 : ln ca.o -lc :Aztec C68K Linker 3.6a 12-18-87 :Base: 000000 Code: 001ff0 Data: 0002bc Udata: 023730 Total: 0259dc :Total data size > 64K! Too large for small data model. You are linking with c.lib which uses the small data model. You must link with cl.lib which uses the large data model. All items in the link list, objects and libraries, must use the large data model. Theoretically you ought to be able to mix it with the large-data allocated stuff larger than 64K, but the linker is stupid. -Matt