Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!bloom-beacon!bu-cs!mirror!necntc!necis!rbono
From: rbono@necis.UUCP (Rich Bono)
Newsgroups: comp.sys.ibm.pc
Subject: Re: Has anyone seen MSC -Fa work?
Summary: Heres how...
Message-ID: <851@necis.UUCP>
Date: 9 Dec 88 16:38:51 GMT
References: <15645@iuvax.cs.indiana.edu>
Organization: NEC Information Systems, Boxborough, MA
Lines: 35

In article <15645@iuvax.cs.indiana.edu>, bkliewer@iuvax.cs.indiana.edu (Bradley Dyck Kliewer) writes:
> 
> I tried using the Microsoft C 5.10 -Fa option today.  I did not get an
> .ASM file as advertised, and in fact, got no listing file at all.  I
> tried:
> cl -Fademo demo
> cl -Fa demo
> cl /Fa demo
> cl demo /Fa 
> among many other permutations.  Is there another switch I must use or
> does this option not work?
> 

	Try this...


	cl -Fademo.asm demo.c    <--- to compile, link, and gen gemo.asm

		or

	cl -c -Fademo.asm demo.c  <--- to compile, gen demo.asm, and demo.obj
					(no link)

	The '-FaFILENAME' must appear before the name of the '.C' file.

	(it can also be '/FaFILENAME')

	This works for me on MSC 5.1.


-- 
 /**************************************************************************\
 * Rich Bono (NM1D)                                     rbono@necis.nec.com * 
 * (508) 635-6303      NEC Information Systems          NM1D @ WB1DSW-1     * 
 \**************************************************************************/