scripts: bundle-libraries: fix build on OS X (FS#1493)

This allegedly fixes compilation of the library bundler preload library on
Apple OS X. The resulting executables have not been runtime tested due to a
lack of suitable test hardware.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 746c590882)
This commit is contained in:
Jo-Philipp Wich 2018-04-26 16:04:37 +02:00
parent 54c0ef6ff5
commit 91c9400816
1 changed files with 4 additions and 0 deletions

View File

@ -87,7 +87,11 @@ _runas_so() {
return 0;
}
#ifdef __APPLE__
__attribute__((section("__DATA,__mod_init_func")))
#else
__attribute__((section(".init_array")))
#endif
static void *mangle_arg0_constructor = &mangle_arg0;
EOT