[Lldb-commits] [PATCH] D61956: [CMake] Add first CMake cache files

Don Hinton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri May 17 15:03:18 PDT 2019


hintonda added a comment.

Btw, options on the command line always override what's in the cache.  Has nothing to do with FORCE.  All FORCE does is make sure the set command actually changes an existing cache value.  So it's an ordering issue.  If the `-D` comes before the `-C` then using FORCE would override, but if the `-C` comes before the `-D`, the `-D` always overrides.

I always use FORCE and put my overrides after the cache file.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61956/new/

https://reviews.llvm.org/D61956





More information about the lldb-commits mailing list