In article <[email protected]>, Paul Moore <[email protected]> wrote: > I want to set up a script to build some C code. I need to link it with > python34.lib, but I'm not sure how to locate that file without hard-coding > it. [...]
If you are embedding Python, refer to the "Extending and Embedding" document in the Python documentation set and the description of python-config: https://docs.python.org/3/extending/embedding.html#compiling-and-linking- under-unix-like-systems (Of course, if you are extending Python, Distutils should provide all the necessary flags.) -- Ned Deily, [email protected] -- https://mail.python.org/mailman/listinfo/python-list
