Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ To build a static Python executable and library, check out the appropriate branc

This will create an executable called `python` in the working directory, and a
static library, `libpythonX.X.a`, in the install/lib directory. You can confirm
that this executable is not dependent on any shared libraries using `ldd python`
that this executable is not dependent on any shared libraries by using `ldd python`
which should report that python is not a dynamic executable. However, by default
this executable's functionality will be very limited - it won't even be able to
access most modules from the Python standard library.
Expand Down Expand Up @@ -88,7 +88,7 @@ a standalone executable using the static_freeze.py script.
Tools/static_freeze/static_freeze.py test.py libpython2.7.a

This will generate an executable called "test" in the working directory, which
is not dependant on any shared libraries, Python modules, or the Python
is not dependent on any shared libraries, Python modules, or the Python
interpreter!


Expand Down