summaryrefslogtreecommitdiff
path: root/xmake
AgeCommit message (Collapse)Author
2026-01-10Merge pull request #7206 from SuperSodaSea/fix/kmdf-sharedruki
WDK: Add shared directory to KMDF include path
2026-01-10improve to find midl #7192ruki
2026-01-10WDK: Add shared directory to KMDF include pathSuperSodaSea
2026-01-10improve tipsruki
2026-01-10reset manifestruki
2026-01-10fix use_precompiled_artifactsruki
2026-01-10rewrite precompile artifactsruki
2026-01-09improve mingw toolchainruki
2026-01-09revert mingw platformruki
2026-01-09fix mingw platformruki
2026-01-09improve current schemeruki
2026-01-09improve package tipruki
2026-01-09move patches and resources to schemeruki
2026-01-09install package from schemesruki
2026-01-09improve to select versionruki
2026-01-09improve package to use current schemeruki
2026-01-09add default schemeruki
2026-01-09improve schemesruki
2026-01-09improve to select package version for schemesruki
2026-01-09remove load schemesruki
2026-01-09remove default schemeruki
2026-01-09add current scheme for packageruki
2026-01-09improve scheme:getruki
2026-01-09fix load packagesruki
2026-01-09load schemesruki
2026-01-09improve to load packageruki
2026-01-09improve schemeruki
2026-01-09add package schemesruki
2026-01-09add package schemeruki
2026-01-09improve getfenvenvruki
2026-01-09fix getfenvruki
2026-01-08Merge pull request #7190 from ZZBaron/nix/fix-version-handlingruki
Nix Package Manager: Add Semantic Versioning and Improve Version Selection
2026-01-07nix: adjustments by geminizzbaron
2026-01-06Merge pull request #7187 from veritas-Qiu/devruki
为cuda arch添加后缀支持
2026-01-06improve to show modesruki
2026-01-05nix: changed author namezzbaron
2026-01-05nix: fixed bugszzbaron
2026-01-05add some comments according to code reviewqiuyi
2026-01-05fix r_arch to v_arch convert failed when suffix is addedqiuyi
2026-01-05support 'a' and 'f' suffix for arch > sm_90/compute_90qiuyi
2026-01-04nix: fixed semver logiczzbaron
2026-01-04nix: added proper version handlingzzbaron
2026-01-04Merge pull request #7178 from 24bit-xjkp/devruki
refactor(rules/verilator): Switch from cmake to json format for Verilator build file parsing
2026-01-04fix(rule/verilator): Fix c++ language detect24bit-xjkp
2026-01-04add alpine in linuxosruki
2026-01-04fix(rules/verilator): Check `find_tool` result before read the version field24bit-xjkp
2026-01-04fix semaphore in runjobsruki
2026-01-04refactor(rules/verilator): Use `find_tool` instead of `find_programver`24bit-xjkp
2026-01-03refactor(verilog): Restore the cmake file parsing support24bit-xjkp
1. If verilator's version >= 5.036, then we use json file parsing, otherwise, we use cmake file parsing.
2026-01-01refactor(rules/verilator): Switch from cmake to json format for Verilator ↵24bit-xjkp
build file parsing 1. The "-make cmake" option of Verilator is deprecated and will be removed in future. See [Deprecations](https://verilator.org/guide/latest/deprecations.html). Use "-make cmake" option in Verilator v5.042 will lead Verilator to return a non-zero value, thus the script reports an error. 2. Verilator can generate build options in json format which can be parsed easier, so we switch from cmake to json format. 3. Add new SystemVerilog language standard `v1800-2023` support. 4. Fix the issue with c++ language standard settings. BREAKING CHANGE: CMake build file parsing is deprecated.