-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process to patch Python 3.8.14 or 3.8.5 for wolfSSL on Windows #141
Comments
I have this CMakeSettings.json so far. I did a rough search to get the names, but I'm not so sure about CFlags I'm a bit confused as to what Python needs to find afterwards. I assume I just add a prefix to its search but not aware of the files I need to have interfaced w Python
|
WOLFSSL_TLSV10 not found effectively. just a note to add. |
Hi @ar-visions, For a Windows build, you're going to have a much easier time using something like MinGW where you can use our ./configure script, is this possible for your setup? Python will need to find wolfSSL's library (.dll) and include files (.h). On Linux, this would be in /usr/local/ after running make install. I'm not sure if there's an equivalent on Windows, you may need to manually add to Python's search path, or move wolfSSL's library/header files. Thanks, |
Since the Windows build doesn't run the autoconf and configure I am wondering what the process is to get Python patched for wolfssl on Windows. Is this possible with configuration passed into CMake?
I would like to help get this working if there is an avenue.
Working on a CMake/Python build system which bootstraps Python from source. Seems that using Wolf is preferable to downloading Strawberry Perl bins & OpenSSL src on Windows, in order to get Python built. CMake can build anything first so why not build Python in the most succinct way.. Would like to commit PR in this area if I get something going.
The text was updated successfully, but these errors were encountered: