Path: utzoo!utgpu!watmath!clyde!bellcore!rutgers!mit-eddie!ll-xn!adelie!atexnet!rhartman From: rhartman@atexnet.UUCP (Robert Hartman) Newsgroups: comp.sys.ibm.pc Subject: Re: Has anyone seen MSC -Fa work? Message-ID: <269@swallow.atexnet.UUCP> Date: 9 Dec 88 20:15:52 GMT References: <15645@iuvax.cs.indiana.edu> Reply-To: rhartman@swallow.UUCP (Robert Hartman) Organization: EPPS, Bedford, MA USA Lines: 21 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? The MSC 'cl' program is VERY picky about certain items. One of the things that must be present is the .c file extension on filenames. You should try the following: cl /Fa demo.c and see if that solves your problem. I think I normally use /Fc to get a mixed output listing just so I can see what is going on. If I really need just the asm output, then /Fa is appropriate.