[docs] [issue35905] macOS build docs need refresh (2019)

Barry A. Warsaw report at bugs.python.org
Tue Feb 5 20:51:34 EST 2019


Barry A. Warsaw <barry at python.org> added the comment:

All I know is that for 3.7 and 3.8 (3.6 is different), I have this little helper script to build against Homebrew libraries.

#!/bin/sh

export CPPFLAGS="-I$(brew --prefix sqlite3)/include -I$(brew --prefix zlib)/include"
export LDFLAGS="-L$(brew --prefix sqlite3)/lib -L$(brew --prefix zlib)/lib"
export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"

./configure

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35905>
_______________________________________


More information about the docs mailing list