home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.os.ms-windows.programmer.win32
- Path: sparky!uunet!decwrl!rtech!ingres!rion
- From: rion@Ingres.COM (Rion Cassidy (x3357) OGT)
- Subject: write this down!!
- Message-ID: <1992Jul29.003953.7220@pony.Ingres.COM>
- Reply-To: rion@Ingres.COM (Rion Cassidy (x3357) OGT)
- Organization: Ask Computer Systems Inc., Ingres Division, Alameda CA 94501
- References: <1992Jul24.133743.22255@unlinfo.unl.edu> <Bs4BKG.8zv@fmsrl7.srl.ford.com>
- Date: 29 Jul 92 00:39:53 GMT
- Lines: 9
-
- Some of the warnings from the NT linker are routed to stderr, not stdout.
- This means that you cannot redirect these warning to a file UNLESS you add
- the following:
-
- 2>&1
-
- Add it anywhere on your command line where you are also redirecting output
- to a file. Apparently this is some kind of UNIX trick brought over to NT.
-
-