support

Forum Replies Created

Viewing 15 posts - 7,261 through 7,275 (of 7,664 total)
  • Author
    Posts
  • in reply to: VisualGD and Android-x86 on VirtualBox #2272
    support
    Keymaster

    Which version of Android are you using and what exact device? It looks like the output of the ps command looks differently from the usual one.

    in reply to: Preprocessor Definitions #2277
    support
    Keymaster

    When you are generating Android projects, the underlying makefile structure is 100% compatible with the classical NDK makefiles and thus adding new preprocessor definitions is done exactly like for the normal NDK projects (see docsandroid-mk.html).

    In your case please add the following text to Android.mk (before the include $(BUILD_SHARED_LIBRARY) line):

    ifeq ($(NDK_DEBUG),1)
    LOCAL_CFLAGS += -DDEBUG
    else
    LOCAL_CFLAGS += -DNDEBUG -DRELEASE
    endif
    

    in reply to: Preprocessor Definitions #2278
    support
    Keymaster

    No problem. The definitions in the Project Settings indeed apply to IntelliSense only. To change the actual definitions, please edit the flags.mak file in the project directory. The default flags.mak file contains the following definitions:

    COMMON_MACROS :=
    DEBUG_MACROS := DEBUG
    RELEASE_MACROS := NDEBUG RELEASE
    

    If it does not help, please rebuild the project and post the entire build log here. It will help understanding why the definitions were not applied.

    in reply to: VisualDDK-1.5.7.exe (target package bug) #2252
    support
    Keymaster

    Fixed. Please download VirtualKD 2.8 and replace the files in VisualDDK folder.

    in reply to: SIGILL when calling ‘step over’ #2255
    support
    Keymaster

    OK, if you encounter the problem again, feel free to submit details so that we can fix it.

    in reply to: [REQUEST] Integrate with vs-android #2264
    support
    Keymaster

    Hi,

    The problem with vs-android is that Google may change some NDK internals one day making the hardcoded settings in vs-android unusable (or even worse, producing some hidden hard-to-pinpoint bugs). If you’re interested, I can instruct you how to configure VisualGDB to debug your vs-android projects.

    in reply to: SIGILL when calling ‘step over’ #2253
    support
    Keymaster

    Hi,

    Which exact Linux version and GDB version are you using?

    in reply to: Starting VisualGDB #2244
    support
    Keymaster

    Please try disabling the firewall on both Windows and Linux.
    If this does not help, please add a separate network card to your VM configured in the Host-only mode.

    in reply to: upgrading 2.3 -> 2.4 #2239
    support
    Keymaster

    Thanks for your appreciation!

    Updating is even easier, you don’t need to uninstall the previous version. Just run the new installer and it will update your files.
    Project folder support will be enabled automatically for all projects, both old and new.

    in reply to: VirtualKD Installation error #2199
    support
    Keymaster

    Please use the tutorial here: http://virtualkd.sysprogs.org/tutorials/install/

    in reply to: Compiler error #2175
    support
    Keymaster

    If you are using BazisLib, please use the npagednew() function. Otherwise, use the ExAllocatePool() API provided by Windows Kernel.

    support
    Keymaster

    Hi,

    That’s the default behavior in Windows Vista and later. Please have a look here: http://www.osronline.com/article.cfm?article=295

    support
    Keymaster

    Hi. Please try the new VisualDDK 1.5.7.

    in reply to: [Android] [fixed] VisualGDB error #2230
    support
    Keymaster

    Please do the following:
    1. Install VisualGDB 2.3 or later.
    2. Install Android NDK r8 or later

    Android NDK r8 fixes the bug by adding SHELL=cmd to the ndk-build.cmd file.
    You can alternatively get a fixed ndk-build.cmd file from here: http://visualgdb.com/KB/ndk-build.zip

    in reply to: cygwin + tar.exe #2236
    support
    Keymaster

    Hi,
    Since VisualGDB 2.4 the external tar.exe is no longer required. Please update your VisualGDB installation.

Viewing 15 posts - 7,261 through 7,275 (of 7,664 total)