2015-06-21 09:33:46 -06:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
###########################
|
|
|
|
#
|
|
|
|
# SDL shared library
|
|
|
|
#
|
|
|
|
###########################
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2022-11-21 21:28:58 -07:00
|
|
|
LOCAL_MODULE := SDL3
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-29 19:34:15 -07:00
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include $(LOCAL_PATH)/src
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-22 10:35:49 -07:00
|
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(subst $(LOCAL_PATH)/,, \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/audio/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/audio/android/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/audio/dummy/*.c) \
|
2021-04-15 13:03:10 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/audio/aaudio/*.c) \
|
2019-01-12 13:18:44 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/audio/openslES/*.c) \
|
2017-02-10 12:21:15 -07:00
|
|
|
$(LOCAL_PATH)/src/atomic/SDL_atomic.c.arm \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(LOCAL_PATH)/src/atomic/SDL_spinlock.c.arm \
|
2024-02-17 22:50:32 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/camera/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/camera/android/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/camera/dummy/*.c) \
|
2023-09-26 22:11:09 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/core/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/core/android/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/cpuinfo/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/dynapi/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/events/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/file/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/haptic/*.c) \
|
2017-08-12 09:15:09 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/haptic/android/*.c) \
|
2021-11-07 23:58:44 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/hidapi/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/hidapi/android/*.cpp) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/joystick/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/joystick/android/*.c) \
|
2018-08-09 17:00:17 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/joystick/hidapi/*.c) \
|
2020-04-13 20:17:28 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/joystick/virtual/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/loadso/dlopen/*.c) \
|
2020-05-04 00:27:29 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/locale/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/locale/android/*.c) \
|
2024-02-13 14:15:59 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/main/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/main/generic/*.c) \
|
2020-10-05 09:30:33 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/misc/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/misc/android/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/power/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/power/android/*.c) \
|
2024-03-16 09:15:13 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/filesystem/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/filesystem/android/*.c) \
|
2024-03-16 09:15:13 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/filesystem/posix/*.c) \
|
2018-08-21 13:11:34 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/sensor/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/sensor/android/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/render/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/render/*/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/stdlib/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/thread/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/thread/pthread/*.c) \
|
Add time and realtime clock functions
Adds functions to query the system's realtime clock, convert time intervals to/from a calendar date and time in either UTC or the local time, and perform time related calculations.
An SDL_Time type (a time interval represented in nanoseconds), and SDL_DateTime struct (broken down calendar date and time) were added to facilitate this functionality.
Querying the system time results in a value expressed in nanoseconds since the Unix epoch (Jan 1, 1970) in UTC +0000. Conversions to and from the various platform epochs and units are performed when required.
Any direct handling of timezones and DST were intentionally avoided. The offset from UTC is provided when converting from UTC to a local time by calculating the difference between the original UTC and the resulting local time, but no other timezone or DST information is used.
The preferred date formatting and 12/24 hour time for the system locale can be retrieved via global preferences.
Helper functions for obtaining the day of week or day or year for calendar date, and getting the number of days in a month in a given year are provided for convenience. These are simple, but useful for performing various time related calculations.
An automated test for time conversion is included, as is a simple standalone test to display the current system date and time onscreen along with a calendar, the rendering of which demonstrates the use of the utility functions (press up/down to increment or decrement the current month, and keys 1-5 to change the date and time formats).
2024-02-29 11:06:26 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/time/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/time/unix/*.c) \
|
2015-06-21 09:33:46 -06:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/timer/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/timer/unix/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/video/*.c) \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/video/android/*.c) \
|
2023-01-25 11:16:24 -07:00
|
|
|
$(wildcard $(LOCAL_PATH)/src/video/yuv2rgb/*.c))
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES
|
2018-11-02 18:18:03 -06:00
|
|
|
LOCAL_CFLAGS += \
|
|
|
|
-Wall -Wextra \
|
|
|
|
-Wmissing-prototypes \
|
|
|
|
-Wunreachable-code-break \
|
|
|
|
-Wunneeded-internal-declaration \
|
|
|
|
-Wmissing-variable-declarations \
|
|
|
|
-Wfloat-conversion \
|
|
|
|
-Wshorten-64-to-32 \
|
2019-08-30 00:43:13 -06:00
|
|
|
-Wunreachable-code-return \
|
|
|
|
-Wshift-sign-overflow \
|
|
|
|
-Wstrict-prototypes \
|
|
|
|
-Wkeyword-macro \
|
|
|
|
|
2018-11-02 18:18:03 -06:00
|
|
|
# Warnings we haven't fixed (yet)
|
|
|
|
LOCAL_CFLAGS += -Wno-unused-parameter -Wno-sign-compare
|
|
|
|
|
2023-06-04 00:55:56 -06:00
|
|
|
LOCAL_CXXFLAGS += -std=gnu++11
|
|
|
|
|
2019-01-12 13:18:44 -07:00
|
|
|
LOCAL_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -lOpenSLES -llog -landroid
|
2015-06-21 09:33:46 -06:00
|
|
|
|
build: add symbol versioning for SDL
If a program built against one version of SDL is run in an
environment where there is an earlier version of the SDL .so library
installed, the result varies depending on platform configuration; in
the best case, it won't start at all, at worst it aborts in the
middle of the user doing "something important" (systems implementing
lazy symbol resolution). verdefs on the other hand are always checked
on startup.
The dependency information present in programs and shared libraries
is not only of value to the dynamic linker, but also to a
distribution's package management. If the dynamic linker is able to
tell that a program is not runnable per the above, a package manager
is able to come to the same conclusion — and block the installation
of a nonfunctional program+library ensemble.
Because there are a lot more symbols than there are libraries (I am
going to throw in "10^4 to 1 or worse"), package managers generally
do not evaluate symbols, but only e.g. the SONAME, NEEDED and VERNEED
fields/blocks. Because the SONAME is the same between two SDL
versions like 2.0.24, and 2.0.26, everything rests on having verdefs.
This patch proposes the addition of verdefs.
2022-11-24 12:58:10 -07:00
|
|
|
LOCAL_LDFLAGS := -Wl,--no-undefined -Wl,--version-script=$(LOCAL_PATH)/src/dynapi/SDL_dynapi.sym
|
2022-06-18 04:54:18 -06:00
|
|
|
|
2018-06-24 13:21:01 -06:00
|
|
|
ifeq ($(NDK_DEBUG),1)
|
|
|
|
cmd-strip :=
|
|
|
|
endif
|
2017-12-16 11:40:41 -07:00
|
|
|
|
2018-12-01 10:19:11 -07:00
|
|
|
LOCAL_STATIC_LIBRARIES := cpufeatures
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
2022-09-30 12:51:11 -06:00
|
|
|
|
2023-01-25 11:16:24 -07:00
|
|
|
###########################
|
|
|
|
#
|
|
|
|
# SDL_test static library
|
|
|
|
#
|
|
|
|
###########################
|
|
|
|
|
|
|
|
LOCAL_MODULE := SDL3_test
|
|
|
|
|
|
|
|
LOCAL_MODULE_FILENAME := libSDL3_test
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(subst $(LOCAL_PATH)/,, \
|
|
|
|
$(wildcard $(LOCAL_PATH)/src/test/*.c))
|
|
|
|
|
|
|
|
LOCAL_LDLIBS :=
|
|
|
|
|
|
|
|
LOCAL_LDFLAGS :=
|
|
|
|
|
|
|
|
LOCAL_EXPORT_LDLIBS :=
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
###########################
|
|
|
|
#
|
|
|
|
# SDL static library
|
|
|
|
#
|
|
|
|
###########################
|
|
|
|
|
2022-11-21 21:28:58 -07:00
|
|
|
LOCAL_MODULE := SDL3_static
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-21 21:28:58 -07:00
|
|
|
LOCAL_MODULE_FILENAME := libSDL3
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-06-18 04:54:18 -06:00
|
|
|
LOCAL_LDLIBS :=
|
|
|
|
|
|
|
|
LOCAL_LDFLAGS :=
|
|
|
|
|
2017-08-30 15:25:01 -06:00
|
|
|
LOCAL_EXPORT_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -llog -landroid
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
2017-08-13 18:59:59 -06:00
|
|
|
|
2018-12-01 10:19:11 -07:00
|
|
|
$(call import-module,android/cpufeatures)
|
2023-01-25 11:16:24 -07:00
|
|
|
|