home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / mswindo / programm / win32 / 316 < prev    next >
Encoding:
Text File  |  1992-07-28  |  795 b   |  21 lines

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