From e20504b8c33eb14bc7b478f20f831ba5755b6b58 Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 29 Aug 2006 10:48:08 +0000 Subject: [PATCH] PAL10867: noexcepthandler option in GUI not working. Automatically set environment variable DISABLE_FPE if noexcepthandler option is used (or -r command line key). --- bin/launchConfigureParser.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/launchConfigureParser.py b/bin/launchConfigureParser.py index 4a568215c..03220b75d 100755 --- a/bin/launchConfigureParser.py +++ b/bin/launchConfigureParser.py @@ -431,6 +431,10 @@ if 't' in cmd_opts: args[gui_nam] = 0 pass +if args[except_nam] == 1: + os.environ["DISABLE_FPE"] = "1" + pass + # now modify SalomeAppConfig environment variable dirs = re.split('[;|:]', os.environ[config_var] ) -- 2.39.2