frida / frida-rust

Frida Rust bindings
Other
177 stars 46 forks source link

Undo special linux-arm64 case. #68

Closed t4lz closed 1 year ago

t4lz commented 1 year ago

After the update to frida 16, excluding that line on linux+arm64 is not necessary anymore, and in fact after updating to frida 16 frida-gum cannot build on linux+arm64 anymore.

This works:

frida-gum = { git = "https://github.com/frida/frida-rust", rev = "0226bf9ca8171cba864024dfd21364e7b1833392", features = ["auto-download"] } # Fix Linux/aarch64

This fails:

frida-gum = { git = "https://github.com/frida/frida-rust", rev = "9976bced744b0b4ad658f60825eee3083243cdbe", features = ["auto-download"] } # Update Frida to 16.0.2

This works again:

frida-gum = { git = "https://github.com/t4lz/frida-rust", branch = "linux-arm-frida16", features = ["auto-download"] }

Sorry for that.

aviramha commented 1 year ago

hey, any chance we can get this merged please? :)