-
Notifications
You must be signed in to change notification settings - Fork 13.7k
[llvm-cgdata] Remove GENERATE_DRIVER option #100077
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
Conversation
This tool shouldn't be used in the driver build until it is converted to use `OptTable` for option parsing, otherwise the `cl::opt` options might conflict with options in other tools resulting in link failures. This is a reland of llvm#100066.
4fa7249
to
5c300d5
Compare
@petrhosek Thanks for attempting to fix this! I understand the motivation behind using |
Here's an example of switching a tool to Opt: https://reviews.llvm.org/D100433 It links to another example, and there are many others. Using Opt is fairly easy, give it a try :) |
No longer needed since #89884 was reverted. |
@nico Thanks for the suggestion! |
Is there any discussion or docs about If we must use |
|
This tool shouldn't be used in the driver build until it is converted to
use
OptTable
for option parsing, otherwise thecl::opt
options mightconflict with options in other tools resulting in link failures.
This is a reland of #100066.