support

Forum Replies Created

Viewing 15 posts - 6,766 through 6,780 (of 7,727 total)
  • Author
    Posts
  • in reply to: STM32CubeMx Project with VisualGDB? #6681
    support
    Keymaster

    Hi,

    We have simplified the integration with STM32CubeMX in VisualGDB 5.0 Beta 3 and added a detailed tutorial showing how to use it: http://visualgdb.com/tutorials/arm/stm32/cube/

    in reply to: problems with cross-complie visualgdb and QT base #6679
    support
    Keymaster

    Do those files (e.g. libSM.so.6) exist in your toolchain’s sysroot? If yes, what is the directory containing them?

    support
    Keymaster

    Hi,

    Please try adding the flags directly to the targets and target templates, e.g.:

    $(BINARYDIR)/%.o : %.cpp $(all_make_files) |$(BINARYDIR)
        $(CXX) $(CXXFLAGS) -c $< -o $@ -MD -MF $(@:.o=.dep) <add your flags here>

     

    in reply to: VisualGDB with QT issue #6673
    support
    Keymaster

    Looks like you are missing some libraries in your project properties. Search the sysroot\usr\lib directory for files containing the undefined symbols from the error message and add the found library names (without ‘lib’ prefix and extension) to the library list in VisualGDB Project Properties.

    Regarding real-time IntelliSense, you can try enabling Tools->Options->C/C++(VisualGDB)->Advanced->Code Completion->Suggest names while typing. If this is not what you meant, please provide us with a better example of what you are trying to achieve.

    in reply to: Number of Machines #6672
    support
    Keymaster

    Please contact our sales at sales@sysprogs.com for details about the number of machines.

    in reply to: clr #6671
    support
    Keymaster

    The Visual Studio compiler and GCC are not 100% compatible when it comes to complex C++ templates. You may need to adjust your code so that both compilers can handle this (the problem is well-known, so googling for specific errors should easily get the fixing instructions).

    You can specify -std=c++11 or -std=c++14 in CFLAGS on the Makefile Settings page of VisualGDB Project Properties.

    in reply to: gdb project can't see file #6670
    support
    Keymaster

    Hi,

    Please add the directory containing the missing header file to the “Include Directories” field on the Makefile Settings page of VisualGDB Project Properties. Adding the file to the Solution Explorer simply makes it easier to open, but does not affect search paths used by the #include<> directives.

    in reply to: Incorrect syntax highlighting (VS Dark Theme) #6669
    support
    Keymaster

    Yes, this has been fixed in Beta 3.

    in reply to: Various problems with Android NDK #6668
    support
    Keymaster

    Hi,

    Please ensure that the jni folder is located directly inside the “C:\Users\nzmora\AndroidStudioProjects\CameraProcessor\app” folder.

    If this does not help, please share a tree of all files (cmd /c tree /f > tree.txt) in the project directory.

    in reply to: rm, cp #6667
    support
    Keymaster

    This does not indicate an error. It just means that those tools are not present in your toolchain and VisualGDB will use the Windows equivalents. In fact, VisualGDB 5.0+ does not show the ‘X’ even if the tools are missing, as this sometimes causes confusion.

    in reply to: Display Pointer as Array? #6666
    support
    Keymaster

    Hi,

    VisualGDB uses a different syntax for displaying pointers as arrays. Please use the following expression:

    *foo@length
    in reply to: Unable to create remote project #6665
    support
    Keymaster

    Most likely the problem happens because Visual Studio confuses some of the files downloaded from the remote machine with its own project files and refuses to create the project.

    Please share the following:

    • The exact directory of your project and the project name
    • The screenshot of the message
    • The contents of the directory when Visual Studio shows the error message

    This should help us understand which files could be interfering with Visual Studio project creation.

    in reply to: nordic mcu package #6640
    support
    Keymaster

    Hi,

    Actually one of our customers has contributed a package already and we are currently reviewing it and will be publishing an official one within the next few months.

    We can provide you with the current version on the “as is” basis if you want to try it. Please email our support to get a download link.

    in reply to: Synchronize header and libraries error #6638
    support
    Keymaster

    Looks like the first problem is caused by some broken symlinks on the Linux side. You can investigate this by running “ls -l” in the target directory and checking that all symlink targets exist.

    The glibc problem can be caused by incompatibility between your toolchain and the system image. Please try the instructions described here: http://sysprogs.com/w/forums/topic/raspberrypi-undefined-reference-to-clock_gettimeglibc_2-17/

    in reply to: Deliver additional files #6625
    support
    Keymaster

    Hi,

    VisualGDB Linux edition can only upload sources from one directory (with arbitrary subdirectories), so you can simply change the source directory to point to the parent one if that helps. If your source files are scattered around several directories, you would need additional file transfer actions that are available in the Custom edition and higher.

    Note that if you have purchased a license recently, you can upgrade from Linux to Custom for just the price difference.

Viewing 15 posts - 6,766 through 6,780 (of 7,727 total)