VisualGDB 5.6R9 FOR WINDOWS

news2024/12/24 1:03:18

Go cross-platform with comfort

VisualGDB 是 Visual Studio 的一个非常强大的扩展,它允许您调试或调试嵌入式系统。这个程序有一个非常有吸引力的用户界面,它有许多调试或调试代码的功能。VisualGDB 还有一个向导可以帮助您调试程序,为您提供强大的指导。此外,此程序中还有许多其他功能,分为常用功能、高级功能、可用性功能、Linux 功能、Android 功能等类别,每个功能都已在功能和特性部分为您列出。

VisualGDB makes cross-platform development with Visual Studio easy and comfortable. It supports:

  • Barebone embedded systems and IoT modules (see full list)
  • C/C++ Linux Applications
  • Native Android Apps and Libraries
  • Raspberry Pi and other Linux boards
  • Linux kernel modules (separate VisualKernel product)
  • ESP32 and Arduino targets

VS2008-2022 including the free Community Edition are supported.

Focus on your product, not the tools

VisualGDB will automatically install and configure the necessary tools:

  • Embedded toolchains
  • Cross-compilers for common Linux boards
  • Compilers/debuggers on Debian- and RedHat-based Linux
  • GDB Stub software like OpenOCD

All you need to do is choose your device from the list and start developing! VisualGDB can also easily import your existing code or debug code that is built elsewhere.

Advanced Build Output Window

VisualGDB can make sense of complex multi-line error messages from GCC, Keil and IAR compilers. It will show template instantiations, include stack for errors in header files, and other information that helps quickly understand what breaks the build.

You can quickly switch back and forth between the error messages and a specific location in the build log, where VisualGDB will highlight the important messages and make all paths clickable.

Advanced CMake Integration and Debugger

VisualGDB supports advanced CMake project subsystem, with 2-way synchronization between the  CMakeLists files and Solution Explorer enabling you to:

  • Easily view, add, remove and edit CMake targets
  • Edit target settings via regular VS Property Pages
  • Easily add/remove/rename sources for individual targets
  • Configure advanced deployment options for targets
  • Have precise IntelliSense configuration for complex projects
  • Step through CMakeLists.txt files in a debugger

For advanced CMake projects, VisualGDB can access source files on remote Linux machines directly via SSH, without needing to store 2 copies of each file and synchronize them.

Automatic Error Troubleshooting

VisualGDB can automatically troubleshoot common C/C++ errors:

  • Find missing header files and fix include paths
  • Resolve undeclared symbols by finding the correct headers
  • Fix 'undefined reference' errors by finding symbols in libraries
  • Suggest common fixes to embedded configuration files

Seamless Support for Unit Tests

VisualGDB integrates popular CppUTest and GoogleTest frameworks in Visual Studio and provides an easy API to integrate custom frameworks. With one click of a mouse you can run/debug tests on:

  • Embedded ARM devices via JTAG/SWD
  • Linux machines and boards like Raspberry Pi
  • Android devices
  • Mbed projects using Greentea framework

Advanced IntelliSense with refactoring

VisualGDB includes a powerful Clang-based IntelliSense engine that fully supports GCC-specific code and is integrated with embedded and Linux tools. Advanced features include:

  • Easy navigation around your code with CodeJumps and CodeExplorer
  • Create-from-use for methods and constructors
  • Automated code generation with RefactorScript
  • Edit-driven renaming with C++17 support
  • Automatic corrections of common errors and typos
  • Preprocessor lens to understand complex preprocessor macros
  • Code Map for functions, methods, variables and more in C++ code

Read more about Clang IntelliSense features.

Fast and flexible project building

VisualGDB includes an high-performance MSBuild back-end optimized for lightning fast builds of Embedded and Linux projects and automatic and precise IntelliSense.

If your project already uses GNU Make, CMake or QMake, you can easily import it into VisualGDB and have your IntelliSense and settings managed automatically.

Powerful Linux profiling

VisualGDB takes profiling an dynamic analysis of Linux programs to a new level. Featuring the extremely scalable profiling database format VisualGDB lets you conveniently explore the performance of your program and relations between different parts ot it. Switch between function tree, global function list and detailed per-line view to quickly find and compare the information you need.

Powerful debugging experience

VisualGDB provides consistent Visual Studio debugging experience for local, SSH-based, JTAG-based debugging and many more. You hit F5, VisualGDB does the rest. Advanced debug features include:

  • IntelliSense and preprocessor support in Watch windows
  • Built-in SSH terminal and file transfer for Linux debugging
  • Powerful custom actions to automate routine tasks
  • Enter your own GDB commands and record command timings

