MCPcopy Create free account
hub / github.com/numpy/numpy / wrap_unlinkable_objects

Method wrap_unlinkable_objects

numpy/distutils/fcompiler/__init__.py:726–749  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected