diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-19 11:00:40 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-19 16:44:54 +0200 |
| commit | 62114d6064c895ae34f1ac232b2fdc94e7329dae (patch) | |
| tree | e309d2fee71f6222cab66783b1498f325c78d5a3 /docs/setup_linux-host_android-device_arm64-kernel.md | |
| parent | 5b89a8780ff6f7e69f82765164cb77da68bb8544 (diff) | |
Makefile: build target binaries into separate dirs
We currently build binaries for all targets into bin.
This makes mess in bin/ and does not allow testing of different archs.
Build target binaries into bin/OS_ARCH/ subdirs.
Host binaries are still built into bin/.
Update #333
Update #324
Update #191
Diffstat (limited to 'docs/setup_linux-host_android-device_arm64-kernel.md')
| -rw-r--r-- | docs/setup_linux-host_android-device_arm64-kernel.md | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/docs/setup_linux-host_android-device_arm64-kernel.md b/docs/setup_linux-host_android-device_arm64-kernel.md index 9b8baa439..e7d6fa744 100644 --- a/docs/setup_linux-host_android-device_arm64-kernel.md +++ b/docs/setup_linux-host_android-device_arm64-kernel.md @@ -9,17 +9,7 @@ Prerequisites: - Build syzkaller ```sh -$ make android -``` - - - Check the output files are correct - -```sh -$ file bin/* -bin/syz-execprog: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, stripped -bin/syz-executor: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, not stripped -bin/syz-fuzzer: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, stripped -bin/syz-manager: Mach-O 64-bit executable x86_64 +$ NDK=/path/to/android/ndk make TARGETOS=android TARGETARCH=arm64 ``` - Create config with `"type": "adb"` and specify adb devices to use. For example: |
