Wenting
Results
2
comments of
Wenting
This is more like a C++ source package repository mechanism compared to maven in java and I've seen this in bazel when I tried to make Tensorflow built in blade(painful!)....
修改 BLADE_ROOT 如下 ```python cc_config( cppflags = [ # Other flags... '-fsanitize=address', ], # Other configurations... linkflags = [ # Other flags... '-fsanitize=address -static-libasan', ] ) ``` 此外,需要注意的是,使用 AddressSanitizer 时,不能链接其他的内存管理库,例如...