-
如题
|
Beta Was this translation helpful? Give feedback.
Answered by
waruqi
Oct 17, 2025
Replies: 4 comments 4 replies
-
暂不支持,等这个 patch #6924 |
Beta Was this translation helpful? Give feedback.
0 replies
-
3.0.2和更早的版本里,我使用 --toolchain=mingw 并在环境变量中配置llvm-mingw路径,能够正常编译。但是在3.0.3版本开始会编译模块时报错,额外指定了 --cxx=clang++ 后恢复正常编译。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
可以了,再试试, xmake update dev
xmake f -p mingw --sdk=D:\llvm-mingw-20251007-ucrt-x86_64 --toolchain=mingw[clang] -c
xmake |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
YuHuanTin
-
set_arch("x86_64")
set_plat("mingw")
set_config("sdk", "D:\\llvm-mingw-20251007-ucrt-x86_64")
set_toolchains("mingw[clang]") 附上完整 xmake.lua |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
可以了,再试试,