Replies: 1 comment 2 replies
-
你想怎么优化?它编译就这个速度,不同 obj 之间调度已经是并行编译了,同一 obj ,肯定得先编译完,才能执行 after_build_file 。。顾名思义,after build... |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
目前用 xmake 改造一个用 armcc 作为编译器的sdk,需要用-D -E生成预处理文件然后用自带的工具处理。
用
after_build_file
做到了生成预处理这个功能,但看输出,after_build_file好像是在编译完成后才执行,而且还是顺序执行翻遍了文档也没看到介绍给
after_build_file
加速的下面是写的after_build_file,可能有点烂哈哈
Beta Was this translation helpful? Give feedback.
All reactions