Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add disable-exceptions feature to portfile for tbb #16068

Merged
merged 4 commits into from
Apr 8, 2021

Commits on Feb 5, 2021

  1. Add disable-exceptions feature to portfile to pass exceptions=0 to tb…

    …b_build in the non-windows case, and set TBB_USE_EXCEPTIONS=0 in the vcxproj files in the windows case. This removes the try/catch(...) wrappers around user code run by TBB. While these exception facilities can be nice in some cases, their removal allows for much easier debugging of a crash due to an unhandled exception in code that a TBB client provides to a TBB algortihm. With the try/catch(...) wrappers removed, the unhandled exception and crash dump are generated at the point of the thrown exception, versus significantly later in a different thread with the originally throwing thread no longer having the stack from when the exception was thrown.
    aggieNick02 committed Feb 5, 2021
    Configuration menu
    Copy the full SHA
    00e6e88 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2021

  1. Configuration menu
    Copy the full SHA
    75ee139 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Configuration menu
    Copy the full SHA
    1296a9c View commit details
    Browse the repository at this point in the history
  2. Rerun x-add-version

    aggieNick02 committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    effc3f2 View commit details
    Browse the repository at this point in the history