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
Is there a chance to support parallel execution of NASM tasks in visual studio? What I observe is that NASM tasks are executed one-after-another. And this keeps 8+-16 core CPUs idle for a long time.
One of the examples of projects that could benefit from parallel asm compilation is ffmpeg avcodec.
The text was updated successfully, but these errors were encountered:
The way that msbuild works makes its rather difficult, Yasm had to write an entirely different executable ('vsyasm') to get parallel builds to work but even that has problems as it didnt work reliably enough and cant be used when specifying output filenames. So its theoretically possible but im not aware of a solution that gets it to work within the limitations of visual studio.
Is there a chance to support parallel execution of NASM tasks in visual studio? What I observe is that NASM tasks are executed one-after-another. And this keeps 8+-16 core CPUs idle for a long time.
One of the examples of projects that could benefit from parallel asm compilation is ffmpeg avcodec.
The text was updated successfully, but these errors were encountered: