From: jfa Date: Tue, 29 Aug 2006 10:48:08 +0000 (+0000) Subject: PAL10867: noexcepthandler option in GUI not working. Automatically set environment... X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e20504b8c33eb14bc7b478f20f831ba5755b6b58;p=modules%2Fkernel.git PAL10867: noexcepthandler option in GUI not working. Automatically set environment variable DISABLE_FPE if noexcepthandler option is used (or -r command line key). --- 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] )