www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Link error undefined symbol: __imp__InterlockedIncrement 4 on windows

reply Clayton Alves <clayton.aa gmail.com> writes:
I'm trying to compile my first hello world dub project, but when 
I run "dub" it spits this error:

lld-link: error: undefined symbol: __imp__InterlockedIncrement 4

Does anybody have any clues what is going on ?
Apr 09 2020
parent reply evilrat <evilrat666 gmail.com> writes:
On Thursday, 9 April 2020 at 14:07:10 UTC, Clayton Alves wrote:
 I'm trying to compile my first hello world dub project, but 
 when I run "dub" it spits this error:

 lld-link: error: undefined symbol: __imp__InterlockedIncrement 4

 Does anybody have any clues what is going on ?
This is from WinAPI, a very common one https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-interlockedincrement It seems shipped version of kernel32.lib is missing that symbol. If you don't mind installing Windows SDK and build tools this is usually the way to go. On the other hand if you are specifically looking to use minimal as possible setup you could also try LDC (assuming you've been using DMD)
Apr 10 2020
parent Clayton Alves <clayton.aa gmail.com> writes:
On Saturday, 11 April 2020 at 05:45:37 UTC, evilrat wrote:
 On Thursday, 9 April 2020 at 14:07:10 UTC, Clayton Alves wrote:
 I'm trying to compile my first hello world dub project, but 
 when I run "dub" it spits this error:

 lld-link: error: undefined symbol: 
 __imp__InterlockedIncrement 4

 Does anybody have any clues what is going on ?
This is from WinAPI, a very common one https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-interlockedincrement It seems shipped version of kernel32.lib is missing that symbol. If you don't mind installing Windows SDK and build tools this is usually the way to go. On the other hand if you are specifically looking to use minimal as possible setup you could also try LDC (assuming you've been using DMD)
Thank you evilrat, After reinstalling windows SDK and build tools the error is gone.
Apr 13 2020