GDB Debugger Made Simple: A Step-by-Step Guide

GDB Debugger Made Simple: A Step-by-Step Guide

Introduction to GDB GDB (GNU Debugger) is a powerful command-line debugging tool. Generally, when developing on Windows, command-line debugging is rarely used, as debuggers are mostly integrated with compilers in IDEs. Of course, you can also directly use gcc and gdb to compile and debug our C programs on Windows. For example, MinGW (a collection … Read more

Easily Manage Go Projects with Makefile: A Development Efficiency Tool

Easily Manage Go Projects with Makefile: A Development Efficiency Tool

1. Introduction 1. Introduction to make make is a build automation tool that looks for Makefile or makefile files in the current directory. If the corresponding file exists, it will complete the build tasks according to the rules defined within. 2. Introduction to Makefile With Makefile, we no longer need to manually input compilation commands … Read more

Configuring MinGW in VSCode for C Language

Configuring MinGW in VSCode for C Language

C Language Editor VSCode VSCode is a personal favorite editor software. I have run three terminals simultaneously in VSCode, developing in Python, Golang, and C language. The download link is as follows: code.visualstudio.com Configuring MinGW in VSCode To configure MinGW in VSCode, follow these steps: Install the C/C++ extension from the extensions in VSCode; Create … Read more

Installing and Running QT on VxWorks 6.8

Installing and Running QT on VxWorks 6.8

Click “Read the Original” for more VxWorks resources Free download of VxWorks technical materials, resources sourced from the internet, copyright belongs to the original authors! 1. Introduction This article details how to install and configure QT on the VxWorks 6.8 operating system, providing a thorough process with images and text, along with detailed steps for … Read more