Read more about VisualGDB debug features

Easy interface for complex tools

VisualGDB provides graphical interface for editing common settings of most widely used build tools from GNU/Linux:

  • Graphically edit Makefiles and synchronize source file lists
  • Manage CMake targets and settings
  • Create and maintain QMake files for Qt projects
  • Precise IntelliSense for large imported CMake projects
  • Use VisualGDB-generated Makefiles or import your own ones

Suggestion Popups and Error Checking

The VisualGDB GUI is designed to make you productive at every task. This includes automatic suggestions of common variables and file/folder paths across VisualGDB Project Settings, as well as automatic troubleshooting of common build and deployment errors.

Integration with Team Foundation Server

VisualGDB features an open-source TFS plugin for easy out-of-the-box building of VisualGDB projects. Simply install the plugin to your TFS build server and build Make, CMake, or QMake-based VisualGDB projects easily and automatically with no need to install a separate instance of Visual Studio.

Read more about building VisualGDB projects with TFS

Easily share settings with your team

VisualGDB includes a convenient mechanism for sharing numerous types of settings and presets with your entire team. Simply configure a shared settings directory and then instantly share remote hosts, aliases, toolchain definitions, embedded packages, quick debug settings and common preferences to all computers using the same shared settings directory.

Configure team settings on your TFS build server and never experience the need to manually keep the global settings up-to-date.

Powerful Custom Actions

Customize the building, cleaning, loading and debugging experience of your projects with a library of powerful custom actions for running commands, synchronizing files or folders or setting context-specific variables.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/344255.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【C++】关键字、命名空间、输入和输出、缺省参数、函数重载

C关键字(C98)命名空间产生背景命名空间定义命名空间使用输入&输出缺省参数什么叫缺省参数缺省参数分类函数重载函数重载概念C支持函数重载的原理--名字修饰C关键字(C98) C总计63个关键字,C语言32个关键字。 下面我们先看一下C有多少关键字,不对关键…

Linux 解压JAR包 查看class内容

快速解决方案 查询class相对路径:jar tf test.jar | grep "test.class"单独解压class文件:jar xvf test.jar com/test/test.class查看class文件内容:javap -c com/test/test.class 背景 服务运行后,日志打印出来发现…

【taichi】利用 taichi 编写深度学习算子 —— 以提取右上三角阵为例

