Build modes that affect cache separation. Different build modes produce different binaries and should have separate caches.
| 32 | |
| 33 | |
| 34 | class BuildMode(Enum): |
| 35 | """ |
| 36 | Build modes that affect cache separation. |
| 37 | |
| 38 | Different build modes produce different binaries and should have separate caches. |
| 39 | """ |
| 40 | |
| 41 | QUICK = "quick" # -O0 -g1: Fast iteration |
| 42 | DEBUG = "debug" # -O0 -g3 -fsanitize=address,undefined: Full debugging |
| 43 | RELEASE = "release" # -O2: Optimized production |
| 44 | |
| 45 | |
| 46 | @dataclass |