-
-
Notifications
You must be signed in to change notification settings - Fork 4.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
Enable USE_UMFPACK in surface module on macOS CI #6078
Enable USE_UMFPACK in surface module on macOS CI #6078
Conversation
964462d
to
bdc9ab5
Compare
CMakeLists.txt
Outdated
@@ -293,6 +293,13 @@ endif() | |||
# OpenMP (optional) | |||
option(WITH_OPENMP "Build with parallelization using OpenMP" TRUE) | |||
if(WITH_OPENMP) | |||
if(APPLE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you remove this change from this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if you try remove the local findOpenMP and use the one from Cmake itself, as in #6100?
else | ||
leaf_count += node->m_count; | ||
} | ||
// static void NodeCountHelper( const ON_RTreeNode* node, std::size_t& node_count, std::size_t& wasted_branch_count, std::size_t& leaf_count ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets just remove this, if you think its not of use?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of course
bdc9ab5
to
8b7c3de
Compare
No, I just found USE_UMFPACK is false in surface/on_nurbs(see https://github.com/PointCloudLibrary/pcl/blob/master/surface/src/on_nurbs/on_nurbs.cmake#L50). And didn't bother to build it in any of the other CIs. But, I've found that MacOS's stricter code checking has led to a lot of compilation errors in third-party opennurbs library. So I fixed it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks. Since Lars already gave his okay, I will merge immediately.
No description provided.