Elger Jonker
Elger Jonker
Hi, just wanted to say this is very much welcomed by the internet.nl team :) This is the last dependency that was missing arm64/aarch64 support. Thank you very much for...
Thanks for the quick response! I see, switching the python version around does seem to discover alternative folders. Those seem to be correct-ish, while none of them contains `Python.h`. Setting...
Seems to be a deadlock: `./configure --prefix=$HOME/usr/local --enable-internetnl --with-pyunbound --with-libevent --with-libhiredis` results in: `ld: symbol(s) not found for architecture arm64` `arch -x86_64 ./configure --prefix=$HOME/usr/local --enable-internetnl --with-pyunbound --with-libevent --with-libhiredis` results in...
I installed [email protected] from brew and followed the instructions. The paths are: ` ./configure --prefix=$HOME/usr/local --enable-internetnl --with-pyunbound --with-libevent --with-libhredis PYTHON_LDFLAGS=/opt/homebrew/opt/[email protected]/lib PYTHON_CPPFLAGS=/opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.8/include/python3.8 ` Config.log says: ` conftest.c:85:26: fatal error: 'Python.h' file...
For reference: ``` ls /opt/homebrew/opt/[email protected]/Frameworks/Python.framework/Versions/3.8/include/python3.8 Python-ast.h cellobject.h dictobject.h genobject.h marshal.h osdefs.h pydtrace.h pyport.h structmember.h warnings.h Python.h ceval.h dtoa.h graminit.h memoryobject.h osmodule.h pydtrace_probes.h pystate.h structseq.h weakrefobject.h abstract.h classobject.h dynamic_annotations.h grammar.h methodobject.h...
Thanks for the quick response! :) Ah, that's how it's picked up. Still being squished between non existing symbols. arm64 (default): ``` gcc -o conftest -g -O2 -flto -D_THREAD_SAFE -pthread...
Should 'lpython3.8' be the python binary? In that case, no luck pointing to it directly and indirectly. `ld: library not found for -lpython3.8`
What's the content of a normal 'lib' directory? The instructions from brew point to this: ``` ls /opt/homebrew/opt/[email protected]/lib pkgconfig ``` Doesn't seem right :)
Still no luck, it seems like an arm64 version of python is being mixed with the x86_64 one, even after making all python variables explicitly use the x86_64 one. I...
On a fresh debian 10 install, after installing python3 from source: I've found a bug in the configure script: it suppresses any python compilation error messages, and replacing that with...