Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Vasiliev <vasilvv@mit.edu>2014-08-15 05:41:02 +0400
committerAdam Langley <agl@google.com>2014-08-18 21:23:37 +0400
commit5216a931b7644a20b2a714cd80ed4bc7ae7a7d5e (patch)
treee9a5d439e1f4f009dcaddd574da616736a56f215 /BUILDING
parentd4178fd9d85f246620b6f1a2158a1268d2d2d4a5 (diff)
Increase minimum required cmake version
OBJECT library types are supported only in CMake 2.8.8 or higher, and attempting to build BoringSSL on Ubuntu 12.04 results in CMake displaying unhelpful error messages. Change-Id: I2bc77a2c95d4f6ee41f8489ff679a2a0ba48c508 Reviewed-on: https://boringssl-review.googlesource.com/1530 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'BUILDING')
-rw-r--r--BUILDING4
1 files changed, 0 insertions, 4 deletions
diff --git a/BUILDING b/BUILDING
index 68184dd6..ee6b0ab9 100644
--- a/BUILDING
+++ b/BUILDING
@@ -1,12 +1,8 @@
-cmake --version # ensure that you have >= 2.8.8
-
mkdir build
cd build
cmake ..
make
-If you see an error about "Cannot find source file: OBJECT" then your version of CMake is too old.
-
Note that the default build flags in the top-leve CMakeLists.txt are for
debugging - optimisation isn't enabled.