MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

cpp -fpie

+6 -3
+2 -2
meson/meson.build
··· 25 25 ) 26 26 27 27 if host_machine.system() == 'linux' 28 - add_project_arguments('-fno-pie', language: 'c') 29 - add_project_link_arguments('-no-pie', language: 'c') 28 + add_project_arguments('-fno-pie', language: ['c', 'cpp']) 29 + add_project_link_arguments('-no-pie', language: ['c', 'cpp']) 30 30 endif 31 31 32 32 subdir('deps')
+4 -1
vendor/packagefiles/wasm-micro-runtime/meson.build
··· 94 94 wamr_sources = files( 95 95 'core/shared/platform/' + wamr_platform + '/platform_init.c', 96 96 'core/shared/platform/common/libc-util/libc_errno.c', 97 - 'core/shared/platform/common/memory/mremap.c', 98 97 'core/shared/platform/common/posix/posix_blocking_op.c', 99 98 'core/shared/platform/common/posix/posix_clock.c', 100 99 'core/shared/platform/common/posix/posix_malloc.c', ··· 103 102 'core/shared/platform/common/posix/posix_thread.c', 104 103 'core/shared/platform/common/posix/posix_time.c', 105 104 ) 105 + endif 106 + 107 + if wamr_platform == 'darwin' 108 + wamr_sources += files('core/shared/platform/common/memory/mremap.c') 106 109 endif 107 110 108 111 wamr_sources += files(