I have updated NDK to r9c from r8e and got error No rule to make target
make.exe: *** No rule to make target `/bullet/src/LinearMath/btAlignedAllocator.
cpp', needed by `obj/local/armeabi/objs/main_soft//bullet/src/LinearMath/btAlign
edAllocator.o'. Stop.
Previously my configure files were Ok and I just switched NDK version.
Android.mk line that adds that file. Files added before that line were Ok.
LOCAL_SRC_FILES := src/maincode.cpp
LOCAL_SRC_FILES += src/data/Friends.cpp
LOCAL_SRC_FILES += $(addprefix /bullet/src/LinearMath/, $(notdir $(wildcard $(LOCAL_PATH)/bullet/src/LinearMath/*.cpp)))
Your other files start without slash. Try
LOCAL_SRC_FILES += $(addprefix bullet/src/LinearMath/, $(notdir $(wildcard $(LOCAL_PATH)/bullet/src/LinearMath/*.cpp)))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With