1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Add COMMON_LDFLAGS to Android makefiles

This commit is contained in:
Logan McNaughton 2017-06-21 15:47:56 -06:00 committed by Sergey Lipskiy
parent 3e4a499a9b
commit 8d519e03df
3 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,7 @@ LOCAL_CFLAGS := \
#-DSDL_NO_COMPAT \
LOCAL_CPPFLAGS := $(COMMON_CPPFLAGS) -std=c++11 -fexceptions
LOCAL_LDFLAGS := $(COMMON_LDFLAGS)
LOCAL_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)

View File

@ -123,7 +123,7 @@ MY_LOCAL_CFLAGS := \
MY_LOCAL_CPPFLAGS := $(COMMON_CPPFLAGS) -std=c++11 -g
MY_LOCAL_LDFLAGS := -Wl,-version-script,$(LOCAL_PATH)/$(SRCDIR)/mupenplus/video_api_export.ver
MY_LOCAL_LDFLAGS := $(COMMON_LDFLAGS) -Wl,-version-script,$(LOCAL_PATH)/$(SRCDIR)/mupenplus/video_api_export.ver
MY_LOCAL_LDLIBS := -llog -latomic -lEGL

View File

@ -23,5 +23,6 @@ LOCAL_CFLAGS := \
#-DSDL_NO_COMPAT \
LOCAL_CPPFLAGS := $(COMMON_CPPFLAGS) -std=c++11 -g -fexceptions
LOCAL_LDFLAGS := $(COMMON_LDFLAGS)
include $(BUILD_SHARED_LIBRARY)