Replies: 1 comment 1 reply
-
Some of the actions in the gcc toolset do support response files. Although note that they are dynamic. And only kick in when the command length is above a threshold. But currently it's only the For clean, yes, the The only immediate workaround I can think of you can try is to remove the The next best solution is for me to fix the problem. And the ultimate solution, is for me to implement a native |
Beta Was this translation helpful? Give feedback.
-
Hi,
we have a large software project and calling b2 --clean-all leads to a command line length of around 200 000 bytes, which produces the following error:
[errno 7] execvp (Argument list too long)
Looking at the documentation and common.jam, the clean action has the piecemeal attribute, which to my understanding, should split up the list of files to be removed in chunks that are smaller than the command line length limit.
Shouldn't that work or am I misunderstanding the concept? Any other workaround that you can suggest?
This is for toolset gcc on linux. Response files don't seem to be supported for gcc on linux, right?
Thanks,
LS
Beta Was this translation helpful? Give feedback.
All reactions