Tencent / yadcc

Yet Another Distributed C++ Compiler. yadcc是一套腾讯广告自研的分布式编译系统,用于支撑腾讯广告的日常开发及流水线。相对于已有的同类解决方案,我们针对实际的工业生产环境做了性能、可靠性、易用性等方面优化。
Other
364 stars 62 forks source link

Can YADCC use a universal build framework like CMake, SCons or others? #12

Closed CrazyWood2020 closed 3 years ago

CrazyWood2020 commented 3 years ago

Most community contributors rarely know about blade, when we want to add address sanitizer option for this project, we get confused.

0x804d8000 commented 3 years ago

Adding -fsanitize=address to cxxflags and linkflags in BLADE_ROOT should do the trick.

Unlike flare, which is mostly imported to other code repository by source, I'd expect most of the users of yadcc care more about using it rather than hacking on the code, so I'm not sure it's worth the effort to support other building systems.

CrazyWood2020 commented 3 years ago

OK, get it. Tks~