aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/opengl/tests/translator_tests/GLES_V2/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/opengl/tests/translator_tests/GLES_V2/Android.mk')
-rw-r--r--emulator/opengl/tests/translator_tests/GLES_V2/Android.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/emulator/opengl/tests/translator_tests/GLES_V2/Android.mk b/emulator/opengl/tests/translator_tests/GLES_V2/Android.mk
index 504530f..e72da96 100644
--- a/emulator/opengl/tests/translator_tests/GLES_V2/Android.mk
+++ b/emulator/opengl/tests/translator_tests/GLES_V2/Android.mk
@@ -17,9 +17,13 @@ LOCAL_LDLIBS += $(LOCAL_SDL_LDLIBS)
LOCAL_STATIC_LIBRARIES += libSDL libSDLmain
ifeq ($(HOST_OS),darwin)
- # OS X 10.6+ needs to be forced to link dylib to avoid problems
- # with the dynamic function lookups in SDL 1.2
- LOCAL_LDLIBS += /usr/lib/dylib1.o
+ # SDK 10.6+ deprecates __dyld_func_lookup required by dlcompat_init_func
+ # in SDL_dlcompat.o this module depends. Instruct linker to resolved it at runtime.
+ OSX_VERSION_MAJOR := $(shell echo $(mac_sdk_version) | cut -d . -f 2)
+ OSX_VERSION_MAJOR_GREATER_THAN_OR_EQUAL_TO_6 := $(shell [ $(OSX_VERSION_MAJOR) -ge 6 ] && echo true)
+ ifeq ($(OSX_VERSION_MAJOR_GREATER_THAN_OR_EQUAL_TO_6),true)
+ LOCAL_LDLIBS += -Wl,-undefined,dynamic_lookup
+ endif
$(call emugl-import,libMac_view)
endif