Home>Article>Development Tools> vscode cannot find reference

vscode cannot find reference

王林
王林 Original
2020-01-10 09:33:54 5356browse

vscode cannot find reference

In the open source software VSCODE, extension plug-ins are generally installed to improve work efficiency. Especially C/C, generally these are necessary:

1, C/C

2, C Intellisense

Among them:C IntellisenseThe plug-in requires the support ofGNU Global, which is a program similar to CTag that can create Tags required to implement indexing and auto-completion functions. Therefore, the function of finding references cannot be realized before GUN GLOBAL is installed.

Solution:

1. Download the Windows version of GNU Global. After downloading and decompressing, configure the Win system PATH to the /bin directory of the GNU Global directory. This directory contains gtag.exe and other binary files.

Or download the Win32 program from the GTAGS official website, unzip it, place it in a suitable location, add the /bin folder under its directory to the system path, and restart the computer.

2. Open the project with vscode, ctrl shift c to open CMD, enter gtags, and three gtag files will be generated in the project.

3. Key points: The project path cannot contain Chinese characters; it cannot contain spaces; when entering gtags, it must be based on the project file name.

The reference reference is now in effect.

Recommended related articles and tutorials:vscode tutorial

The above is the detailed content of vscode cannot find reference. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn