From 1850da14653e2d2419ec1d08c25bcb88d0c96b98 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 13 Mar 2017 16:54:02 -0700 Subject: [android] Link with a version script to restrict symbol visibility --- platform/android/config.cmake | 2 ++ platform/android/version-script | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 platform/android/version-script (limited to 'platform') diff --git a/platform/android/config.cmake b/platform/android/config.cmake index 3dd8e7f67d..fdf03b4ec8 100644 --- a/platform/android/config.cmake +++ b/platform/android/config.cmake @@ -248,6 +248,7 @@ target_compile_options(mapbox-gl target_link_libraries(mapbox-gl PUBLIC mbgl-core PUBLIC -Wl,--gc-sections + PUBLIC -Wl,--version-script=${CMAKE_SOURCE_DIR}/platform/android/version-script ) # Create a stripped version of the library and copy it to the JNIDIR. @@ -331,6 +332,7 @@ target_compile_options(example-custom-layer target_link_libraries(example-custom-layer PRIVATE mapbox-gl PUBLIC -Wl,--gc-sections + PUBLIC -Wl,--version-script=${CMAKE_SOURCE_DIR}/platform/android/version-script ) add_custom_command(TARGET example-custom-layer POST_BUILD diff --git a/platform/android/version-script b/platform/android/version-script new file mode 100644 index 0000000000..7c1e3d54a2 --- /dev/null +++ b/platform/android/version-script @@ -0,0 +1,4 @@ +{ + global: JNI_OnLoad; + local: *; +}; \ No newline at end of file -- cgit v1.2.1