-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[C++] Build process: Could not find a package configuration file provided by "OpenSSLAlt" #39132
Comments
Could you also show |
This is strange. We should use |
Thank you for your quick response. I added it to the main comment. |
Could you try the following patterns? 1: $ python setup.py clean
$ CMAKE_PREFIX_PATH=$ARROW_HOME python setup.py build_ext --inplace 2: $ python setup.py clean
$ CMAKE_PREFIX_PATH=/home/tom/Documents/dev/dist python setup.py build_ext --inplace 3: $ python setup.py clean
$ PYARROW_CMAKE_OPTIONS="-DCMAKE_PREFIX_PATH=$ARROW_HOME" python setup.py build_ext --inplace 4: $ python setup.py clean
$ PYARROW_CMAKE_OPTIONS="-DCMAKE_PREFIX_PATH=/home/tom/Documents/dev/dist" python setup.py build_ext --inplace |
Same end result, though I see that 3. and 4. did change the options for cmake, while the first two did not:
|
Hmm. Could you also try |
Here it is: pyarrow-build.log |
Thanks but I couldn't find why Could you show the output of |
Returns nothing unfortunately. |
I deleted I did notice something though. The error message says:
Though I do have it here:
I tried: (notice
with no luck. Log: But I guess that stems from the fact that the wrong I will check out the documentation you provided, thank you |
Setting Final command:
Also, now removing these variables still makes it work afterwards. Do you know how I can clean the cache (if there is one)? I want to be sure that this is what led me further. I tried: -
to no avail. |
Note that it outputs many logs because |
No update. |
Yes, I used the examples/minimal_build Dockerfile as base in the end. Thanks for the help.
…-------- Original Message --------
On 05/04/2024 09:52, Sutou Kouhei wrote:
No update.
Can we close this as stale?
—
Reply to this email directly, [view it on GitHub](#39132 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AF7ZY6GELBLPX5PUMBIIG3LY3ZJ4LAVCNFSM6AAAAABALX23VOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMZZGE3TOOBUG4).
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Describe the bug, including details regarding any error messages, version, and platform.
Platform:
I tried building Arrow C++ and
pyarrow
to start contributing, but I ran into an issue that I am not familiar with and that I could not debug myself.I followed the tutorial from the docs: https://arrow.apache.org/docs/developers/python.html#using-system-and-bundled-dependencies
Here are the exact commands I executed.
The output is:
The logs say that it did find OpenSSL:
but after building and installing (logs at the end of this post), and running the following commands to build
pyarrow
, I get the following error:I have tried to find the
OpenSSLAltConfig.cmake
file, but I can't find it anywhere:make install
logs:Component(s)
Packaging, Python
The text was updated successfully, but these errors were encountered: