We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb7641e commit 2491e37Copy full SHA for 2491e37
src/BlocksRuntime/CMakeLists.txt
@@ -26,6 +26,10 @@ if(LINKER_SUPPORTS_BUILD_ID)
26
target_link_options(BlocksRuntime PRIVATE "LINKER:--build-id=sha1")
27
endif()
28
29
+if(ANDROID)
30
+ target_link_options(BlocksRuntime PRIVATE "LINKER:-z,max-page-size=16384")
31
+endif()
32
+
33
add_library(BlocksRuntime::BlocksRuntime ALIAS BlocksRuntime)
34
35
install(FILES Block.h
src/CMakeLists.txt
@@ -105,6 +105,7 @@ if(WIN32)
105
elseif(ANDROID)
106
target_compile_options(dispatch PRIVATE
107
-U_GNU_SOURCE)
108
+ target_link_options(dispatch PRIVATE "LINKER:-z,max-page-size=16384")
109
110
if(DISPATCH_ENABLE_ASSERTS)
111
target_compile_definitions(dispatch PRIVATE
0 commit comments