diff options
author | Olivier Certner <olce.palemoon@certner.fr> | 2021-01-06 13:43:01 +0100 |
---|---|---|
committer | Olivier Certner <olce.palemoon@certner.fr> | 2021-01-07 17:49:14 +0100 |
commit | 3e2dcaf7f20dbe3f92f65fbdfbeb3b8ab83df7a2 (patch) | |
tree | 3f1e52902eb77babd3b917de778cf30b158a4b06 /build | |
parent | 91f7c9d30e6bf58428cc06333ae04bf3abc03504 (diff) | |
download | uxp-3e2dcaf7f20dbe3f92f65fbdfbeb3b8ab83df7a2.tar.gz |
Issue #1699 - Part 3c: mozjemalloc: FreeBSD: Ensure early initialization
This guarantees that initialization is done in a single-thread context.
Diffstat (limited to 'build')
-rw-r--r-- | build/gecko_templates.mozbuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/gecko_templates.mozbuild b/build/gecko_templates.mozbuild index e2bc999b7b..a15fdd77f6 100644 --- a/build/gecko_templates.mozbuild +++ b/build/gecko_templates.mozbuild @@ -63,6 +63,11 @@ def GeckoBinary(linkage='dependent', msvcrt='dynamic', mozglue=None): LDFLAGS += ['-rdynamic'] if CONFIG['MOZ_MEMORY']: USE_LIBS += ['memory'] + if CONFIG['OS_ARCH'] == 'FreeBSD': + # Make sure this function is linked in, so that it is + # executed at executable load (it has the 'constructor' + # flag). + LDFLAGS += ['-u', 'jemalloc_FreeBSD_init'] elif mozglue == 'library': LIBRARY_DEFINES['MOZ_HAS_MOZGLUE'] = True if not CONFIG['MOZ_GLUE_IN_PROGRAM']: |