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

[libunwind][WebAssembly] Make libunwind compilable #92192

Merged
merged 5 commits into from
May 21, 2024

Commits on May 14, 2024

  1. [libunwind][WebAssembly] Make libunwind compilable

    This tries to make Wasm compilable in LLVM tree with CMake for
    non-Emscripten platform.
    
    This
    - Adds `-D__USING_WASM_EXCEPTIONS__` when you compile with
      `-fwasm-exceptions` (like other EH options) in Clang
    - Exclude `UnwindLevel1.c` when compiling with Wasm
    - Changed some `__USING_WASM_EXCEPTIONS__` to `__wasm__`; they should be
      applied when compiling with Wasm w/o exceptions.
    - Define some unused macros to make it compile
    aheejin committed May 14, 2024
    Configuration menu
    Copy the full SHA
    95b9e56 View commit details
    Browse the repository at this point in the history
  2. clang-format

    aheejin committed May 14, 2024
    Configuration menu
    Copy the full SHA
    496e9b1 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Exclude .S files

    aheejin committed May 15, 2024
    Configuration menu
    Copy the full SHA
    86179cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0ba2e2 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Address comments

    aheejin committed May 17, 2024
    Configuration menu
    Copy the full SHA
    eb1a0d3 View commit details
    Browse the repository at this point in the history