From b12f630e8190f6c0fb7a58a434e445da1d5daff8 Mon Sep 17 00:00:00 2001 From: beardedn5rd Date: Fri, 6 May 2016 14:49:52 +0200 Subject: [PATCH 1/2] updated README --- src/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/README.md b/src/README.md index 4e312c0c15..6ace6bcd55 100644 --- a/src/README.md +++ b/src/README.md @@ -16,10 +16,13 @@ To build protobuf from source, the following tools are needed: * automake * libtool * curl (used to download gmock) + * make + * clang (gcc) + * unzip On Ubuntu, you can install them with: - $ sudo apt-get install autoconf automake libtool curl + $ sudo apt-get install autoconf automake libtool curl make clang unzip On other platforms, please use the corresponding package managing tool to install them before proceeding. From 2eb774e6026d1ddf082270861ff90422cd96b878 Mon Sep 17 00:00:00 2001 From: beardedn5rd Date: Fri, 6 May 2016 22:47:17 +0200 Subject: [PATCH 2/2] after comment of Feng Xiao changed the entry to g++ --- src/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/README.md b/src/README.md index 6ace6bcd55..d623a49af5 100644 --- a/src/README.md +++ b/src/README.md @@ -17,12 +17,12 @@ To build protobuf from source, the following tools are needed: * libtool * curl (used to download gmock) * make - * clang (gcc) + * g++ * unzip On Ubuntu, you can install them with: - $ sudo apt-get install autoconf automake libtool curl make clang unzip + $ sudo apt-get install autoconf automake libtool curl make g++ unzip On other platforms, please use the corresponding package managing tool to install them before proceeding.