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

ci: migrate windows to github workflow #158

Merged
merged 3 commits into from
Apr 21, 2024
Merged

ci: migrate windows to github workflow #158

merged 3 commits into from
Apr 21, 2024

Commits on Apr 18, 2024

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

Commits on Apr 20, 2024

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

Commits on Apr 21, 2024

  1. Fix windows build when using bindgen feature

    Bindgen generates different repr for enums:
    
    - Linux: unsigned (u32/c_uint)
    - Windows: unsigned (i32/c_int)
    
    Some test code that directly instantiates capstone_sys types incorrectly
    assumed a static type (e.g. `u32`). Instead, we now use the defined type
    (e.g. `arm64_reg::Type`).
    
    Also removes the now unnecessary `From<u32> for RegId` impl.
    tmfink committed Apr 21, 2024
    Configuration menu
    Copy the full SHA
    53ef039 View commit details
    Browse the repository at this point in the history