MCPcopy Create free account
hub / github.com/FastLED/FastLED / BuildMode

Class BuildMode

ci/fingerprint/config.py:34–43  ·  view source on GitHub ↗

Build modes that affect cache separation. Different build modes produce different binaries and should have separate caches.

Source from the content-addressed store, hash-verified

32
33
34class 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

Callers 1

get_cache_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected