You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build systems like Ninja invokes all commands from the top build directory. That means that if a config.asm is placed there, it will be used by NASM even if we want to include another config.asm in some other path defined by -i subdir/.
Would it be possible to add a command line option to disable looking in current directory, e.g. --no-include-cwd? It would still be possibly to look in current directory with -i . which is AFAIK how other compilers such as GCC works.