hi @clima6,
In your compilation database, you have @Bin/Debug/Obj/include_list.txt
. This is an unexpanded response file that we don’t support.
If you are using CMake, you can fix this issue by setting these two CMAKE variables in your CMakeLists.txt and cleanly regenerating the compilation database:
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES 0)
set(CMAKE_C_USE_RESPONSE_FILE_FOR_INCLUDES 0)
After doing that you should see that you no longer have unexpanded files.
If you use other tools to generate a compilation database, lookup there documentation to see if there is a way to get rid of unexpanded response files.
Thanks,