0

WHen specifying library_dirs in a Python distutils.core.Extension I get this error when trying to build:

/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/distutils/dist.py:263: UserWarning: Unknown distribution option: 'library_dirs'
  warnings.warn(msg)

Why is this? I am using Python 2.5 on Mac OS X.

None
  • 3,875
  • 7
  • 43
  • 67

1 Answers1

1

The error means you're not passing library_dirs to distutils.core.Extension, but to the distutils.core.setup function.

Thomas Wouters
  • 130,178
  • 23
  • 148
  • 122