Colen Garoutte-Carson
Colen Garoutte-Carson
This may be a duplicate of: https://github.com/microsoft/vscode-cpptools/issues/9198 `clang` itself, and thus `clang-tidy`, doesn't support `__float128`, so it's necessary to work around the issue. Fully fixing this would seem to require...
Hi @taotaoli . Thanks for reporting this. I can reproduce the issue. It seems to be related to use of `extern "C"`, and not macros, per se.
Hi @zcjie1 . Could you enable the setting `"C_Cpp.loggingLevel": "Debug"` and provide the log output from the C/C++ output channel, from startup until the repro? I suspect the issue may...
Hi @zcjie1 . I see a bunch of the following in your log: ``` Unable to access browse database ``` I've actually not seen this before. Usually an issue accessing...
Hi @zcjie1 . Just to confirm, did you have to go all the way back to 1.17.5 to resolve the issue? (There are some pre-release versions after 1.17.5, but since...
Also, I'm not sure that's the path used for projects opened in your Linux remote. That looks like the path used for project opened locally on Windows. There was a...
Hi @zcjie1 . The account used to create the directory should have been the account the directory is under. The C/C++ Extension doesn't directly deal with file system account permissions....
Hi @akhodeir . The error message you may be referring to (` could not be parsed. 'includePath' from c_cpp_properties.json in folder '' will be used instead.`) appears to be emitted...
Hi @akhodeir . It looks like the "-MJ" command will generate a `compile_commands.json` fragment, not a valid `compile_commands.json` file. According to [the specifications for `compile_commands.json` files](https://clang.llvm.org/docs/JSONCompilationDatabase.html), the file should contain...
Hi @akhodeir . Frameworks would be returned by clang when queried as part of your 'base configuration'. The configuration in your `c_cpp_properties.json` (other than the `compile_commands.json` setting) is used to...