You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to compile frida-server to linux-arm64 (include the bootstrapper.c) because I want to debug that error ( here )
1)When I tried on raspberry pi the following commands:
docker pull ghcr.io/frida/x-tools-linux-arm64:latest
docker run -it ghcr.io/frida/x-tools-linux-arm64:latest
I got
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
standard_init_linux.go:239: exec user process caused: exec format error
Why is that ?
When I tried on Intel CPU I run the following commands:
docker pull ghcr.io/frida/x-tools-linux-arm64:latest
docker run -it ghcr.io/frida/x-tools-linux-arm64:latest
cd /home
git clone --recurse-submodules https://github.com/frida/frida
cd frida
make core-linux-arm64
I got error:
INFO: autodetecting backend as ninja
ERROR: Can't invoke target `core-linux-aarch64`: target not found
Command '['/usr/bin/python3', '/home/frida/releng/meson/meson.py', 'compile', 'core-linux-aarch64']' returned non-zero exit status 1.
make: *** [Makefile:4: core-linux-aarch64] Error 1
After that error I want to compile the helpers (to compile bootstrapper.c to frida-server) make -C frida-core/src/linux/helpers FRIDA_HOST=linux-arm64
How can I resolve that errors ?
The text was updated successfully, but these errors were encountered:
I want to compile frida-server to linux-arm64 (include the bootstrapper.c) because I want to debug that error ( here )
1)When I tried on raspberry pi the following commands:
I got
Why is that ?
I got error:
After that error I want to compile the helpers (to compile bootstrapper.c to frida-server)
make -C frida-core/src/linux/helpers FRIDA_HOST=linux-arm64
How can I resolve that errors ?
The text was updated successfully, but these errors were encountered: