Android ndk-build not generating gdb.setup file

Hi,

I am currently trying to debug native code in Android via ndk-gdb but I am having some troubles. Even if I create a new cocos project with “cocos new…” and then try to compile with in debug mode " cocos compile -p android -m debug --ndk-mode NDK_DEBUG=1" my folder structure ends up like this:

...
libs/
    armeabi/
        libcocos2dcpp.so
...

instead of this:

...
libs/
    armeabi/
        gdb.setup
        gdbserver
        libcocos2dcpp.so
...

In order to use ndk-gdb I need those two gdb files.

I am using cocos version 3.2 and NDK version r9d.

I know that is probably some problem with NDK but I was wondering if someone had the same problem.