Hi,
When working on large codebase project, it would be very helpful if I can overwrite some files with different compiler option. For example, by default I was using Release to build the whole project, but when I want to debug some particular files, if I can use ‘-O0 -g’ only on those particular files instead of rebuild the whole project or submodule, it would save me a lot of rebuilding time and linking time (given that I have been using better linker).
I guess the feature will be similar to Bazel’s --per_file_copt?
Thanks!
CY