为什么每次使用xmake config -xxx=xxx时,除了命令行指定的配置以外,其它的配置都会变成默认配置? #4891
-
比如说我的host环境是linux x86_64,我想将配置的plat改为mingw,arch改为x86,我设想的是输入这两条命令:
但是每次运行完一条命令之后其它的配置都会变成默认配置,所以第一条命令执行完之后plat是mingw,arch是x86_64;第二条命令执行完之后plat是linux,arch是x86_64,这并不是我想要的结果。 |
Beta Was this translation helpful? Give feedback.
Answered by
star-hengxing
Mar 28, 2024
Replies: 2 comments 2 replies
-
相关讨论:#2401 可以考虑用社区贡献的插件 $ xmake plugin --install https://github.com/SirLynix/xmake-plugins
$ xmake cu -m debug
$ xmake cu -a x86 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kokoro11
-
不支持增量配置,这种设计的细节和实现复杂度太高,也更容易出问题,不会考虑支持。目前 autoconf/cmake 也都是全量配置。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
相关讨论:#2401
可以考虑用社区贡献的插件