From 84510087bf8d01d8de7f7b3c2005410ec2763fe6 Mon Sep 17 00:00:00 2001 From: cen1 Date: Sat, 29 Oct 2016 21:45:54 +0200 Subject: [PATCH] additional clarifications on 32bit build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14ac495..1925a98 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add `bncsutil.h` to your include directory and link against `bncsutil.lib` or `l ## Building CMake is used to generate platform specific build files. The only external dependency is GMP (The GNU Multiple Precision Arithmetic Library ). -It can be installed with a package manager from any major Linux distro. Debian example: `sudo apt-get install libgmp10`. To force a specific build (32bit or 64bit) build add `-DBUILD_32=1` or `-DBUILD_64=1` to CMake flags. +It can be installed with a package manager from any major Linux distro. Debian example: `sudo apt-get install libgmp10`. To force a specific build (32bit or 64bit) build add `-DBUILD_32=1` or `-DBUILD_64=1` to CMake flags. CMake will not warn you if you are missing 32bit glibc and GMP, you must install them manually first (CentOS/Fedora: `glibc-devel.i686` and `gmp-devel.i686`). ### Windows