-
-
Notifications
You must be signed in to change notification settings - Fork 392
Support zig build lock glibc2.17 #3316
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
Conversation
Summary of ChangesHello @CppCXY, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the Linux build system by introducing an optional Zig-based compilation path. This change is primarily aimed at improving compatibility with older Linux environments, specifically those running Highlights
Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request introduces support for using Zig as a compiler for Linux builds, enabling targeting a specific glibc version for better compatibility. The changes are gated by a USE_ZIG environment variable. The approach is sound. I have provided a few suggestions to improve maintainability and robustness. Specifically, I've recommended refactoring some duplicated code in the Lua script and suggested improvements for the new shell script, including making it more robust and ensuring it has the correct file permissions to be executable.
| @@ -0,0 +1,14 @@ | |||
| #!/bin/bash | |||
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.
I have a couple of suggestions for this new script:
-
Robustness: It's a good practice to add
set -euo pipefailat the start of bash scripts. This makes them exit immediately on errors, on usage of unset variables, or on pipeline failures. -
Permissions: This script needs to be executable to work as a compiler wrapper. Please ensure you set the executable bit (e.g.,
chmod +x zig-cc-wrapper.sh) and commit this permission change. Without this, the build will fail on Linux/macOS systems.
| #!/bin/bash | |
| #!/bin/bash | |
| set -euo pipefail |
| elseif lm.platform == "linux-x64" then | ||
| -- Target glibc 2.17 for x86_64 | ||
| lm.flags = { '-target', 'x86_64-linux-gnu.2.17' } | ||
| lm.ldflags = { '-target', 'x86_64-linux-gnu.2.17', '-lc++' } | ||
| elseif lm.platform == "linux-arm64" then | ||
| -- Target glibc 2.17 for aarch64 | ||
| lm.flags = { '-target', 'aarch64-linux-gnu.2.17' } | ||
| lm.ldflags = { '-target', 'aarch64-linux-gnu.2.17', '-lc++' } |
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's some code duplication here for setting the compiler and linker flags for different architectures. You can refactor this to be more concise and easier to maintain by determining the target architecture first and then constructing the flags. This also makes it easier to update the glibc version in the future.
elseif lm.platform == "linux-x64" or lm.platform == "linux-arm64" then
local target_arch = (lm.platform == "linux-x64") and "x86_64" or "aarch64"
local glibc_version = "2.17"
local target = ("%s-linux-gnu.%s"):format(target_arch, glibc_version)
lm.flags = { '-target', target }
lm.ldflags = { '-target', target, '-lc++' }
No description provided.