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
Can you bring this issue to the scons users mailing list? We prefer that such are discussed there before a bug is filed.
This get's more eyes on the issue, provides workarounds, prevents duplicate bugs, and also invalid bugs from getting files.
When target dir path has spaces and MSVC_BATCH set to true - cl.exe failed.
Actually it is cl.exe "feature" - Target dir needs to end with slash, not backslash.
In SCons code msvc_output_flag function return '/Fo${TARGET.dir}' + os.sep
Should be '/Fo${TARGET.dir}/'
Here is confirmation https://social.msdn.microsoft.com/Forums/vstudio/en-US/c5992cfc-083a-4472-bf1d-e3151cae2f32/clexe-how-to-setup-path-for-objects-dir-fo-which-contains-spaces?forum=vcgeneral
The text was updated successfully, but these errors were encountered: