On 2018-6-28 18:54 , Ryan Schmidt wrote: > > macOS has been around for over 17 years. It would be weird if in all that > time Python hasn't developed an easy way to create correct dylibs. My > assumption therefore is that such an easy method does exist, I just don't > know what it is since I'm not very familiar with Python.
Python (or specifically distutils) generally has no need to create dylibs; it's only concerned with building extension modules, which on macOS are mach-o bundles. - Josh
