Backed out changesets 1a413186fb49 and 0f7c370491bf (bug 914174) for Linux debug mochitest-bc bustage.

This commit is contained in:
Ryan VanderMeulen 2013-09-10 13:38:02 -04:00
parent e24e1ee0ab
commit 020c249ad8
2 changed files with 0 additions and 11 deletions

View File

@ -149,7 +149,6 @@ if test "$JS_STANDALONE" = no; then
JS_STANDALONE= JS_STANDALONE=
else else
JS_STANDALONE=1 JS_STANDALONE=1
AC_DEFINE(JS_STANDALONE)
fi fi
AC_SUBST(JS_STANDALONE) AC_SUBST(JS_STANDALONE)

View File

@ -1033,13 +1033,3 @@ js::TriggerOperationCallbackForAsmJSCode(JSRuntime *rt)
MOZ_CRASH(); MOZ_CRASH();
#endif #endif
} }
#if defined(MOZ_ASAN) && defined(JS_STANDALONE)
// Usually, this definition is found in mozglue (see mozglue/build/AsanOptions.cpp).
// However, when doing standalone JS builds, mozglue is not used and we must ensure
// that we still allow custom SIGSEGV handlers for asm.js and ion to work correctly.
extern "C" MOZ_ASAN_BLACKLIST
const char* __asan_default_options() {
return "allow_user_segv_handler=1";
}
#endif