ThomasJaeger / VisualMASM

Visual MASM - Assembly IDE for Microsoft MASM

Home Page:http://www.visualmasm.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multi-modular compiling preprocessor issue

trapazza opened this issue · comments

Hi, I'm new to VisualMASM and I'm having problems while trying to compile a multi-modular project.

I have an .inc file which contains an include guard like this:

ifndef __FILE_GUARD__INC
__FILE_GUARD__INC equ 1
.
.
.
endif

but it seems that the symbol is just defined for the source file currently being compiled.
I was wondering if VisualMASM is running an instance of ML for every .asm file instead of passing in all .asm files to a single instance of the compiler?

Thanks in advance.

Visual MASM actually creates a temporary list file (@) and passes that into ML. After the assembly and build process is completed, it removes this temporary file. So, even if you have hundreds of assembly files, it is one process.

If you need to add additional files to the assembly / build process, you can add these in the project options of your project.