Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #110694 > unrolled thread
| Started by | eryk sun <eryksun@gmail.com> |
|---|---|
| First post | 2016-06-28 13:32 +0000 |
| Last post | 2016-06-28 13:32 +0000 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: What the deal with python3.5m.so and python3.5.so ?? eryk sun <eryksun@gmail.com> - 2016-06-28 13:32 +0000
| From | eryk sun <eryksun@gmail.com> |
|---|---|
| Date | 2016-06-28 13:32 +0000 |
| Subject | Re: What the deal with python3.5m.so and python3.5.so ?? |
| Message-ID | <mailman.77.1467120765.2358.python-list@python.org> |
On Tue, Jun 28, 2016 at 10:51 AM, Steven Truppe <steven.truppe@chello.at> wrote:
>
> can someone tell me the difference between python3.5m.so and python3.5.so ??
The "m" suffix means that Python is configured "--with-pymalloc", i.e.
using specialized mallocs, including the small-object allocator. This
is the default configuration. You may also see a "dm" suffix for a
build that's configured "--with-pydebug" and "--with-pymalloc".
libpython3.5.so and libpython3.5m.so may actually link to the same
shared library:
$ readlink libpython3.5.so
../../x86_64-linux-gnu/libpython3.5m.so.1
$ readlink libpython3.5m.so
../../x86_64-linux-gnu/libpython3.5m.so.1
Back to top | Article view | comp.lang.python
csiph-web