本文以取 (bs, n, n) 张量的右上三角阵并展平为向量 (bs, n*(n1)//2)) 为例,展示如何用 taichi 编写深度学习算子。 如图,要把形状为 (bs,n,n)(bs,n,n)(bs,n,n) 的张量,转化为 (bs,n(n1)2)(bs,\frac{n(n1)}{2})(bs,2n(n1)​) 的向量。我们先写…

各种素材网站大全【全部倾倒,福利倒计时-JS,HTML,游戏素材,UI,图片素材等

👨‍💻个人主页:元宇宙-秩沅 hallo 欢迎 点赞👍 收藏⭐ 留言📝 加关注✅! 本文由 秩沅 原创 收录于专栏:解忧杂货铺 ⭐各种素材网站大全⭐ 文章目录⭐各种素材网站大全⭐🎶大家必逛的四大天王…

STM32F769BIT6微控制器STM32F769IGT6详细规格

说明STM32F7 32 位 MCUFPU 基于高性能的 ARMCortex-M7 32 位 RISC 内核,工作频率高达 216MHz。Cortex-M7 内核具有单浮点单元(SFPU)精度,支持所有 ARM 单精度数据处理指令与数据类型。同时执行全套 DSP 指令和存储保护单元(MPU)&a…

JVM02类加载子系统

1. 加载阶段 通过一个类的全限定名获取定义此类的二进制字节流 将这个字节流所代表的静态存储结构转化为方法区的运行时数据结构 在内存中生成一个代表这个类的java.lang.Class对象,作为方法区这个类的各种数据的访问入口 加载class文件的方式 从本地系统中直接…

六、HTTP 首部字段

HTTP 首部字段 一、HTTP 报文首部 HTTP 请求报文由方法、URI、HTTP 版本、HTTP 首部字段等部分构成。 HTTP 响应报文由HTTP版本、状态码(数字和原因短语)、HTTP首部字段3部分构成。 HTTP 协议的请求和响应报文中必定包含 HTTP 首部。首部内容为客户端…

TensorRT如何工作

TensorRT如何工作 本章提供了有关 TensorRT 工作原理的更多详细信息。 文章目录TensorRT如何工作5.1. Object Lifetimes5.2. Error Handling and Logging5.3 Memory5.3.1. The Build Phase5.3.2. The Runtime Phase5.4. Threading5.5. Determinism5.1. Object Lifetimes Tenso…

ChatGPT通俗导论:从RL之PPO算法、RLHF到GPT-N、instructGPT

前言 自从我那篇BERT通俗笔记一经发布,然后就不断改、不断找人寻求反馈、不断改,其中一位朋友倪老师(之前我司NLP高级班学员现课程助教老师之一)在谬赞BERT笔记无懈可击的同时,给我建议到,“后面估计可以尝试尝试在BERT的基础上…

MACD多周期共振指标公式,日周月共振

有人问多周期MACD怎么写,编写指标的难度其实不大,主要问题是解决多周期MACD显示的问题。日线、周线、月线三个周期,每个周期都有快线DIF和慢线DEA两条线,一共6条,怎么在副图上清晰显示出来。 一、MACD多周期共振指标公…

第三章SpringBoot配置文件

文章目录什么是配置文件比如我们的QQ的配置文件配置文件作用SpringBoot配置文件的格式Spring Boot 配置文件主要分为以下两种格式properties 配置文件说明properties 基本语法properties 缺点分析yml 配置文件yml概述yml基础语法读取配置文件Value 注解使用“${}”的格式读取Co…

深度使用国产Bg-Tinkle数据库客户端—太赞了,居然还集成chatGPT AI生成SQL

软件概述数据库客户端软件是一种用于连接、管理和操作数据库的软件。它通常与数据库管理系统(DBMS)配合使用,允许用户在其上执行SQL 语句、浏览数据库中的数据、执行备份和恢复操作以及执行其他管理任务。常见的数据库客户端软件包括 MySQL W…

攻防世界-Confusion1

题目 访问题目场景 某天,Bob说:PHP是最好的语言,但是Alice不赞同。所以Alice编写了这个网站证明。在她还没有写完的时候,我发现其存在问题。(请不要使用扫描器) 然后结合图片我们知道,这个网址是python写的&#xff0…

有序表(上)

文章目录1、引入2、左旋和右旋3、AVL树3.1 AVL 树的平衡条件3.2 搜索二叉树如何删除节点3.3 AVL树的平衡性被破坏的四种类型3.4 AVL 树平衡性如何检查?如何调整失衡?3.4.1 AVL树新增节点如何检查树的平衡性?3.4.2 AVL树删除节点如何检查树的平…

学习笔记:Java 并发编程⑥_并发工具_JUC

若文章内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系博主删除。 视频链接:https://www.bilibili.com/video/av81461839配套资料:https://pan.baidu.com/s/1lSDty6-hzCWTXFYuqThRPw&am…

4. 寻找两个正序数组的中位数(数组)

文章目录题目描述方法一,重组排序方法二,调用系统函数题目描述 给定两个大小分别为 m 和 n 的正序(从小到大)数组 nums1 和 nums2。请你找出并返回这两个正序数组的 中位数 。 算法的时间复杂度应该为 O(log (mn)) 。 示例 1: 输入&#…

最全面的SpringBoot教程(五)——整合框架

前言 本文为 最全面的SpringBoot教程(五)——整合框架 相关知识,下边将对SpringBoot整合Junit,SpringBoot整合Mybatis,SpringBoot整合Redis等进行详尽介绍~ 📌博主主页:小新要变强 的主页 &…

回归预测 | MATLAB实现NGO-LSTM北方苍鹰算法优化长短期记忆网络多输入单输出

回归预测 | MATLAB实现NGO-LSTM北方苍鹰算法优化长短期记忆网络多输入单输出 目录回归预测 | MATLAB实现NGO-LSTM北方苍鹰算法优化长短期记忆网络多输入单输出预测效果基本介绍程序设计参考资料预测效果 基本介绍 Matlab实现NGO-LSTM北方苍鹰算法优化长短期记忆网络多输入单输出…

聚观早报 |阿里清空印度支付宝Paytm股票;Meta终于成功收购Within

今日要闻:全球多所学校禁止学生使用ChatGPT;阿里清空印度支付宝Paytm股票;Meta终于成功收购Within;极氪完成 7.5 亿美元 A 轮融资;现代汽车在美电动汽车销量突破10万全球多所学校禁止学生使用ChatGPT 2月12日消息&…

关于北京君正:带ANC的2K网络摄像头用户案例

如果远程办公是您的未来,或者您经常通过视频通话与远方的朋友和亲戚交谈,那么您可以考虑购买网络摄像头以显著改善您的沟通。Anker PowerConf C200是个不错的选择。 Anker PowerConf C200专为个人工作空间而设计,能够以每秒30帧的速度拍摄2K…