fix(docker): Add omp lib installation for compiling#49
Closed
creeper5820 wants to merge 1 commit into
Closed
Conversation
|
No actionable comments were generated in the recent review. 🎉 概览Dockerfile 的 rmcs-develop 阶段现在在 apt-get 安装命令中添加了 libomp-22-dev,并新增两条 update-alternatives 命令来注册 clang-format-22 和 lldb-22 工具。 变更
估计代码审查工作量🎯 1 (简洁) | ⏱️ ~3 分钟 可能相关的 PR
建议审查者
诗
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Issue Planner is now in beta. Read the docs and try it out! Share your feedback on Discord. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
修复Docker镜像中的OpenMP库安装
在
rmcs-develop构建阶段中,更新了LLVM工具链的安装过程:主要变更:
apt-get install命令中添加了libomp-22-dev依赖包,以提供编译时所需的OpenMP库支持update-alternatives配置项:clang-format-22注册为clang-format的可用替代方案lldb-22注册为lldb的可用替代方案这些更改确保了编译环境拥有完整的OpenMP编译库,并且LLVM工具链的所有相关工具(包括clang、clang++、clangd、clang-format和lldb)都通过
update-alternatives机制正确配置。