aboutsummaryrefslogtreecommitdiff
path: root/DEPENDENCIES
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2014-08-24 13:55:55 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-08-25 19:18:45 +0400
commitc21402364ee8b3b69c446829920dba7d2272c842 (patch)
tree7ccbff7d9ce6af49348bbb5f204c1a84ac42b416 /DEPENDENCIES
parent99c87e985a6ca17fc38a697e2034a3786f2e0079 (diff)
DEPENDENCIES: update how to build openssl
Building against a statically linked openssl fails when using --with-openssl-path when cross-compiling and using a root-fs that doesn't contain statically linked versions of libc-libs Reported-by: Stuart Haslam <stuart.haslam@arm.com> Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'DEPENDENCIES')
-rw-r--r--DEPENDENCIES4
1 files changed, 2 insertions, 2 deletions
diff --git a/DEPENDENCIES b/DEPENDENCIES
index 53233ff50..2654ae001 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -52,13 +52,13 @@ Prerequisites for building the OpenDataPlane (ODP) API
# Build and install 32 bit version of openssl
$ ./Configure linux-generic32 --cross-compile-prefix=arm-linux-gnueabihf- \
- --prefix=/home/user/src/install-openssl
+ --prefix=/home/user/src/install-openssl shared
$ make
$ make install
# Build and install 64 bit version of openssl
$ ./Configure linux-aarch64 --cross-compile-prefix=aarch64-linux-gnu- \
- --prefix=/home/user/src/install-openssl-aarch64
+ --prefix=/home/user/src/install-openssl-aarch64 shared
$ make
$ make install