From 62114d6064c895ae34f1ac232b2fdc94e7329dae Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 19 Sep 2017 11:00:40 +0200 Subject: 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 --- docs/setup_linux-host_android-device_arm64-kernel.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'docs/setup_linux-host_android-device_arm64-kernel.md') 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: -- cgit mrf-deployment