mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-30 23:02:50 -06:00
enable the PGF JIT compiler for Android
This commit is contained in:
@@ -48,7 +48,11 @@ pgf_jit_alloc_page(PgfJitState* state)
|
||||
|
||||
size_t page_size = getpagesize();
|
||||
|
||||
#ifndef ANDROID
|
||||
if (posix_memalign(&page, page_size, page_size) != 0) {
|
||||
#else
|
||||
if ((page = memalign(page_size, page_size)) == NULL) {
|
||||
#endif
|
||||
gu_fatal("Memory allocation failed");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user