[Bug binutils/6449] objdump -S and DOS-style line-endings

2012-02-15 Thread ktietz at redhat dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=6449 Kai Tietz changed: What|Removed |Added Status|NEW |RESOLVED CC|

Re: [Bug binutils/6449] objdump -S and DOS-style line-endings

2008-04-28 Thread Nick Clifton
Hi Guys, There are so many #ifndef O_BINARY #ifdef _O_BINARY #define O_BINARY _O_BINARY #define setmode _setmode #else #define O_BINARY 0 #endif #endif in binutils sources. It should go into sysdep.h. H.J. is right, so I have applied the attached patch to fix the PR and move the definition

[Bug binutils/6449] objdump -S and DOS-style line-endings

2008-04-24 Thread eric dot weddington at atmel dot com
-- What|Removed |Added CC||eric dot weddington at atmel ||dot com http://sourceware.org/bu

[Bug binutils/6449] objdump -S and DOS-style line-endings

2008-04-24 Thread hjl dot tools at gmail dot com
--- Additional Comments From hjl dot tools at gmail dot com 2008-04-24 12:57 --- There are so many #ifndef O_BINARY #ifdef _O_BINARY #define O_BINARY _O_BINARY #define setmode _setmode #else #define O_BINARY 0 #endif #endif in binutils sources. It should go into sysdep.h. --