-
Notifications
You must be signed in to change notification settings - Fork 34
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
feature: fake linker to capture link target #45
Comments
Which linker are you talking about? The one that clang calls behind our backs? Or the llvm_link we use to link bitcode? |
I think this linker mean /usr/bin/ld . iIf we monitor his input, can know the real library or executable program produced by the project. Not specified by the user select which lib or exe. Then extract these together. |
This information probably can be gleaned from the log. Build systems rarely call ld directly. For example libtool. |
Can I close this @qtcdxxyuc? |
Not sure if it'll help, but one of the projects that I use It won't work in all circumstances, but it'll get you pretty far and composes painfully with |
Hi, I come accross the situation that the build system use the libtool directly. How can I deal with situation? |
You would have to be more specific as the what the problem is. |
Is it possible to a fake linker(ln), then we capture this information.
In this way, we can select the target we need to extract from a list.
Instead of manually specifying the target
The text was updated successfully, but these errors were encountered: