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
I manage to get the following error:
cl : Command line error D8049: cannot execute 'D:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\bin\amd64\c1xx.dll': command line is too long to fit in debug record
When building.
It's obvious that I seem to run out of command-line space - but I'm not sure to why. Sure I have a lot of libraries that I'm trying to link together, but there must be some way to walk around it? Or is there any way to debug this in a decent manner? I guess I can try to merge libraries but I'd rather not do that, and to be honest it's not that many (just above 20) and I was expecting to be able to support a lot more.
The text was updated successfully, but these errors were encountered:
We just figured out the issue. You wouldn't want to see the -v since it's 8k long ;)
The issue is originally because of #44 and #230 - dependencies doesn't propagate upwards the chain for static libraries / obj groups. So we had written a way that when we generate our static libraries / obj groups, we basically apply those dependency-propagations ourselves. That solution did not look if the include-path/libs/environment variables etc already existed, so the topmost dependency could get up to 20 includes for a base-library that everybody was depending on.
I manage to get the following error:
cl : Command line error D8049: cannot execute 'D:\Program Files (x86)\Microsoft Visual Studio 12.0\vc\bin\amd64\c1xx.dll': command line is too long to fit in debug record
When building.
It's obvious that I seem to run out of command-line space - but I'm not sure to why. Sure I have a lot of libraries that I'm trying to link together, but there must be some way to walk around it? Or is there any way to debug this in a decent manner? I guess I can try to merge libraries but I'd rather not do that, and to be honest it's not that many (just above 20) and I was expecting to be able to support a lot more.
The text was updated successfully, but these errors were encountered: