Reputation: 1
Why is the Irvine library is not linking in VS code 2019 (blue version) for assembly language?
I tried to set up the Irvine library in VS code 2019 (blue version) for assembly language. Everything was okay, but when I wrote the program, that printed 1 to 15, but it showed errors like Irvine is not linked.
Upvotes: 0
Views: 1707
Reputation: 1
The answer is that VS Code doesn't support x86 Irvine library but Microsoft Visual Studio does.
Upvotes: 0
Reputation: 41
I will suppose you're using masm32 as your assembler, to properly set up your MASM project with Irvine32 in Visual Studio, follow these steps:
Download and Prepare Irvine32 Library:
Check Build Customization:
Set .asm File Properties:
Configure Build Settings:
Additional Library Directories
Upvotes: 1