aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-04-26 16:04:37 +0200
committerJo-Philipp Wich <jo@mein.io>2018-07-19 09:12:25 +0200
commit91c94008161ec90e0ce78c61e9c26cf7f13f8c3a (patch)
tree74fd4f28328e9edad6beafc560f924294f314f3c /scripts
parent54c0ef6ff5217cab1deef4ef816ddd63ec837ad3 (diff)
downloadupstream-91c94008161ec90e0ce78c61e9c26cf7f13f8c3a.tar.gz
upstream-91c94008161ec90e0ce78c61e9c26cf7f13f8c3a.tar.bz2
upstream-91c94008161ec90e0ce78c61e9c26cf7f13f8c3a.zip
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 746c590882b96d5ed4d4115e4bdab4c838af7806)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bundle-libraries.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/bundle-libraries.sh b/scripts/bundle-libraries.sh
index bfe681ad60..620ee01bde 100755
--- a/scripts/bundle-libraries.sh
+++ b/scripts/bundle-libraries.sh
@@ -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