From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: * X-Spam-Status: No, score=1.3 required=5.0 tests=BAYES_00,INVALID_MSGID, MSGID_RANDY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a3e487894bcfd825 X-Google-Attributes: gid103376,public From: wtanksle@sdcc10.ucsd.edu (William Tanksley) Subject: Re: Pragma and Object Files Date: 1998/04/21 Message-ID: <6hh8fn$m76$1@news1.ucsd.edu>#1/1 X-Deja-AN: 346258359 References: <35361C04.2BC8@gsfc.nasa.gov> Organization: University of California, San Diego Newsgroups: comp.lang.ada Date: 1998-04-21T00:00:00+00:00 List-Id: In article aklee@spam.this.interport.net (Albert K. Lee) writes: >Sorry. Where I come from (that is, the distant past), Intel specified >a common .obj format. MASM code was easily linked with Turbo Pascal >and so on. Is this not the case anymore? Your past isn't quite as distant as you might like to think. Actually, the a.out format used in Unix (generally using the .o prefix) was a lot older than Intel. The stuff produced by gcc anymore is usually in COFF format, which is now being adopted by just about everyone (even MS uses a bastardized version of COFF). Thus, what you need is a obj2coff program, like I posted last time. Are my posts not propagating? If not, you ought to be able to find one (fr DOS) at http://www.delorie.com/djgpp. -Billy