-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Absolute paths in response files also need to be handled #93
Comments
I think this sounds reasonable. Does @huangqinjin have any other opinions here? I think it would be good if we would have some testing of this new codepath (by setting Ideally I would maybe use something else than perl for the runtime rewriting, if it could be done with sed instead, that would feel more right to me, though. (Try to stick to the subset of sed that works identically across GNU and macOS.) |
I have some concern.
|
@huangqinjin Thanks for the valuable input here! |
thanks @huangqinjin, really good feedback! I would then start working on points 3 and 4, if that makes sense for you all |
The relatively low limit on command line length of the Windows tools can create problems when linking large libraries.
link.exe
was silently hanging in my case, and I spent hours pulling out my hair to understand why.The typical way of dealing with this is using response files: the content of the command line is written to a file, and the path to this file is passed instead of the arguments as
link.exe @Path/To/Response/File.rsp ...
. However, when cross-compiling with wine this doesn't work out of the box because Ninja thinks that we are on Linux and hence we don't need to do this by default.A workaround when using Ninja is setting
CMAKE_NINJA_FORCE_RESPONSE_FILE
, which will do the correct thing. We then have another problem, which is that the absolute paths in the response file are not in "wine format" (beginning withZ:
), because they are not intercepted by the wrapper script.I think I found a solution, and I have been using it without problems so far. Shall I open a PR, or do you see a problem with this approach?
The text was updated successfully, but these errors were encountered: