News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

jwasm 2.01 rc

Started by japheth, November 27, 2009, 09:44:28 AM

Previous topic - Next topic

Ficko

Cool!

At first glance seems to work. :U

Alloy

  It's probably my inexperience again but I cannot get the Win64_2.asm and Win64_3e.asm examples to assemble. Using the Microsoft Linker Version 9.00.30729.01 i got 14 unresolved external symbol errors, 3 are LNK2001 errors & 11 are LNK2019 errors. I'm happy that JWasm 2.01 assembles my 32 bit code like the champion it is.

Thanks again for this great assembler japheth.
We all used to be something else. Nature has always recycled.

japheth

Quote from: Alloy on January 01, 2010, 03:00:47 PM
  It's probably my inexperience again but I cannot get the Win64_2.asm and Win64_3e.asm examples to assemble. Using the Microsoft Linker Version 9.00.30729.01 i got 14 unresolved external symbol errors, 3 are LNK2001 errors & 11 are LNK2019 errors. I'm happy that JWasm 2.01 assembles my 32 bit code like the champion it is.
From what you're telling it seems that the assembly step did run without errors, but it's the linker which feels like complaining? Then the reason probably is that you're feeding it with the wrong libraries. Please note that there are 64-bit versions of kernel32.lib and user32.lib which must be used for linking, because the calling convention ( and thus the name decoration ) has changed.


Alloy

Great!!! That was my problem. It works. Thanks again.
We all used to be something else. Nature has always recycled.