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

Update dependencies and bindings #102

Merged
merged 5 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install prerequisites
if: runner.os == 'Linux'
run: sudo apt-get install gcc-multilib
- name: Build C library
run: python buildall.py
# TODO: Ubuntu is phasing out support for 32-bit packages (e.g., `apt install gcc-multilib`
# fails on GitHub's runner); only build the 64-bit version for now.
run: python buildall.py --force_bits 64

rust_format:
name: Check Rust formatting
Expand Down
2 changes: 1 addition & 1 deletion rust/ittapi-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ exclude = [
cc = "1.0.73"

[dev-dependencies]
bindgen = "0.59"
bindgen = "0.68"
diff = "0.1"
267 changes: 122 additions & 145 deletions rust/ittapi-sys/src/linux/ittnotify_bindings.rs

Large diffs are not rendered by default.

671 changes: 119 additions & 552 deletions rust/ittapi-sys/src/linux/jitprofiling_bindings.rs

Large diffs are not rendered by default.

267 changes: 122 additions & 145 deletions rust/ittapi-sys/src/macos/ittnotify_bindings.rs

Large diffs are not rendered by default.

671 changes: 119 additions & 552 deletions rust/ittapi-sys/src/macos/jitprofiling_bindings.rs

Large diffs are not rendered by default.

271 changes: 124 additions & 147 deletions rust/ittapi-sys/src/windows/ittnotify_bindings.rs

Large diffs are not rendered by default.

671 changes: 119 additions & 552 deletions rust/ittapi-sys/src/windows/jitprofiling_bindings.rs

Large diffs are not rendered by default.

Loading