Skip to content

Commit 96b5479

Browse files
authored
Add GDB Path
1 parent 2875c3c commit 96b5479

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/linux/deploy-run-and-debug-your-linux-project.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,15 @@ There are several ways to interact with and debug your Linux project.
8686
## Configure other debugging options (MSBuild projects)
8787

8888
- Command-line arguments can be passed to the executable using the **Program Arguments** item in the project's **Debugging** property page.
89-
- You can export the `DISPLAY` environment variable by using the **Pre-Launch Command** in the project's**Debugging** property pages. For example: `export DISPLAY=:0.0`
89+
- You can export the `DISPLAY` environment variable by using the **Pre-Launch Command** in the project's **Debugging** property pages. For example: `export DISPLAY=:0.0`
9090

9191
![Program Arguments](media/settings_programarguments.png)
9292

9393
- Specific debugger options can be passed to GDB using the **Additional Debugger Commands** entry. For example, you might want to ignore SIGILL (illegal instruction) signals. You could use the **handle** command to achieve this by adding the following to the **Additional Debugger Commands** entry as shown above:
9494

9595
`handle SIGILL nostop noprint`
96+
97+
- You can specify the path to the GDB used by Visual Studio using the **GDB Path** item in the project's **Debugging** property page. This property is available in Visual Studio 2019 version 16.9 and later.
9698

9799
## Debug with Attach to Process
98100

0 commit comments

Comments
 (0)