support

Forum Replies Created

Viewing 15 posts - 5,656 through 5,670 (of 7,815 total)
  • Author
    Posts
  • in reply to: GCC from command line #10192
    support
    Keymaster

    Hi,

    Yes, that can be indeed tricky, but VisualGDB should normally be able to setup everything automatically so you wouldn’t need to worry about complex toolchain issues.

    in reply to: xming performance and user variables #10191
    support
    Keymaster

    Hi,

    It is hard to say why X11 is slow. VisualGDB simply uses the libssh2 library to forward X11 traffic inside the SSH channel, so this definitely adds compression and encryption. Perhaps this is responsible for slowdowns as well. By setting DISPLAY to hostname:0.0 you instruct the graphical applications to connect directly to your Windows PC, so as long as your firewall supports it, this should work as well and may be faster.

    The XML errors you mentioned should definitely not happen, so feel free to post details here so that we could investigate and fix them.

    in reply to: Suggestion for project properties #10190
    support
    Keymaster

    Hi,

    Unfortunately this is currently not possible as VisualGDB uses rich GUI to present various settings (e.g. command lists) and merging settings from different configurations there would greatly overcomplicate the design. The only workaround we could offer is to programmatically edit the .vgdbsettings files.

    in reply to: Problem opening file #10185
    support
    Keymaster

    Hi,

    You may have purchased the Linux edition then. You can always upgrade it here: https://sysprogs.com/splm/mykey

    Also if you don’t need to copy this file each time, you can simply upload it once with SmarTTY and keep on using the Linux edition.

    in reply to: Problem opening file #10183
    support
    Keymaster

    Hi,

    If you want to upload a text file to the target before debugging, you can add a new upload action to the custom pre-debug actions on the Debug Customization page of VisualGDB Project Properties (requires Custom edition or higher).

    in reply to: xming performance and user variables #10179
    support
    Keymaster

    Hi,

    First of all, please try the latest VisualGDB 5.2, as it contains fixes for many issues found in v5.1.

    The behavior you described with deleting .user files looks like a bug. Please check if you can still reproduce it with v5.2. If yes, please let us know the steps to reproduce it and we will investigate it.

    in reply to: Reindexing from scratch way too often #10178
    support
    Keymaster

    Hi,

    Most likely either you modify some global header file used by all other headers, or VisualGDB believes it is modified and does a full rebuild.

    Please try opening the Clang IntelliSense Diagnostics Console and check for messages like thi:

    [+0:00:33.084] Found an outdated PSF 0 due to <file> during initial check. It will be re-built

    It should explain why VisualGDB reparses the files.

    The Error List behavior is by design – showing all errors from the entire project would require constantly rebuilding all the files in the background. Currently VisualGDB only does that when you use the ‘Go to definition’ or ‘Find all references’ commands.

    in reply to: "Show All Files" squashes folders #10177
    support
    Keymaster

    Hi,

    VisualGDB should not interfere with this command. If you believe it does, please try reproducing this with one VisualGDB-based and one non-VisualGDB based projects and post screenshots here. We should be able to investigate it based on that.

    in reply to: GCC from command line #10176
    support
    Keymaster

    Hi,

    Yes, it is a regular ARM GCC toolchain, so you can use it to build any project designed for that type of toolchain.

    We don’t provide any support on using the toolchain outside VisualGDB though, as there are too many things that can go wrong.

    support
    Keymaster

    Hi,

    This error does not look like anything related to VisualGDB, so something else is most likely causing this.

    Can you see any specific pattern that leads to the exit? What happens if you attach another instance of VS to your primary one, do you get an ‘unhandled exception’ message?

    in reply to: nRF52 conversion to standalone fails #10167
    support
    Keymaster

    Hi,

    Are you using the Custom edition or higher? If you were using a lower edition, the button would be disabled and would not work.

    in reply to: Older BSP for NRF SDK 11 #10164
    support
    Keymaster

    Hi,

    Yes, we have previously used a different versioning scheme. Please try downloading the v3.0 BSP.

    in reply to: How do I search these forums? #10159
    support
    Keymaster

    Hi,

    No problem. BTW, if you cannot find a solution quickly, feel free to open a new topic and we will help you resolve the problems you encountered.

    in reply to: Enable python scripting for GDB #10158
    support
    Keymaster

    Hi,

    The watch window contents looks normal. The [actual members] element is shown by VisualGDB in case you want to debug some low-level issues. If no other elements are shown, the list is most likely empty. If you can confirm that adding elements to the list still does not change the view, please attach an updated screenshot (code for adding elements + watch window contents) so that we can investigate this further.

    in reply to: ESP32 Variable Watch during Debugging #10156
    support
    Keymaster

    Hi,

    This is a known limitation of the ESP32 toolchain. To work around this, please wrap your function call with another one, e.g.:

    void ThreadBodyWrapper()
    {
        ThreadBody();
    }

    As long as the esp32 gdb can see the previous frame (ThreadBodyWrapper), it will be able to show the variable values in the current frame (ThreadBody).

Viewing 15 posts - 5,656 through 5,670 (of 7,815 total)