Searched refs:libpython (Results 1 – 25 of 38) sorted by relevance
12
| /external/python/cpython2/ |
| D | .gitignore | 70 libpython*.a 71 libpython*.so* 72 libpython*.dylib 73 libpython*.dll
|
| D | .bzrignore | 16 libpython*.a 17 libpython*.so*
|
| D | Makefile.pre.in | 542 libpython$(VERSION).so: $(LIBRARY_OBJS) 550 libpython$(VERSION).dylib: $(LIBRARY_OBJS) 551 …le $(LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(VERSION).dylib … 554 libpython$(VERSION).sl: $(LIBRARY_OBJS) 564 SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py 592 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS) 1317 …ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(V… 1318 …ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(V… 1319 ln -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
|
| D | configure.ac | 781 LIBRARY='libpython$(VERSION).a' 914 LDLIBRARY='libpython$(VERSION).so' 917 LDLIBRARY='libpython$(VERSION).dll.a' 918 DLLLIBRARY='libpython$(VERSION).dll' 921 LDLIBRARY='libpython$(VERSION).so' 927 LDLIBRARY='libpython$(VERSION).so' 940 LDLIBRARY='libpython$(VERSION).so' 943 LDLIBRARY='libpython$(VERSION).sl' 950 LDLIBRARY='libpython$(VERSION).so' 955 LDLIBRARY='libpython$(VERSION).so' [all …]
|
| /external/python/cpython3/Misc/ |
| D | python-config.in | 55 libpython = getvar('LIBPYTHON') 56 if libpython: 57 libs.append(libpython)
|
| D | gdbinit | 15 # See Tools/gdb/libpython.py and http://bugs.python.org/issue8032.
|
| /external/python/cpython3/kokoro/ |
| D | build.py | 95 libpython = 'libpython3.10.dylib' 98 libpython], 100 subprocess.check_call(['install_name_tool', '-id', '@rpath/' + libpython, 101 libpython], cwd=build_dir)
|
| /external/python/setuptools/setuptools/_distutils/ |
| D | sysconfig.py | 134 def _posix_lib(standard_lib, libpython, early_prefix, prefix): argument 136 return libpython 138 return os.path.join(libpython, "site-packages") 181 libpython = os.path.join(prefix, libdir, 183 return _posix_lib(standard_lib, libpython, early_prefix, prefix)
|
| /external/tensorflow/tensorflow/lite/tools/pip_package/ |
| D | Dockerfile.py3 | 43 libpython$PYTHON_VERSION-dev \ 44 libpython$PYTHON_VERSION-dev:armhf \ 45 libpython$PYTHON_VERSION-dev:arm64
|
| /external/tensorflow/tensorflow/tools/ci_build/install/ |
| D | install_pi_python3x_toolchain.sh | 33 apt-get install -y libpython${PYTHON_VERSION}-dev:armhf 34 apt-get install -y libpython${PYTHON_VERSION}-dev:arm64
|
| D | install_pi_toolchain.sh | 24 apt-get install -y libpython-all-dev:armhf
|
| /external/python/cpython3/Lib/distutils/ |
| D | sysconfig.py | 337 libpython = os.path.join(prefix, libdir, 340 return libpython 342 return os.path.join(libpython, "site-packages")
|
| /external/libabigail/tests/ |
| D | test-valgrind-suppressions.supp | 2 suppress all libpython leaks 5 obj:*libpython*.so*
|
| /external/python/cpython2/Lib/distutils/ |
| D | sysconfig.py | 122 libpython = os.path.join(prefix, 125 return libpython 127 return os.path.join(libpython, "site-packages")
|
| /external/python/cpython2/Demo/embed/ |
| D | Makefile | 22 LIBPYTHON= $(blddir)/libpython$(VERSION).a
|
| /external/python/cpython3/Doc/using/ |
| D | configure.rst | 156 Disable also semantic interposition in libpython if ``--enable-shared`` and 329 Enable building a shared Python library: ``libpython`` (default is no). 331 .. cmdoption:: --without-static-libpython 511 * A static ``libpython`` library (``.a``) is created from objects files. 512 * ``python.o`` and the static ``libpython`` library are linked into the 798 Command to build ``libpython`` shared library.
|
| /external/python/cpython3/ |
| D | Makefile.pre.in | 642 libpython$(LDVERSION).so: $(LIBRARY_OBJS) $(DTRACE_OBJS) 650 libpython3.so: libpython$(LDVERSION).so 653 libpython$(LDVERSION).dylib: $(LIBRARY_OBJS) 654 …CORE_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dyli… 657 libpython$(VERSION).sl: $(LIBRARY_OBJS) 671 SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py 699 $(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS) 757 …abidw "libpython$(LDVERSION).so" --no-architecture --out-file $(srcdir)/Doc/data/python$(LDVERSION… 761 …abidiff $(srcdir)/Doc/data/python$(LDVERSION).abi "libpython$(LDVERSION).so" --drop-private-types … 1800 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).a" [all …]
|
| D | configure.ac | 993 LIBRARY='libpython$(VERSION)$(ABIFLAGS).a' 1139 LDLIBRARY='libpython$(LDVERSION).dll.a' 1140 DLLLIBRARY='libpython$(LDVERSION).dll' 1143 LDLIBRARY='libpython$(LDVERSION).so' 1153 LDLIBRARY='libpython$(LDVERSION).so' 1165 LDLIBRARY='libpython$(LDVERSION).so' 1168 LDLIBRARY='libpython$(LDVERSION).sl' 1175 LDLIBRARY='libpython$(LDVERSION).dylib' 1180 LDLIBRARY='libpython$(LDVERSION).so' 1190 LDLIBRARY='libpython$(LDVERSION).dll.a' [all …]
|
| /external/python/cpython2/Misc/ |
| D | gdbinit | 15 # See Tools/gdb/libpython.py and http://bugs.python.org/issue8032.
|
| /external/python/cpython3/Misc/NEWS.d/ |
| D | 3.8.0a4.rst | 1055 On Unix, C extensions are no longer linked to libpython except on Android 1061 When Python is embedded, ``libpython`` must not be loaded with 1064 not linked to ``libpython``, such as C extensions of the standard library
|
| D | 3.10.0a6.rst | 377 Add a new configure ``--without-static-libpython`` option to not build the
|
| /external/cronet/build/ |
| D | install-chroot.sh | 699 for i in libbfd libpython; do
|
| /external/angle/build/ |
| D | install-chroot.sh | 699 for i in libbfd libpython; do
|
| /external/python/cpython3/Doc/whatsnew/ |
| D | 3.8.rst | 222 On Unix, C extensions are no longer linked to libpython except on Android 236 to libpython). To support both 3.8 and older, try ``python3-config --libs 247 ``-lpython3.8``. C extensions must not be linked to libpython (except on 2022 * On Unix, C extensions are no longer linked to libpython except on Android 2023 and Cygwin. When Python is embedded, ``libpython`` must not be loaded with 2026 were not linked to ``libpython``, like C extensions of the standard
|
| /external/python/cpython3/Doc/howto/ |
| D | instrumentation.rst | 258 libpython shared library, and the probe's dotted path needs to reflect this. For
|
12