Android executable doesn't run on an arm9 processor board

102 Views Asked by At

I created a sample Android executable using an Android.mk file and the ndk-build command. It runs successfully on an arm8 processor board. It doesn't run on an arm9 processor board. Why?

#include <stdio.h>

int main()
{
printf("Hai\n");
return 0;
}

Android.mk consist the following commands

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := Test

LOCAL_SRC_FILES := Test.c

include $(BUILD_EXECUTABLE)
0

There are 0 best solutions below