Commit 923bb91
committed
ensure NDEBUG is set consistently
otherwise grpcio ends up with missing symbols at runtime, because
```
class DomainStorage : public DualRefCounted<DomainStorage>, public channelz::DataSource
```
ends up having a different class layout, due to inheriting from DualRefCounted,
which changes size depending on NDEBUG being present or not, see
https://github.com/grpc/grpc/blob/v1.78.0-pre1/src/core/util/dual_ref_counted.h1 parent ca26f6b commit 923bb91
2 files changed
+11
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
74 | 79 | | |
75 | 80 | | |
76 | 81 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
28 | 34 | | |
0 commit comments