-
Notifications
You must be signed in to change notification settings - Fork 6.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
[pcl] Fix pcl build when building for arm/arm64 #43295
base: master
Are you sure you want to change the base?
Conversation
You need to delete |
Compile test pass with following triplets:
|
The three failure have nothing to do with pcl: they seem to be in libmem (which I haven't touched and don't even know). |
Bitte was?
Jack Jansen ***@***.***> schrieb am Sa., 18. Jän. 2025, 17:22:
… The three failure have nothing to do with pcl: they seem to be in libmem
(which I haven't touched and don't even know).
Please advise on what I should do about this, if anything.
—
Reply to this email directly, view it on GitHub
<#43295 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BNG6OJH4FCYYME5YO6ETYCT2LJ5SXAVCNFSM6AAAAABVIFXF7CVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJZG43TKMJTGA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
@frenchcore23 I was referring to the failures in the automated tests. The three failures (x64_windows, x64_windows_static and x64_windows_static_md) have nothing to do with the I was hoping that @jimwang118 would guide me. |
Fixes #41505.
./vcpkg x-add-version --all
and committing the result.Supersedes the older pull request #41506.
The change is simple: Pass
-DPCL_ENABLE_SSE=OFF
tocmake
when building for arm64 or arm. This forestalls the attempt to run the cmake configuration scripts that try to determine the SSE features. They would all return false anyway because SSE is x86-only.