STLPort inside NDK R5 crashes when accessing stdout the smae way as mine built-in STLPort, but I have the possibility to change my own STLPort sources
This reverts commit 4a02eeeded.
17 lines
455 B
Makefile
17 lines
455 B
Makefile
# If SDL_Mixer should link to libMAD
|
|
SDL_MIXER_USE_LIBMAD :=
|
|
ifneq ($(strip $(filter mad, $(COMPILED_LIBRARIES))),)
|
|
SDL_MIXER_USE_LIBMAD := 1
|
|
endif
|
|
|
|
ifneq ($(findstring -crystax,$(TARGET_CC)),)
|
|
$(info Building with CrystaX toolchain - RTTI and exceptions enabled, STLPort disabled)
|
|
CRYSTAX_TOOLCHAIN = 1
|
|
endif
|
|
ifneq ($(findstring android-ndk-r5,$(TARGET_CC)),)
|
|
$(info Building with NDK r5)
|
|
NDK_R5_TOOLCHAIN = 1
|
|
endif
|
|
|
|
include $(call all-subdir-makefiles)
|