c++ - codelite clang separate options -
i did follow suggestions on the documentation enable clang code completion, seems on recent version there no option add search paths , compiler flags separately, tried adding compiler flags on search path window, not showing evidence caught new paths:
any idea i'm doing wrong?
you don't need set paths separately clang code completion work. need re-build (i.e. clean follow build) project once.
if done properly, should see in codelite's build log lines similar to:
codelite-cc g++ ...
(or codelite-cc clang++...
) codelite-cc
utility collect search paths (and macros , other flags) passed compiler , pass them codelite, pass libclang getting proper code completion code.
Comments
Post a Comment