Prior to this, CMAKE_BUILD_TYPE would unconditionally be Release. This allows me to add -DCMAKE_BUILD_TYPE=Debug to override this rather than manually changing the cache file.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Event Timeline
Comment Actions
This shouldn't be needed, you can do:
cmake ... -DCMAKE_BUILD_TYPE=Debug -C path/to/Fuchsia-stage2.cmake
This will override the value inside the cache file.