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.

Author xzcvczx
Recipients ned.deily, ronaldoussoren, xzcvczx
Date 2018-10-11.20:24:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539289478.78.0.788709270274.issue34960@psf.upfronthosting.co.za>
In-reply-to
Content
oh the rabbit hole...

as i have other builds of python3.7 on my system i wanted to ensure it used the correct python and python-config (python 3.7 was built and installed into $HOME/Projects/python/inst/) as such its a rather convoluted configure command for libxml2

LDFLAGS="-L$HOME/Projects/python/inst/lib" PATH=/Users/simon/Projects/python/inst/bin/:$PATH ./configure --prefix=/Users/simon/Projects/python/inst/ --with-python=/Users/simon/Projects/python/inst/bin/python3 --with-python-install-dir=/Users/simon/Projects/python/inst/lib/python3.7/site-packages

the LDFLAGS envvar was required as python-config --ldflags also does not provide -L for the python libary

$make
ld: library not found for -lpython3.7m

in config.log for libxml2 (PYTHON_LIBS which is the output of $HOME/Projects/python/python3-config --ldflags)
PYTHON_LIBS='-lpython3.7m -ldl -framework CoreFoundation -Wl,-stack_size,1000000 -framework CoreFoundation'


after LDFLAGS="..." is added

$make
...
  CCLD     libxml2mod.la
ld: -stack_size option can only be used when linking a main executable
clang: error: linker command failed with exit code 1 (use -v to see invocation)

if you want more log lines please let me know but those should be the only relevant ones
History
Date User Action Args
2018-10-11 20:24:38xzcvczxsetrecipients: + xzcvczx, ronaldoussoren, ned.deily
2018-10-11 20:24:38xzcvczxsetmessageid: <1539289478.78.0.788709270274.issue34960@psf.upfronthosting.co.za>
2018-10-11 20:24:38xzcvczxlinkissue34960 messages
2018-10-11 20:24:38xzcvczxcreate