Skip to content

Commit

Permalink
Merge pull request #702 from o-sdn-o/gui-bridge
Browse files Browse the repository at this point in the history
Explicitly disable FPU exceptions on Linux
  • Loading branch information
o-sdn-o authored Dec 20, 2024
2 parents 66998a9 + ff720b9 commit 306d19d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/netxs/desktopio/application.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace netxs::app

namespace netxs::app::shared
{
static const auto version = "v0.9.99.59";
static const auto version = "v0.9.99.60";
static const auto repository = "https://github.com/directvt/vtm";
static const auto usr_config = "~/.config/vtm/settings.xml"s;
static const auto sys_config = "/etc/vtm/settings.xml"s;
Expand Down
4 changes: 4 additions & 0 deletions src/netxs/desktopio/system.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1261,6 +1261,10 @@ namespace netxs::os
auto platform = "macOS"s;
#elif defined(__linux__)
auto platform = "Linux"s;
if constexpr (!debugmode)
{
::fedisableexcept(FE_ALL_EXCEPT);
}
#elif defined(__BSD__)
auto platform = "BSD"s;
#else
Expand Down

0 comments on commit 306d19d

Please sign in to comment.