Skip to content

Improve nim support #7272#7279

Closed
waruqi wants to merge 27 commits intodevfrom
nim
Closed

Improve nim support #7272#7279
waruqi wants to merge 27 commits intodevfrom
nim

Conversation

@waruqi
Copy link
Member

@waruqi waruqi commented Jan 30, 2026

…rms; add Nim test files for static and shared libraries
@waruqi waruqi added this to the v3.0.7 milestone Jan 30, 2026
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @waruqi, 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 advances Xmake's support for the Nim programming language. It introduces a new, extensive test project that validates Nim's ability to link with both static and shared C libraries, as well as external system dependencies like zlib and stb_image. Concurrently, the core Nim language rules and toolchain definitions within Xmake have been updated to correctly handle system include paths, system library linking, architecture-specific compilation flags, and advanced runtime path (RPATH) configurations, ensuring more robust and flexible Nim project builds.

Highlights

  • Enhanced Nim Linking Capabilities: A comprehensive test project has been added to demonstrate Nim's ability to link with both static and shared C libraries, as well as external system dependencies like zlib and stb_image.
  • Improved Nim Language Rules: Xmake's Nim language rules now correctly handle system include directories and system library linking, ensuring better compatibility and build flexibility.
  • Architecture-Specific Compiler Flags: The Nim toolchain now applies architecture-specific compiler flags (e.g., --cpu, --define:bit32/bit64, --passC:"-m32") to improve cross-platform compilation and targeting.
  • Robust RPATH Handling: Advanced runtime path (RPATH) management has been implemented for Nim executables and libraries across various operating systems (macOS, Linux, BSD, Android), including support for dynamic variables like $ORIGIN and @loader_path.
  • Standardized Flag Generation: Toolchain flag generation functions have been refactored to use string.format and proper quoting, leading to more consistent and robust command-line arguments for the Nim compiler and linker.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a 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 significantly improves Nim language support within the xmake build system. It introduces new test cases for linking Nim code with C headers and libraries, demonstrating static and shared library integration. Crucially, the changes to xmake/languages/nim/xmake.lua and xmake/modules/core/tools/nim.lua enhance the Nim toolchain's ability to handle architecture-specific flags, system include directories, system links, and runtime path (rpath) configurations across various platforms. These additions are essential for robust cross-compilation and linking of Nim projects, bringing its support closer to other well-established languages in xmake.

if self:is_plat("linux", "macosx", "bsd") then
if level == "debug" or level == "all" then
return "--passL:-s"
return '--passL:"-s"'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The change from --passL:-s to --passL:"-s" improves consistency in how linker flags are quoted. While functionally equivalent in many cases, explicit quoting can prevent issues with spaces or special characters in paths/flags in other contexts.

--passL:"-s"

-- make the includedir flag
function nf_includedir(self, dir)
return {"--passC:-I" .. path.translate(dir)}
return {string.format('--passC:"-I%s"', path.translate(dir))}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Using string.format for constructing the --passC:"-I%s" flag is a good practice. It enhances readability and ensures proper quoting of the include path, which is important for paths containing spaces or special characters.

return {string.format('--passC:"-I%s"', path.translate(dir))}

function nf_link(self, lib)
if self:is_plat("windows") then
return "--passL:" .. lib .. ".lib"
return string.format('--passL:"%s.lib"', lib)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Similar to the include directory flag, using string.format and explicit quoting for the Windows library path (.lib) improves consistency and robustness against paths with special characters.

return string.format('--passL:"%s.lib"', lib)

return "--passL:" .. lib .. ".lib"
return string.format('--passL:"%s.lib"', lib)
else
return string.format('--passL:"-l%s"', lib)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Applying string.format and explicit quoting to the Unix-like library flag (-l%s) maintains consistency with other flag constructions and can prevent potential parsing issues.

return string.format('--passL:"-l%s"', lib)

function nf_linkdir(self, dir)
if self:is_plat("windows") then
return {"--passL:-libpath:" .. path.translate(dir)}
return {string.format('--passL:"-libpath:%s"', path.translate(dir))}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The use of string.format with explicit quoting for the Windows library search path (-libpath:%s) is a good improvement for consistency and handling paths correctly.

return {string.format('--passL:"-libpath:%s"', path.translate(dir))}

return {string.format('--passL:"-libpath:%s"', path.translate(dir))}
else
return {"--passL:-L" .. path.translate(dir)}
return {string.format('--passL:"-L%s"', path.translate(dir))}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consistent application of string.format and explicit quoting for Unix-like library search paths (-L%s) improves the overall quality and robustness of flag generation.

return {string.format('--passL:"-L%s"', path.translate(dir))}

@waruqi waruqi closed this Jan 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants