digitalmars.D - Where is obj2asm on Windows?
- AsmMan (3/3) Jun 10 2014 I have dmd and dmc installed on my system but I can't find
- Steven Schveighoffer (4/7) Jun 10 2014 It doesn't exist. From what I remember, there is an equivalent tool that...
- Steven Schveighoffer (4/10) Jun 10 2014 C++ compiler even :)
- Steven Schveighoffer (6/12) Jun 10 2014 Just looked it up, it comes with the C++ compiler, or the Extended Utili...
- "Marc =?UTF-8?B?U2Now7x0eiI=?= <schuetzm gmx.net> (5/8) Jun 11 2014 You can probably use binutils' objdump, but I don't know whether
- Qox (3/3) Jun 11 2014 Try using objconv http://www.agner.org/optimize/objconv.zip , it
I have dmd and dmc installed on my system but I can't find obj2asm executable. IIRC, when I was on Linux I just installed dmd and had working obj2asm. Where's it on Windows 64-bit?
Jun 10 2014
On Tue, 10 Jun 2014 11:53:34 -0400, AsmMan <lol.themask gmail.com> wrote:I have dmd and dmc installed on my system but I can't find obj2asm executable. IIRC, when I was on Linux I just installed dmd and had working obj2asm. Where's it on Windows 64-bit?It doesn't exist. From what I remember, there is an equivalent tool that comes with the non-free version of DMC (Digital Mars' C+ compiler). -Steve
Jun 10 2014
On Tue, 10 Jun 2014 12:02:47 -0400, Steven Schveighoffer <schveiguy yahoo.com> wrote:On Tue, 10 Jun 2014 11:53:34 -0400, AsmMan <lol.themask gmail.com> wrote:C++ compiler even :) -SteveI have dmd and dmc installed on my system but I can't find obj2asm executable. IIRC, when I was on Linux I just installed dmd and had working obj2asm. Where's it on Windows 64-bit?It doesn't exist. From what I remember, there is an equivalent tool that comes with the non-free version of DMC (Digital Mars' C+ compiler).
Jun 10 2014
On Tue, 10 Jun 2014 12:02:47 -0400, Steven Schveighoffer <schveiguy yahoo.com> wrote:On Tue, 10 Jun 2014 11:53:34 -0400, AsmMan <lol.themask gmail.com> wrote:Just looked it up, it comes with the C++ compiler, or the Extended Utility package (neither is free). See here: http://digitalmars.com/ctg/obj2asm.html -SteveI have dmd and dmc installed on my system but I can't find obj2asm executable. IIRC, when I was on Linux I just installed dmd and had working obj2asm. Where's it on Windows 64-bit?It doesn't exist. From what I remember, there is an equivalent tool that comes with the non-free version of DMC (Digital Mars' C++ compiler).
Jun 10 2014
On Tuesday, 10 June 2014 at 15:53:35 UTC, AsmMan wrote:I have dmd and dmc installed on my system but I can't find obj2asm executable. IIRC, when I was on Linux I just installed dmd and had working obj2asm. Where's it on Windows 64-bit?You can probably use binutils' objdump, but I don't know whether it can handle the object file format that DMD produces on Windows. Just give it a try: http://sourceforge.net/projects/mingw/files/Installer/
Jun 11 2014
Try using objconv http://www.agner.org/optimize/objconv.zip , it doesn't handle every obj file from dmd but it works most of the time.
Jun 11 2014