Skip to content

Commit

Permalink
Bug 1580234 - Disable the custom linker when mozjemalloc is disabled.…
Browse files Browse the repository at this point in the history
… r=froydnj

Long term, we want to remove the custom linker (bug 1291377) but without
more effort than where we're at with bug 1598196, it would break using
mozjemalloc.

However, some builds using sanitizers don't use mozjemalloc already,
and in their case, we can already disable the custom linker.

Differential Revision: https://phabricator.services.mozilla.com/D54078

--HG--
extra : moz-landing-system : lando
  • Loading branch information
glandium committed Nov 22, 2019
1 parent b1d0510 commit 73a0be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion old-configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ case "$target" in
;;

*-android*|*-linuxandroid*)
if test "$COMPILE_ENVIRONMENT"; then
if test "$COMPILE_ENVIRONMENT" -a -n "$MOZ_MEMORY"; then
MOZ_LINKER=1
fi

Expand Down

0 comments on commit 73a0be7

Please sign in to comment.