summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-03-13 16:54:02 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-03-14 08:14:08 -0700
commit78d6d07d57d8b2f9a5aa25f9f84cc18b6d3b90e6 (patch)
tree25ccbfb2923060c436950fb208633234f5e33808
parente3cc5ddfddf991369f088a02cb278e5fac50d0ae (diff)
downloadqtlocation-mapboxgl-78d6d07d57d8b2f9a5aa25f9f84cc18b6d3b90e6.tar.gz
[android] Link with a version script to restrict symbol visibility
-rw-r--r--platform/android/config.cmake2
-rw-r--r--platform/android/version-script4
2 files changed, 6 insertions, 0 deletions
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