www.delorie.com/archives/browse.cgi | search |
Clark Sims wrote: > System: NT 4 SV5 > Compiler: b20.1 Gcc 2.95 > > How does one generate a map file. I have tried using the standard flags, -Map -Wi but the compiler doesn't seem to recognize them. You need to consult the GCC and GLD manuals. There are some online at www.gnu.org or www.objsw.com. The linker generates the map file and there are two options. -M outputs to standard output and -Map <file> outputs to a file. try these: $ ld prog.o -M > prog.map $ ld prog.o -Map prog.map $ gcc prog.c -Wl,-M > prog.map (I'm not sure if this is will work) $ gcc prog.c -Wl,-Map,prog.map $ gcc prog.c -Map prog.map might work as I think gcc passes any unknown command line options to the linker. If not, then you have to use -Wl if using gcc to link. Brendan Simon. -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |