From 20d57b91e319301d3ac731c6c7d887bd9553a34e Mon Sep 17 00:00:00 2001 From: Alex Free Date: Wed, 17 Nov 2021 16:47:25 -0500 Subject: [PATCH] Add binutils to termux build dependencies Without binutils, you will get an error when executing make saying the ar command can not be found. Binutils is not installed automatically by the other build dependencies. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e7363cb2f..fc90b2b847 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ If you want to compile on Android using [Termux](https://f-droid.org/en/packages **Install dependencies:** ```sh -pkg install git wget make python getconf zip apksigner clang +pkg install git wget make python getconf zip apksigner clang binutils ``` **Clone the repository:**