support

Forum Replies Created

Viewing 15 posts - 7,396 through 7,410 (of 7,819 total)
  • Author
    Posts
  • in reply to: add support for auto update project file #2259
    support
    Keymaster

    There are many ways in which the source files can be listed in a Makefile and no possible way to support all of them.
    Are you using VisualGDB-generated makefiles or your own makefile layout?

    in reply to: "Object reference not set to an instance of an object." #2364
    support
    Keymaster

    Hi,

    Please change the configuration type to “Makefile project” in Visual Studio project properties (not VisualGDB project properties).

    in reply to: add support for auto update project file #2260
    support
    Keymaster

    Hi,

    That is by design, as VisualGDB cannot distinguish between source files added by someone else and generated files or temporary files.
    Note that this should not stop VisualGDB from building and debugging the project correctly if the Makefile was updated by the person adding a new source file.

    in reply to: Ant environment variables not set #2354
    support
    Keymaster

    Hi,

    Thanks for reporting this problem. Currently VisualGDB does not set ANDROID_SDK_ROOT. You can fix it by setting the variable before running Visual Studio: e.g. make a bat file containing the following lines:

    
    set ANDROID_SDK_ROOT=C:PROGRA~2Androidandroid-sdk
    "C:Program Files (x86)Microsoft Visual Studio 10.0Common7IDEdevenv.exe"
    

    We will add the ANDROID_SDK_ROOT support to the next version of VisualGDB.

    in reply to: VGDB and android #2353
    support
    Keymaster

    Hi,

    You can specify additional parameters to make by right-clicking on the project in Solution Explorer, selecting “VisualGDB Project Properties” and specifying additional ndk-build arguments. The ndk-build.cmd is currently fixed and cannot be changed via settings. If you want to use a custom build script instead, please write a letter to support@sysprogs.com, we’ll send you a custom build that can do it.

    in reply to: Debugger Detached? #2405
    support
    Keymaster

    As mentioned before, please send us the GDB log so that we can actually see what’s happening and give you more advice

    in reply to: Debugger Detached? #2403
    support
    Keymaster

    Hi,

    That’s strange. Uninstalling the app should normally reset the state.
    As mentioned before, please send us the GDB log so that we can actually see what’s happening and give you more advice.

    in reply to: Debugger Detached? #2401
    support
    Keymaster

    Hi,
    There’s a bug in the NDK version of GDB that causes breakpoint problems. VisualGDB fixes it for obvious cases like the JNI directory, but probably does not fix it for your project.
    Please open the GDB Session window, select “All interaction with GDB” and try settings your breakpoints. Then send us (or post here) the contents of the GDB Session window. It will contain the GDB commands and replies related to the breakpoints and will help us determine why your breakpoints are not working.

    You can also try executing the “sharedlibrary” and “info shared” commands in the GDB session window to ensure that your symbols are loaded correctly.

    in reply to: Debugging Problems #2309
    support
    Keymaster

    We have fixed the VS2012 compatibility issues in VisualGDB 2.7

    in reply to: VisualGDB: post-compile error #2367
    support
    Keymaster

    Hi,

    You can fix this by adding the following line to Android.mk just before the “include $(BUILD_SHARED_LIBRARY)” line:

    LOCAL_SHORT_COMMANDS := true
    in reply to: VisualGDB: cannot build Android native library #2295
    support
    Keymaster

    Hi,

    Sorry for the late reply.
    VisualGDB cannot start debugging because the NDK build system fails to include gdbserver[/b[ into the application package. It might be related to your build problem.
    Does the “*** target pattern contains no `%’.” message always appear? Does reinstalling NDK help?

    in reply to: VisualGDB: cannot build Android native library #2296
    support
    Keymaster

    Looks like some old version of make.exe gets invoked. Could you please paste the entire build log here?

    in reply to: Debugging Problems #2310
    support
    Keymaster

    We are currently working on resolving VS2012 compatibility issues. Does the debugging work with VS2010?

    in reply to: GDB server terminated unexpectedly #2411
    support
    Keymaster

    Hi,
    It’s a bug of the Android run-as tool. See this page for possible workarounds.

    in reply to: How to create static library project? #2365
    support
    Keymaster

    Do you mean an Android static library or a Linux/embedded static library?

Viewing 15 posts - 7,396 through 7,410 (of 7,819 total)