Prevent from installing signal handlers (Android)

Hi all

I can see when running various UE content that the engine is installing signal handlers for various Unix signals. More specifically I can see handlers being installed on Android for the following:

static constexpr int32 TargetSignals[] =
{
	SIGQUIT, // SIGQUIT is a user-initiated "crash".
	SIGILL,
	SIGFPE,
	SIGBUS,
	SIGSEGV,
	SIGSYS,
	SIGABRT
};

My question is, is there a way, some env variable for example, that can be used to prevent the signal handlers from being installed?

Looking into the sources didn’t really help as this code is referenced by multiple modules and things get really complex.

Thanks!