Convert a set of object files that are not compatible with the default linker, to a file that is compatible. Parameters ---------- objects : list List of object files to include. output_dir : str Output directory to place gene
(self, objects, output_dir, extra_dll_dir)
| 724 | return True |
| 725 | |
| 726 | def wrap_unlinkable_objects(self, objects, output_dir, extra_dll_dir): |
| 727 | """ |
| 728 | Convert a set of object files that are not compatible with the default |
| 729 | linker, to a file that is compatible. |
| 730 | |
| 731 | Parameters |
| 732 | ---------- |
| 733 | objects : list |
| 734 | List of object files to include. |
| 735 | output_dir : str |
| 736 | Output directory to place generated object files. |
| 737 | extra_dll_dir : str |
| 738 | Output directory to place extra DLL files that need to be |
| 739 | included on Windows. |
| 740 | |
| 741 | Returns |
| 742 | ------- |
| 743 | converted_objects : list of str |
| 744 | List of converted object files. |
| 745 | Note that the number of output files is not necessarily |
| 746 | the same as inputs. |
| 747 | |
| 748 | """ |
| 749 | raise NotImplementedError() |
| 750 | |
| 751 | ## class FCompiler |
| 752 |
no outgoing calls
no test coverage detected