-
Hi, C/C++ intellisense log:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @Masoudjafari . There is a "C++ IntelliSense" extension in the marketplace, but it is not developed by Microsoft. If you have that extension installed, it would conflict with the "C/C++" extension from Microsoft. Though, the log you have provided does appear to be from the C/C++ extension. It appears to be failing to communicate with a child (IntelliSense) process that it started, due to a permission error (-13, EACCESS). Since you mentioned that the same scenario works on another machine, the issue would seem to be related to the configuration of the machine it's failing on. The IntelliSense process is a native process launched by Ubuntu 14.04 is somewhat dated. It's possible an issue has arisen with that older version of Ubuntu for some reason. |
Beta Was this translation helpful? Give feedback.
Hi @Masoudjafari . There is a "C++ IntelliSense" extension in the marketplace, but it is not developed by Microsoft. If you have that extension installed, it would conflict with the "C/C++" extension from Microsoft.
Though, the log you have provided does appear to be from the C/C++ extension. It appears to be failing to communicate with a child (IntelliSense) process that it started, due to a permission error (-13, EACCESS). Since you mentioned that the same scenario works on another machine, the issue would seem to be related to the configuration of the machine it's failing on. The IntelliSense process is a native process launched by
cpptools
, which is also a native process. The permissi…