Maxwell Geng

Results 10 issues of Maxwell Geng

### Is your feature request related to a problem? Please describe. Now the pre-compilation of PCH is serialized with the other targets' compilation, this is inefficient and unnecessary. ### Describe...

feature request

### Xmake 版本 xmake v2.9.3+dev.7f0f823bc ### 操作系统版本和架构 Windows 11 ### 描述问题 当add_includedirs 路径为 xxx-include,如 modules/my-include 时,set_pcxxheader 定义的pch编译不会正确 include ### 期待的结果 正常接受 include ### 工程配置 add_includedirs("test/my-include"); set_pcxxheader("pch.h"); ### 附加信息和错误日志 fatal error:...

bug

Both IL2CPP and Burst are presented in graph. Maybe it can be more persuasive if some native c++ performance test results presented?

### Is your feature request related to a problem? Please describe. C++ dynamic debugging option: https://devblogs.microsoft.com/cppblog/cpp-dynamic-debugging-full-debuggability-for-optimized-builds/ ### Describe the solution you'd like maybe an option like: ```lua set_dynamic_debugging(true) ``` ###...

feature request

_lzcnt_u64 may not supported by native LLVM compiler on Windows.

### Xmake 版本 3.0.5 ### 操作系统版本和架构 Windows ### 描述问题 配置 clang-cl toolchain 时会显示msvc warning。 ### 期待的结果 全局使用clang-cl时不应当有msvc warning. ### 工程配置 xmake f --toolchain=clang-cl -c ### 附加信息和错误日志 warning: we cannot load...

bug

### Is your feature request related to a problem? Please describe. add_deps can have options like {public = false} which like add_includedirs and other API. ### Describe the solution you'd...

feature request

Compile this example with "-Zpr" which enable row-major matrix: ``` ByteAddressBuffer byte_buffer; void foo() { float4x4 matrix = byte_buffer.Load(id); } ``` variable "matrix" is not treated as row-major matrix.

bug
spirv

With this simple HLSL code: ``` struct Test { bool a: 1; int b; }; RWStructuredBuffer buffer; [numthreads(1, 1, 1)] void main(){ Test t; t.a = true; t.b = 1;...

bug
spirv