Downloads:
88
Downloads of v 3.0.1:
9
Last Update:
02 Aug 2025
Published Date:
02 Aug 2025
Package Maintainer(s):
Software Author(s):
- xmake.io and tboox.org
Tags:
xmake
(Ready for review)
- 1
- 2
- 3
3.0.1 | Updated: 02 Aug 2025
Downloads:
88
Downloads of v 3.0.1:
9
Published:
02 Aug 2025
Maintainer(s):
Software Author(s):
- xmake.io and tboox.org
xmake 3.0.1
(Ready for review)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by xmake.io and tboox.org. The inclusion of xmake.io and tboox.org trademark(s), if any, upon this webpage is solely to identify xmake.io and tboox.org goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
xmake - A cross-platform build utility based on Lua
Modern C/C++ build tool: Simple, Fast, Powerful dependency package integration
Xmake is a lightweight cross-platform build utility based on Lua. It uses a Lua script to maintain project builds, but is driven by a dependency free core program written in C. Compared with Makefiles or CMake, the configuration syntax is much concise and intuitive. As such, it's friendly to novices while still maintaining the flexibly required in a build system. With Xmake, you can focus on your project instead of the build.
Xmake can be used to directly build source code (like with Make or Ninja), or it can generate project source files like CMake or Meson. It also has a built-in package management system to help users integrate C/C++ dependencies.
If you want to know more, please refer to: the Documentation, GitHub or Gitee. You are also welcome to join our community.
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'xmake*'
fileType = 'exe'
silentArgs = "/S"
validExitCodes= @(0, 3010, 1605, 1614, 1641)
}
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
Log in or click on link to see number of positives.
- xmake.3.0.1.nupkg (36969b947d8b) - ## / 67
- xmake-v3.0.1.win64.exe (c0d21f114d06) - ## / 72
- xmake-v3.0.1.win32.exe (7165b6e1709c) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
xmake 3.0.1 | 9 | Saturday, August 2, 2025 | Ready | |
xmake 2.9.9 | 79 | Saturday, June 7, 2025 | Approved |
Copyright (c) 2015-present xmake.io and tboox.org
New features
- #4810: Add Native XCode project generator plugin
Bugs fixed
- #6592: Fix objects only links
- #6586: Fix build.fence policy
- #6600: Fix compile_commands generator for c++modules
- #6621: Fix android build for ndk r17c
- #6635: Fix batchcmds for qt/moc
新特性
- #4810: 添加新的原生 Xcode 工程生成插件
Bugs 修复
- #6592: 修复 object 目标的链接问题
- #6586: 修复 build.fence 策略
- #6600: 修复 compile_commands 生成器
- #6621: 修复 android ndk r17c 构建失败问题
- #6635: 修复 batchcmds 导致的 qt/moc 增量构建问题
What's Changed
- Improve conan to support for wasm by @waruqi in https://github.com/xmake-io/xmake/pull/6559
- Do not add -fsanitize flags to msvc linker by @DownerCase in https://github.com/xmake-io/xmake/pull/6567
- Update Qt ts rule by @RC1844 in https://github.com/xmake-io/xmake/pull/6582
- Use pairs iterator for project.options instead of ipairs by @A2va in https://github.com/xmake-io/xmake/pull/6581
- Fix attempt to index a nil value by @star-hengxing in https://github.com/xmake-io/xmake/pull/6587
- feat(test): Support expected-failure tests via should_fail option by @romeoxbm in https://github.com/xmake-io/xmake/pull/6588
- feat(plugin/project): support gen compile_commands.json for specific target by @fcying in https://github.com/xmake-io/xmake/pull/6572
- improve ping #6579 by @waruqi in https://github.com/xmake-io/xmake/pull/6585
- Fix objectonly targets by @waruqi in https://github.com/xmake-io/xmake/pull/6592
- package(install): refine relative path generation in .pc files by @Doekin in https://github.com/xmake-io/xmake/pull/6597
- New native Xcode project generator. by @JX-Master in https://github.com/xmake-io/xmake/pull/6411
- rename copyright by @waruqi in https://github.com/xmake-io/xmake/pull/6602
- fix project generator for c++modules by @waruqi in https://github.com/xmake-io/xmake/pull/6605
- vsxmake: add cxx20 by @ChrisCatCP in https://github.com/xmake-io/xmake/pull/6612
- fix: rust static and shared library failing to find extern crate in windows-msvc by @IMXEren in https://github.com/xmake-io/xmake/pull/6606
- fix: the cmake module cannot get the option
cxxflags
correctly by @npc1054657282 in https://github.com/xmake-io/xmake/pull/6623 - add sysroot to ldflags by @waruqi in https://github.com/xmake-io/xmake/pull/6622
- (cmake) fix default flags detection on windows platform by @Arthapz in https://github.com/xmake-io/xmake/pull/6619
- check options by @waruqi in https://github.com/xmake-io/xmake/pull/6626
New Contributors
- @DownerCase made their first contribution in https://github.com/xmake-io/xmake/pull/6567
- @romeoxbm made their first contribution in https://github.com/xmake-io/xmake/pull/6588
- @fcying made their first contribution in https://github.com/xmake-io/xmake/pull/6572
- @JX-Master made their first contribution in https://github.com/xmake-io/xmake/pull/6411
- @IMXEren made their first contribution in https://github.com/xmake-io/xmake/pull/6606
- @npc1054657282 made their first contribution in https://github.com/xmake-io/xmake/pull/6623
Full Changelog: https://github.com/xmake-io/xmake/compare/v3.0.0...v3.0.1
This package has no dependencies.
Ground Rules:
- This discussion is only about xmake and the xmake package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or xmake, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
wanwan (maintainer) on 02 Aug 2025 14:23:06 +00:00:
User 'wanwan' (maintainer) submitted package.
chocolatey-ops (reviewer) on 02 Aug 2025 14:56:11 +00:00:
xmake has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
chocolatey-ops (reviewer) on 02 Aug 2025 17:29:42 +00:00:
xmake has passed automated package testing (verification). The next step in the process is package scanning.
Please visit https://gist.github.com/choco-bot/df4cbf46e6c5c17bea5a68df03ba0526 for details.
This is an FYI only. There is no action you need to take.
chocolatey-ops (reviewer) on 02 Aug 2025 17:41:16 +00:00:
xmake has been flagged as part of automated virus scanning.
Package virus scanning found that at least 1 file within, or downloaded by, the package has between 1 and 5 VirusTotal detections associated with it.
This is not enough detections to prevent the approval of this package version.