-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
[arrayfire] Build error #26763
Comments
At lease we need to change the internal vendor clfft to port clfft. |
Pull request make installation finish for me locally. It works in VS with MSBuild, but when trying to use with CMake, it fails.
cmake_minimum_required(VERSION 3.15)
project(vcpkg-test CXX)
find_package(ArrayFire REQUIRED)
add_executable(vcpkg-test src/main.cxx)
target_compile_features(vcpkg-test PRIVATE cxx_std_17)
target_link_libraries(vcpkg-test
PRIVATE
ArrayFire::afopencl) |
GHA windows env was updated yesterday and damaged build workflow which uses |
@Yury-Fridlyand Can you please provide the failure output and the logs? |
Please, see opensearch-project/sql#828. The reason of failure was new environment variable |
@Yury-Fridlyand I saw the changes and it seems correct. Can you please provide the failure log? |
https://github.com/opensearch-project/sql/actions/runs/3047392063/jobs/4911328315 I don't say that changes are incorrect, but they affected build process in my project. Fortunately, the fix was quite simple. |
cc @BillyONeal about this issue, I don't know which changes affect this. |
What I see in the raw log is a problem with building aws sdk. Which may start at:
Note the mixed slash style in
I don't see how this is connected to vcpkg. |
Host Environment
To Reproduce
Steps to reproduce the behavior:
./vcpkg install arrayfire[core,opencl]:x64-windows
Failure logs
Additional context
It seems to fail on linking clFFT:
LINK : fatal error LNK1104: cannot open file 'third_party\clFFT\lib\import\clFFT.lib'
, and indeed there isn't such file at that directory, though there is\third_party\clFFT\lib64\import\clFFT.lib
.install-x64-windows-dbg-out-1.log
install-x64-windows-dbg-out.log
The text was updated successfully, but these errors were encountered: