ruki
ruki
I don't know what you want to support?
This doesn't seem to require xmake to do anything.xmake has its own API, you can only use the xmake-vscode plugin. The native lua plugin has no effect on xmake.
dotnet 在 win/mac/linux 上,用了不同的工具链,差异比较大,单 win 上对 csc.exe 的支持,估计就有不少工作量,暂时没时间搞。有兴趣的话,可以直接提 pr 过来。 先前有个 pr 不过实现方式有问题,没用 csc 而是走了 project generator https://github.com/xmake-io/xmake/pull/4510
可以 `add_requireconfs("protobuf-cpp.abseil", {version = "xxx", override = true})` 改写依赖版本 或者提个 pr 过来改进下包
Currently I don't have time to support it, so if you're interested you can just open a pr to support it. Also, csharp with mono and vs csharp use very...
为啥要指定 `-P .` ,除非你强改工程根目录,作为独立工程编译,那你上层的 debug 配置,又不会影响当前的,当前的还是 release
暂时不考虑,不太好实现。
We can set it as gcc If the unknown compiler is gcc/clang-like. e.g `set_toolset("cc", "gcc@ccmips")` If it's not a gcc/clang compiler, then you need to open a feature request or...
if it use gcc-like compiler, it will use `-MMD` https://github.com/xmake-io/xmake/blob/604001279b281aa1dd4335d0d2455154b7c76f86/xmake/modules/core/tools/gcc.lua#L869 We can't use other flags unless we add native iar compiler support.
> Yes, I have found that out. I am attempting to add support, but it doesn't seem there is a lot of documentation on how to do so, so I...