support

Forum Replies Created

Viewing 15 posts - 6,031 through 6,045 (of 7,849 total)
  • Author
    Posts
  • in reply to: Highlight issues in Visual Studio's Dark Theme #9231
    support
    Keymaster

    Hi,

    Please try resetting the Visual Studio fonts & colors cache by deleting the HKCU\Software\Microsoft\VisualStudio\14.0\FontsAndColors\Cache key.

    This should force VS to reload the correct colors.

    in reply to: Source path outside project directory. #9230
    support
    Keymaster

    Hi,

    You can try using the tty command.

    in reply to: ESP8266 iram1_0_seg too Large #9220
    support
    Keymaster

    Hi,

    Strange. Could you post the entire error message and a few lines above/below?

    in reply to: Problem with added folder not being sent to build server #9219
    support
    Keymaster

    Hi,

    Yes, the biggest feature from the Custom edition is the integrated unit test support. It also supports advanced real-time watch and many other usability features.

    You can find a full list of the Custom edition features here: http://visualgdb.com/buy/custom

    in reply to: c++ 11 and 14 standard library issues in version 5.2b2 #9218
    support
    Keymaster

    Hi,

    Sorry, checked the std::printf() instead of std::snprintf(). Yes, our toolchain indeed does not have _GLIBCXX_USE_C99 and  _GLIBCXX_USE_C99_MATH_TR1 enabled (which is the default configuration for GCC), so those functions are not available under the std:: namespace.

    You should be still able to use them via the regular C syntax (e.g. snprintf(…) or nanf(…)).

    in reply to: Slow stepping. Here is why I think #9217
    support
    Keymaster

    Hi,

    Sorry, tried reproducing that with “f:\projects\temp\EmbeddedProject-16” and did not get anything to fail. Perhaps the problem is triggered by something else? Could you please clarify which wizard and what other settings were you using?

    The new Beta 2 was indeed not handling relative paths in the “NMake output” properly. We have fixed this in the development branch and will include this fix in Beta 3.

    Can you verify that the Threads window in Visual Studio is closed when you get the multiple ‘-stack-list-frames’ commands?

    in reply to: How to change toolchain to common gcc #9216
    support
    Keymaster

    Hi,

    We have added this feature to the v5.2 version. Please try the latest VisualGDB 5.2 Beta 2. You can switch the toolchain on the Makefile Settings page of your VisualGDB Project Properties.

    in reply to: ESP8266 iram1_0_seg too Large #9204
    support
    Keymaster

    Hi,

    Perhaps this is something auto-generated by the compiler? Please try reverting the settings to a point when the code builds successfully, enable the generation of Map files and check the .map file for any references to ‘_udivmoddi4’. It should mention the .o or .a file that contains the function.

    in reply to: Problem with added folder not being sent to build server #9203
    support
    Keymaster

    Hi,

    You can configure VisualGDB to upload that extra directory by adding a custom pre-build step to your project (requires Custom edition or higher). Alternatively you can create a dummy Linux project that will have that directory selected as the main source directory and won’t actually build anything. Then each time Visual Studio tries to build that project, the directory will be uploaded automatically.

    in reply to: c++ 11 and 14 standard library issues in version 5.2b2 #9202
    support
    Keymaster

    Hi,

    Are you using a toolchain shipped with VisualGDB? If not, your toolchain may be too old and have no support for these functions.

    If yes, please double-check that the <source file name>.gcc.rsp file in the VisualGDB\<configuration> directory contains the -std setting you have selected. If not, please double-check that you have selected it for the correct project configuration.

    in reply to: Problem while including files #9199
    support
    Keymaster

    No problem. Please follow the instructions from the rest of the post in order to resolve this.

    in reply to: Problem while including files #9195
    support
    Keymaster

    Hi,

    Most likely this happens because your LinuxApp project specifies the absolute path to MySharedLib in its settings. This is by design – absolute include paths are treated as system paths and are automatically cached.

    You can override this by adding a custom path mapping in LinuxApp’s VisualGDB Project Properties or by using relative paths in project properties instead.

    Please also note that including the library .cpp files from other .cpp files will not refer to the code in the library, but will instead just copy that code to your application. You can read more about C++ headers and sources here: http://www.cplusplus.com/forum/articles/10627/

    in reply to: regarding c++11 support #9194
    support
    Keymaster

    Hi,

    For release configurations – yes. For debug configurations you should replace -O3 with -O0 as optimized code is hard to debug.

    in reply to: Debugging shared library #9193
    support
    Keymaster

    Hi,

    Yes, that should do. Please upload the files to a file hosting service like dropbox, as our ticket system has an attachment size limit.

    in reply to: What files should go into a repo? #9192
    support
    Keymaster

    Hi,

    You definitely need to check in the .vgdbsettings files as they contain VisualGDB-specific settings. If you are using Make, CMake or QMake, you also need to check in the main project file and the configuration files from that build systems.

Viewing 15 posts - 6,031 through 6,045 (of 7,849 total)