Displaying 2 results from an estimated 2 matches for "blahtargetinfo".
2013 Jan 24
3
[LLVMdev] [lld] driver and options questions
...ject from the LinkerOptions which also creates a TargetInfo object and passes ownership to of the TargetInfo to the Target object. This last step seems convoluted. Couldn't the Target constructor create the TargetInfo ivar?
6) Problem: there is no way to connect flavor specific options to the BlahTargetInfo object.
It seems like there are too many classes involved. I think would be simpler to have:
1) The flavor determines the Driver class instantiated.
2) The driver creates a TargetInfo subclass object. The base class TargetInfo contains all the fields that used to be in LinkerOptions.
3) The...
2013 Jan 24
0
[LLVMdev] [lld] driver and options questions
...from the LinkerOptions which also creates a TargetInfo object and passes ownership to of the TargetInfo to the Target object. This last step seems convoluted. Couldn't the Target constructor create the TargetInfo ivar?
> 6) Problem: there is no way to connect flavor specific options to the BlahTargetInfo object.
>
>
>
> It seems like there are too many classes involved. I think would be simpler to have:
> 1) The flavor determines the Driver class instantiated.
> 2) The driver creates a TargetInfo subclass object. The base class TargetInfo contains all the fields that used to be...