The problem appeared when I try to compile a example project in the following steps…
…/…/…/libs/openFrameworksCompiled/project/makefileCommon/config.shared.mk:81: *** This makefile does not support your operating system. Stop.
In config.shared.mk, I can see this bifucation…
But I don’t understand why I can’t compile…
# if not defined, construct the default PLATFORM_LIB_SUBPATH
ifndef PLATFORM_LIB_SUBPATH
# determine from the arch
ifeq ($(PLATFORM_OS),Linux)
ifeq ($(PLATFORM_ARCH),x86_64)
PLATFORM_LIB_SUBPATH=linux64
else ifeq ($(PLATFORM_ARCH),armv6l)
PLATFORM_LIB_SUBPATH=linuxarmv6l
else ifeq ($(PLATFORM_ARCH),armv7l)
PLATFORM_LIB_SUBPATH=linuxarmv7l
else ifeq ($(PLATFORM_ARCH),i386)
PLATFORM_LIB_SUBPATH=linux
else ifeq ($(PLATFORM_ARCH),i686)
PLATFORM_LIB_SUBPATH=linux
else
$(error This makefile does not support your architecture $(PLATFORM_ARCH))
endif
else ifeq ($(PLATFORM_OS),Android)
PLATFORM_LIB_SUBPATH=android
else ifeq ($(PLATFORM_OS),Darwin)
PLATFORM_LIB_SUBPATH=osx
else
$(error This makefile does not support your operating system)
endif
endif
More Infomation:
My OS: Windows 7 (x64)
SDK Android: 32 bits
NDK Android: 32 bits
SDK Java: 32 bits
OF: 0.8.0 version
i have the same problem with android, i have tried many things, but I think from what I have read it is something with the toolchain I have windows 7 x64 that is what throws me when I build the project openframworks, I have reviewed the routes of the NDK and the SDK and I see no problem apparently, thanks in advance who I can collaborate.
for this error, i just manually rename the folder D:/android-ndk-r9b/toolchains/arm-linux-androideabi-4.8.1/prebuilt/windows-x86_64 to windows. and it works. now under openFrameworksCompiled\lib\android i have armv5, armv7, neon. under each folder i have libopenFrameworks.a. however, when i try to compile an example, i get an error saying: …/…/…/libs/openFrameworksCompiled/project/makefileCommon/config.shared.mk:81: *** This makefile does not support your operating system.
I’m not sure if I’m talking bs here, but on my system (Win8.1) I can install Apps on my phone with Run -> Run As -> Android Application.
I had the same problem before. Now I can at least get the apps on my phone, altough they’re crashing instantly. ^^