This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: import ctypes fails with a statically linked interpreter due to dlopen() failure
Type: Stage:
Components: ctypes Versions: Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: indygreg
Priority: normal Keywords:

Created on 2019-05-27 00:02 by indygreg, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg343588 - (view) Author: Gregory Szorc (indygreg) * Date: 2019-05-27 00:02
ctypes/__init__.py calls _ctypes.dlopen(None) on Linux as part of code execution during module import. Unfortunately, dlopen() doesn't work if the current executable isn't a dynamic executable.

Using a fully statically linked Python executable:

$ ldd python3.7
        not a dynamic executable

$ python3.7
>>> import _ctypes

>>> _ctypes.dlopen(None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: Dynamic loading not supported

>>> import ctypes
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/gps/src/python-build-standalone.git/build/python/install/lib/python3.7/ctypes/__init__.py", line 444, in <module>
    pythonapi = PyDLL(None)
  File "/home/gps/src/python-build-standalone.git/build/python/install/lib/python3.7/ctypes/__init__.py", line 356, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: Dynamic loading not supported


I think it is a bug that `import ctypes` raises OSError at import time in this environment. I can make a compelling argument that this error should either be suppressed or converted to an ImportError.

Producing a fully statically linked Python executable is a bit of work and isn't easily accomplished with the existing build system. My "python-build-standalone" project automates the process. A fully statically linked Python executable is available in the zstd compressed archive at https://github.com/indygreg/python-build-standalone/releases/download/20190505/cpython-3.7.3-linux64-musl-20190526T0219.tar.zst under the python/install/bin/python3.7 path. Simply extract that archive and run that binary to reproduce.
History
Date User Action Args
2022-04-11 14:59:15adminsetgithub: 81241
2019-05-27 00:02:41indygregcreate