]> git.ipfire.org Git - thirdparty/openssl.git/blame - INSTALL
Make asn1 fuzzer more reproducible
[thirdparty/openssl.git] / INSTALL
CommitLineData
79e259e3 1
d5957691
MC
2 OPENSSL INSTALLATION
3 --------------------
79e259e3 4
ea24fe29
RL
5 This document describes installation on all supported operating
6 systems (the Linux/Unix family, OpenVMS and Windows)
4109b97c
RE
7
8 To install OpenSSL, you will need:
79e259e3 9
07930a75
RL
10 * A make implementation
11 * Perl 5 with core modules (please read NOTES.PERL)
12 * The perl module Text::Template (please read NOTES.PERL)
73bfb9ad 13 * an ANSI C compiler
d5957691 14 * a development environment in the form of development libraries and C
d57d85ff 15 header files
2acd8ec7
RL
16 * a supported operating system
17
e8fd2a4c
RL
18 For additional platform specific requirements, solutions to specific
19 issues and other details, please read one of these:
2acd8ec7 20
b32b8961 21 * NOTES.VMS (OpenVMS)
20ab55f4 22 * NOTES.WIN (any supported Windows)
07930a75 23 * NOTES.DJGPP (DOS platform with DJGPP)
79e259e3 24
ea24fe29
RL
25 Notational conventions in this document
26 ---------------------------------------
27
28 Throughout this document, we use the following conventions in command
29 examples:
30
31 $ command Any line starting with a dollar sign
32 ($) is a command line.
33
34 { word1 | word2 | word3 } This denotes a mandatory choice, to be
35 replaced with one of the given words.
36 A simple example would be this:
37
38 $ echo { FOO | BAR | COOKIE }
39
40 which is to be understood as one of
41 these:
42
43 $ echo FOO
44 - or -
45 $ echo BAR
46 - or -
47 $ echo COOKIE
48
49 [ word1 | word2 | word3 ] Similar to { word1 | word2 | word3 }
50 except it's optional to give any of
51 those. In addition to the examples
52 above, this would also be valid:
53
54 $ echo
55
56 {{ target }} This denotes a mandatory word or
57 sequence of words of some sort. A
58 simple example would be this:
59
60 $ type {{ filename }}
61
62 which is to be understood to use the
63 command 'type' on some file name
64 determined by the user.
65
66 [[ options ]] Similar to {{ target }}, but is
67 optional.
68
69 Note that the notation assumes spaces around {, }, [, ], {{, }} and
70 [[, ]]. This is to differentiate from OpenVMS directory
71 specifications, which also use [ and ], but without spaces.
72
4109b97c
RE
73 Quick Start
74 -----------
79e259e3 75
4109b97c 76 If you want to just get on with it, do:
79e259e3 77
2acd8ec7
RL
78 on Unix:
79
80 $ ./config
81 $ make
82 $ make test
83 $ make install
84
85 on OpenVMS:
86
87 $ @config
88 $ mms
89 $ mms test
90 $ mms install
79e259e3 91
b32b8961
RL
92 on Windows (only pick one of the targets for configuration):
93
94 $ perl Configure { VC-WIN32 | VC-WIN64A | VC-WIN64I | VC-CE }
95 $ nmake
96 $ nmake test
8c16829e 97 $ nmake install
b32b8961 98
ea24fe29 99 If any of these steps fails, see section Installation in Detail below.
b1fe6b43 100
2acd8ec7
RL
101 This will build and install OpenSSL in the default location, which is:
102
103 Unix: normal installation directories under /usr/local
104 OpenVMS: SYS$COMMON:[OPENSSL-'version'...], where 'version' is the
667c6bfe
RL
105 OpenSSL version number with underscores instead of periods.
106 Windows: C:\Program Files\OpenSSL or C:\Program Files (x86)\OpenSSL
2acd8ec7
RL
107
108 If you want to install it anywhere else, run config like this:
79e259e3 109
2acd8ec7
RL
110 On Unix:
111
112 $ ./config --prefix=/opt/openssl --openssldir=/usr/local/ssl
113
114 On OpenVMS:
115
116 $ @config --prefix=PROGRAM:[INSTALLS] --openssldir=SYS$MANAGER:[OPENSSL]
79e259e3 117
b1fe6b43
UM
118
119 Configuration Options
120 ---------------------
121
2d99cee7 122 There are several options to ./config (or ./Configure) to customize
8c16829e
RL
123 the build (note that for Windows, the defaults for --prefix and
124 --openssldir depend in what configuration is used and what Windows
125 implementation OpenSSL is built on. More notes on this in NOTES.WIN):
2613c1fa 126
fa28bfd6
MC
127 --api=x.y.z
128 Don't build with support for deprecated APIs below the
129 specified version number. For example "--api=1.1.0" will
130 remove support for all APIS that were deprecated in OpenSSL
131 version 1.1.0 or below.
462ba4f6 132
fa28bfd6
MC
133 --cross-compile-prefix=PREFIX
134 The PREFIX to include in front of commands for your
85afea67
AP
135 toolchain. It's likely to have to end with dash, e.g.
136 a-b-c- would invoke GNU compiler as a-b-c-gcc, etc.
137 Unfortunately cross-compiling is too case-specific to
138 put together one-size-fits-all instructions. You might
139 have to pass more flags or set up environment variables
140 to actually make it work. Android and iOS cases are
141 discussed in corresponding Configurations/10-main.cf
142 sections. But there are cases when this option alone is
143 sufficient. For example to build the mingw64 target on
144 Linux "--cross-compile-prefix=x86_64-w64-mingw32-"
145 works. Naturally provided that mingw packages are
146 installed. Today Debian and Ubuntu users have option to
147 install a number of prepackaged cross-compilers along
148 with corresponding run-time and development packages for
149 "alien" hardware. To give another example
150 "--cross-compile-prefix=mipsel-linux-gnu-" suffices
151 in such case. Needless to mention that you have to
152 invoke ./Configure, not ./config, and pass your target
153 name explicitly.
fa28bfd6
MC
154
155 --debug
156 Build OpenSSL with debugging symbols.
157
158 --libdir=DIR
159 The name of the directory under the top of the installation
160 directory tree (see the --prefix option) where libraries will
161 be installed. By default this is "lib". Note that on Windows
162 only ".lib" files will be stored in this location. dll files
163 will always be installed to the "bin" directory.
2acd8ec7 164
ecabf05e
MC
165 --openssldir=DIR
166 Directory for OpenSSL configuration files, and also the
d5957691
MC
167 default certificate and key store. Defaults are:
168
667c6bfe 169 Unix: /usr/local/ssl
8c16829e
RL
170 Windows: C:\Program Files\Common Files\SSL
171 or C:\Program Files (x86)\Common Files\SSL
667c6bfe 172 OpenVMS: SYS$COMMON:[OPENSSL-COMMON]
d5957691 173
fa28bfd6
MC
174 --prefix=DIR
175 The top of the installation directory tree. Defaults are:
176
177 Unix: /usr/local
178 Windows: C:\Program Files\OpenSSL
179 or C:\Program Files (x86)\OpenSSL
180 OpenVMS: SYS$COMMON:[OPENSSL-'version']
181
182 --release
183 Build OpenSSL without debugging symbols. This is the default.
184
185 --strict-warnings
186 This is a developer flag that switches on various compiler
187 options recommended for OpenSSL development. It only works
188 when using gcc or clang as the compiler. If you are
189 developing a patch for OpenSSL then it is recommended that
190 you use this option where possible.
191
192 --with-zlib-include=DIR
193 The directory for the location of the zlib include file. This
194 option is only necessary if enable-zlib (see below) is used
195 and the include file is not already on the system include
196 path.
197
198 --with-zlib-lib=LIB
199 On Unix: this is the directory containing the zlib library.
200 If not provided the system library path will be used.
201 On Windows: this is the filename of the zlib library (with or
202 without a path). This flag must be provided if the
203 zlib-dynamic option is not also used. If zlib-dynamic is used
204 then this flag is optional and a default value ("ZLIB1") is
205 used if not provided.
206 On VMS: this is the filename of the zlib library (with or
207 without a path). This flag is optional and if not provided
208 then "GNV$LIBZSHR", "GNV$LIBZSHR32" or "GNV$LIBZSHR64" is
209 used by default depending on the pointer size chosen.
d5957691 210
ecabf05e
MC
211 no-afalgeng
212 Don't build the AFALG engine. This option will be forced if
213 on a platform that does not support AFALG.
214
fa28bfd6 215 enable-asan
f430ba31 216 Build with the Address sanitiser. This is a developer option
fa28bfd6
MC
217 only. It may not work on all platforms and should never be
218 used in production environments. It will only work when used
219 with gcc or clang and should be used in conjunction with the
220 no-shared option.
221
ecabf05e 222 no-asm
05328815
MC
223 Do not use assembler code. On some platforms a small amount
224 of assembler code may still be used.
ecabf05e
MC
225
226 no-async
227 Do not build support for async operations.
d5957691 228
ecabf05e
MC
229 no-autoalginit
230 Don't automatically load all supported ciphers and digests.
d5957691
MC
231 Typically OpenSSL will make available all of its supported
232 ciphers and digests. For a statically linked application this
233 may be undesirable if small executable size is an objective.
234 This only affects libcrypto. Ciphers and digests will have to
235 be loaded manually using EVP_add_cipher() and
ecabf05e
MC
236 EVP_add_digest() if this option is used. This option will
237 force a non-shared build.
d5957691 238
ecabf05e
MC
239 no-autoerrinit
240 Don't automatically load all libcrypto/libssl error strings.
d5957691
MC
241 Typically OpenSSL will automatically load human readable
242 error strings. For a statically linked application this may
243 be undesirable if small executable size is an objective.
244
d5957691 245
ecabf05e
MC
246 no-capieng
247 Don't build the CAPI engine. This option will be forced if
248 on a platform that does not support CAPI.
d5957691 249
ecabf05e
MC
250 no-cms
251 Don't build support for CMS features
d5957691 252
ecabf05e
MC
253 no-comp
254 Don't build support for SSL/TLS compression. If this option
255 is left enabled (the default), then compression will only
256 work if the zlib or zlib-dynamic options are also chosen.
d5957691 257
ecabf05e
MC
258 enable-crypto-mdebug
259 Build support for debugging memory allocated via
260 OPENSSL_malloc() or OPENSSL_zalloc().
261
262 enable-crypto-mdebug-backtrace
263 As for crypto-mdebug, but additionally provide backtrace
264 information for allocated memory.
8d054a55
RL
265 TO BE USED WITH CARE: this uses GNU C functionality, and
266 is therefore not usable for non-GNU config targets. If
267 your build complains about the use of '-rdynamic' or the
268 lack of header file execinfo.h, this option is not for you.
269 ALSO NOTE that even though execinfo.h is available on your
270 system (through Gnulib), the functions might just be stubs
271 that do nothing.
ecabf05e
MC
272
273 no-ct
274 Don't build support for Certificate Transparency.
275
276 no-deprecated
277 Don't build with support for any deprecated APIs. This is the
278 same as using "--api" and supplying the latest version
279 number.
280
281 no-dgram
282 Don't build support for datagram based BIOs. Selecting this
283 option will also force the disabling of DTLS.
284
285 no-dso
286 Don't build support for loading Dynamic Shared Objects.
287
288 no-dynamic-engine
289 Don't build the dynamically loaded engines. This only has an
290 effect in a "shared" build
291
292 no-ec
293 Don't build support for Elliptic Curves.
294
295 no-ec2m
296 Don't build support for binary Elliptic Curves
297
298 enable-ec_nistp_64_gcc_128
299 Enable support for optimised implementations of some commonly
300 used NIST elliptic curves. This is only supported on some
301 platforms.
302
303 enable-egd
304 Build support for gathering entropy from EGD (Entropy
305 Gathering Daemon).
306
307 no-engine
308 Don't build support for loading engines.
309
310 no-err
311 Don't compile in any error strings.
312
ce2596d4
MC
313 enable-external-tests
314 Enable building of integration with external test suites.
315 This is a developer option and may not work on all platforms.
316 The only supported external test suite at the current time is
5227337a
MC
317 the BoringSSL test suite. See the file test/README.external
318 for further details.
ce2596d4 319
ecabf05e
MC
320 no-filenames
321 Don't compile in filename and line number information (e.g.
322 for errors and memory allocation).
323
255af26c
MC
324 enable-fuzz-libfuzzer, enable-fuzz-afl
325 Build with support for fuzzing using either libfuzzer or AFL.
326 These are developer options only. They may not work on all
327 platforms and should never be used in production environments.
328 See the file fuzz/README.md for further details.
fa28bfd6 329
ecabf05e
MC
330 no-gost
331 Don't build support for GOST based ciphersuites. Note that
332 if this feature is enabled then GOST ciphersuites are only
333 available if the GOST algorithms are also available through
334 loading an externally supplied engine.
335
ecabf05e
MC
336 no-hw-padlock
337 Don't build the padlock engine.
338
339 no-makedepend
05328815 340 Don't generate dependencies.
ecabf05e
MC
341
342 no-multiblock
343 Don't build support for writing multiple records in one
344 go in libssl (Note: this is a different capability to the
345 pipelining functionality).
346
347 no-nextprotoneg
348 Don't build support for the NPN TLS extension.
349
350 no-ocsp
351 Don't build support for OCSP.
d5957691 352
ecabf05e
MC
353 no-pic
354 Don't build with support for Position Independent Code.
d5957691 355
ecabf05e
MC
356 no-posix-io
357 Don't use POSIX IO capabilities.
358
359 no-psk
360 Don't build support for Pre-Shared Key based ciphersuites.
361
362 no-rdrand
363 Don't use hardware RDRAND capabilities.
364
365 no-rfc3779
366 Don't build support for RFC3779 ("X.509 Extensions for IP
367 Addresses and AS Identifiers")
368
ecabf05e
MC
369 sctp
370 Build support for SCTP
371
ce942199
MC
372 no-shared
373 Do not create shared libraries, only static ones. See "Note
374 on shared libraries" below.
d5957691 375
ecabf05e
MC
376 no-sock
377 Don't build support for socket BIOs
d5957691 378
ecabf05e
MC
379 no-srp
380 Don't build support for SRP or SRP based ciphersuites.
381
382 no-srtp
383 Don't build SRTP support
d5957691 384
ecabf05e 385 no-sse2
5ae5dc96
AP
386 Exclude SSE2 code paths from 32-bit x86 assembly modules.
387 Normally SSE2 extension is detected at run-time, but the
388 decision whether or not the machine code will be executed
389 is taken solely on CPU capability vector. This means that
390 if you happen to run OS kernel which does not support SSE2
391 extension on Intel P4 processor, then your application
392 might be exposed to "illegal instruction" exception.
393 There might be a way to enable support in kernel, e.g.
394 FreeBSD kernel can be compiled with CPU_ENABLE_SSE, and
395 there is a way to disengage SSE2 code paths upon application
396 start-up, but if you aim for wider "audience" running
397 such kernel, consider no-sse2. Both the 386 and
398 no-asm options imply no-sse2.
d5957691 399
ecabf05e
MC
400 enable-ssl-trace
401 Build with the SSL Trace capabilities (adds the "-trace"
402 option to s_client and s_server).
403
404 no-static-engine
405 Don't build the statically linked engines. This only
406 has an impact when not built "shared".
407
408 no-stdio
409 Don't use any C "stdio" features. Only libcrypto and libssl
410 can be built in this way. Using this option will suppress
411 building the command line applications. Additionally since
412 the OpenSSL tests also use the command line applications the
413 tests will also be skipped.
414
93880ce1
RL
415 no-tests
416 Don't build test programs or run any test.
417
ecabf05e
MC
418 no-threads
419 Don't try to build with support for multi-threaded
420 applications.
421
422 threads
423 Build with support for multi-threaded applications. Most
424 platforms will enable this by default. However if on a
425 platform where this is not the case then this will usually
426 require additional system-dependent options! See "Note on
427 multi-threading" below.
428
429 no-ts
430 Don't build Time Stamping Authority support.
431
fa28bfd6 432 enable-ubsan
f430ba31 433 Build with the Undefined Behaviour sanitiser. This is a
fa28bfd6
MC
434 developer option only. It may not work on all platforms and
435 should never be used in production environments. It will only
436 work when used with gcc or clang and should be used in
437 conjunction with the "-DPEDANTIC" option (or the
438 --strict-warnings option).
439
ecabf05e
MC
440 no-ui
441 Don't build with the "UI" capability (i.e. the set of
442 features enabling text based prompts).
443
444 enable-unit-test
445 Enable additional unit test APIs. This should not typically
446 be used in production deployments.
447
448 enable-weak-ssl-ciphers
449 Build support for SSL/TLS ciphers that are considered "weak"
450 (e.g. RC4 based ciphersuites).
451
452 zlib
453 Build with support for zlib compression/decompression.
454
455 zlib-dynamic
456 Like "zlib", but has OpenSSL load the zlib library
457 dynamically when needed. This is only supported on systems
458 where loading of shared libraries is supported.
459
460 386
5ae5dc96
AP
461 In 32-bit x86 builds, when generating assembly modules,
462 use the 80386 instruction set only (the default x86 code
463 is more efficient, but requires at least a 486). Note:
464 This doesn't affect code generated by compiler, you're
465 likely to complement configuration command line with
466 suitable compiler-specific option.
d5957691 467
84a68336
MC
468 enable-tls1_3
469 TODO(TLS1.3): Make this enabled by default
470 Build support for TLS1.3. Note: This is a WIP feature and
471 does not currently interoperate with other TLS1.3
472 implementations! Use with caution!!
473
ecabf05e
MC
474 no-<prot>
475 Don't build support for negotiating the specified SSL/TLS
476 protocol (one of ssl, ssl3, tls, tls1, tls1_1, tls1_2, dtls,
477 dtls1 or dtls1_2). If "no-tls" is selected then all of tls1,
478 tls1_1 and tls1_2 are disabled. Similarly "no-dtls" will
479 disable dtls1 and dtls1_2. The "no-ssl" option is synonymous
480 with "no-ssl3". Note this only affects version negotiation.
481 OpenSSL will still provide the methods for applications to
482 explicitly select the individual protocol versions.
483
484 no-<prot>-method
485 As for no-<prot> but in addition do not build the methods for
486 applications to explicitly select individual protocol
487 versions.
488
489 enable-<alg>
490 Build with support for the specified algorithm, where <alg>
42e22c7c 491 is one of: md2 or rc5.
ecabf05e
MC
492
493 no-<alg>
494 Build without support for the specified algorithm, where
495 <alg> is one of: bf, blake2, camellia, cast, chacha, cmac,
42e22c7c 496 des, dh, dsa, ecdh, ecdsa, idea, md4, mdc2, ocb, poly1305,
e2562bbb
F
497 rc2, rc4, rmd160, scrypt, seed or whirlpool. The "ripemd"
498 algorithm is deprecated and if used is synonymous with rmd160.
ecabf05e
MC
499
500 -Dxxx, -lxxx, -Lxxx, -fxxx, -mXXX, -Kxxx
501 These system specific options will be passed through to the
502 compiler to allow you to define preprocessor symbols, specify
503 additional libraries, library directories or other compiler
5ae5dc96
AP
504 options. It might be worth noting that some compilers
505 generate code specifically for processor the compiler
506 currently executes on. This is not necessarily what you might
507 have in mind, since it might be unsuitable for execution on
508 other, typically older, processor. Consult your compiler
509 documentation.
b1fe6b43 510
79e259e3 511
4109b97c
RE
512 Installation in Detail
513 ----------------------
c9f06e7f 514
4109b97c 515 1a. Configure OpenSSL for your operation system automatically:
c9f06e7f 516
b32b8961
RL
517 NOTE: This is not available on Windows.
518
ea24fe29 519 $ ./config [[ options ]] # Unix
2acd8ec7
RL
520
521 or
522
ea24fe29 523 $ @config [[ options ]] ! OpenVMS
2acd8ec7
RL
524
525 For the remainder of this text, the Unix form will be used in all
526 examples, please use the appropriate form for your platform.
c9f06e7f 527
4109b97c 528 This guesses at your operating system (and compiler, if necessary) and
b1fe6b43 529 configures OpenSSL based on this guess. Run ./config -t to see
db209ec2
UM
530 if it guessed correctly. If you want to use a different compiler, you
531 are cross-compiling for another platform, or the ./config guess was
532 wrong for other reasons, go to step 1b. Otherwise go to step 2.
c9f06e7f 533
b1fe6b43
UM
534 On some systems, you can include debugging information as follows:
535
ea24fe29 536 $ ./config -d [[ options ]]
b1fe6b43 537
c9f06e7f 538 1b. Configure OpenSSL for your operating system manually
79e259e3 539
4109b97c
RE
540 OpenSSL knows about a range of different operating system, hardware and
541 compiler combinations. To see the ones it knows about, run
79e259e3 542
2acd8ec7
RL
543 $ ./Configure # Unix
544
545 or
546
547 $ perl Configure # All other platforms
548
549 For the remainder of this text, the Unix form will be used in all
550 examples, please use the appropriate form for your platform.
79e259e3 551
4109b97c
RE
552 Pick a suitable name from the list that matches your system. For most
553 operating systems there is a choice between using "cc" or "gcc". When
554 you have identified your system (and if necessary compiler) use this name
2acd8ec7 555 as the argument to Configure. For example, a "linux-elf" user would
4109b97c 556 run:
79e259e3 557
ea24fe29 558 $ ./Configure linux-elf [[ options ]]
79e259e3 559
5bb9e2b4 560 If your system isn't listed, you will have to create a configuration
ea24fe29 561 file named Configurations/{{ something }}.conf and add the correct
5bb9e2b4
RL
562 configuration for your system. See the available configs as examples
563 and read Configurations/README and Configurations/README.design for
564 more information.
79e259e3 565
5bb9e2b4
RL
566 The generic configurations "cc" or "gcc" should usually work on 32 bit
567 Unix-like systems.
568
fa28bfd6
MC
569 Configure creates a build file ("Makefile" on Unix, "makefile" on Windows
570 and "descrip.mms" on OpenVMS) from a suitable template in Configurations,
571 and defines various macros in include/openssl/opensslconf.h (generated from
572 include/openssl/opensslconf.h.in).
79e259e3 573
2acd8ec7
RL
574 1c. Configure OpenSSL for building outside of the source tree.
575
576 OpenSSL can be configured to build in a build directory separate from
577 the directory with the source code. It's done by placing yourself in
578 some other directory and invoking the configuration commands from
579 there.
580
581 Unix example:
582
583 $ mkdir /var/tmp/openssl-build
584 $ cd /var/tmp/openssl-build
ea24fe29 585 $ /PATH/TO/OPENSSL/SOURCE/config [[ options ]]
2acd8ec7
RL
586
587 or
588
ea24fe29 589 $ /PATH/TO/OPENSSL/SOURCE/Configure {{ target }} [[ options ]]
2acd8ec7
RL
590
591 OpenVMS example:
592
593 $ set default sys$login:
594 $ create/dir [.tmp.openssl-build]
595 $ set default [.tmp.openssl-build]
ea24fe29 596 $ @[PATH.TO.OPENSSL.SOURCE]config [[ options ]]
2acd8ec7
RL
597
598 or
599
ea24fe29 600 $ @[PATH.TO.OPENSSL.SOURCE]Configure {{ target }} [[ options ]]
2acd8ec7 601
b32b8961
RL
602 Windows example:
603
604 $ C:
605 $ mkdir \temp-openssl
606 $ cd \temp-openssl
ea24fe29 607 $ perl d:\PATH\TO\OPENSSL\SOURCE\Configure {{ target }} [[ options ]]
b32b8961 608
2acd8ec7
RL
609 Paths can be relative just as well as absolute. Configure will
610 do its best to translate them to relative paths whenever possible.
611
462ba4f6 612 2. Build OpenSSL by running:
79e259e3 613
2acd8ec7
RL
614 $ make # Unix
615 $ mms ! (or mmk) OpenVMS
b32b8961 616 $ nmake # Windows
79e259e3 617
2acd8ec7
RL
618 This will build the OpenSSL libraries (libcrypto.a and libssl.a on
619 Unix, corresponding on other platforms) and the OpenSSL binary
620 ("openssl"). The libraries will be built in the top-level directory,
621 and the binary will be in the "apps" subdirectory.
79e259e3 622
1e62cc12
RS
623 If the build fails, look at the output. There may be reasons
624 for the failure that aren't problems in OpenSSL itself (like
625 missing standard headers). If you are having problems you can
626 get help by sending an email to the openssl-users email list (see
627 https://www.openssl.org/community/mailinglists.html for details). If
628 it is a bug with OpenSSL itself, please open an issue on GitHub, at
629 https://github.com/openssl/openssl/issues. Please review the existing
630 ones first; maybe the bug was already reported or has already been
d5957691 631 fixed.
b1fe6b43 632
ea24fe29
RL
633 (If you encounter assembler error messages, try the "no-asm"
634 configuration option as an immediate fix.)
436a376b 635
91174a91
UM
636 Compiling parts of OpenSSL with gcc and others with the system
637 compiler will result in unresolved symbols on some systems.
638
462ba4f6 639 3. After a successful build, the libraries should be tested. Run:
79e259e3 640
2acd8ec7
RL
641 $ make test # Unix
642 $ mms test ! OpenVMS
b32b8961 643 $ nmake test # Windows
79e259e3 644
6616429d 645 NOTE: you MUST run the tests from an unprivileged account (or
f430ba31 646 disable your privileges temporarily if your platform allows it).
6616429d 647
2e996acf
RL
648 If some tests fail, look at the output. There may be reasons for
649 the failure that isn't a problem in OpenSSL itself (like a
650 malfunction with Perl). You may want increased verbosity, that
651 can be accomplished like this:
652
be6bdab6 653 $ make VERBOSE=1 test # Unix
2acd8ec7 654
e8173157 655 $ mms /macro=(VERBOSE=1) test ! OpenVMS
2e996acf 656
be6bdab6 657 $ nmake VERBOSE=1 test # Windows
b32b8961 658
2e996acf
RL
659 If you want to run just one or a few specific tests, you can use
660 the make variable TESTS to specify them, like this:
661
2acd8ec7
RL
662 $ make TESTS='test_rsa test_dsa' test # Unix
663 $ mms/macro="TESTS=test_rsa test_dsa" test ! OpenVMS
b32b8961 664 $ nmake TESTS='test_rsa test_dsa' test # Windows
2e996acf 665
2acd8ec7 666 And of course, you can combine (Unix example shown):
2e996acf 667
be6bdab6 668 $ make VERBOSE=1 TESTS='test_rsa test_dsa' test
2e996acf
RL
669
670 You can find the list of available tests like this:
671
2acd8ec7 672 $ make list-tests # Unix
5bb9e2b4 673 $ mms list-tests ! OpenVMS
b32b8961 674 $ nmake list-tests # Windows
2e996acf 675
d40b0622
RL
676 Have a look at the manual for the perl module Test::Harness to
677 see what other HARNESS_* variables there are.
678
2e996acf 679 If you find a problem with OpenSSL itself, try removing any
2acd8ec7
RL
680 compiler optimization flags from the CFLAGS line in Makefile and
681 run "make clean; make" or corresponding.
2e996acf 682
fa28bfd6 683 Please send bug reports to <rt@openssl.org>.
b1fe6b43 684
b3e718e2
RL
685 For more details on how the make variables TESTS can be used,
686 see section TESTS in Detail below.
687
462ba4f6 688 4. If everything tests ok, install OpenSSL with
79e259e3 689
2acd8ec7
RL
690 $ make install # Unix
691 $ mms install ! OpenVMS
fa28bfd6 692 $ nmake install # Windows
2acd8ec7
RL
693
694 This will install all the software components in this directory
695 tree under PREFIX (the directory given with --prefix or its
696 default):
697
698 Unix:
699
700 bin/ Contains the openssl binary and a few other
701 utility scripts.
702 include/openssl
703 Contains the header files needed if you want
704 to build your own programs that use libcrypto
705 or libssl.
706 lib Contains the OpenSSL library files.
707 lib/engines Contains the OpenSSL dynamically loadable engines.
ea24fe29
RL
708
709 share/man/man1 Contains the OpenSSL command line man-pages.
710 share/man/man3 Contains the OpenSSL library calls man-pages.
711 share/man/man5 Contains the OpenSSL configuration format man-pages.
712 share/man/man7 Contains the OpenSSL other misc man-pages.
713
714 share/doc/openssl/html/man1
715 share/doc/openssl/html/man3
716 share/doc/openssl/html/man5
717 share/doc/openssl/html/man7
2acd8ec7
RL
718 Contains the HTML rendition of the man-pages.
719
720 OpenVMS ('arch' is replaced with the architecture name, "Alpha"
d178ddb3
RL
721 or "ia64", 'sover' is replaced with the shared library version
722 (0101 for 1.1), and 'pz' is replaced with the pointer size
723 OpenSSL was built with):
2acd8ec7 724
d178ddb3
RL
725 [.EXE.'arch'] Contains the openssl binary.
726 [.EXE] Contains a few utility scripts.
2acd8ec7
RL
727 [.include.openssl]
728 Contains the header files needed if you want
729 to build your own programs that use libcrypto
730 or libssl.
731 [.LIB.'arch'] Contains the OpenSSL library files.
d178ddb3 732 [.ENGINES'sover''pz'.'arch']
2acd8ec7
RL
733 Contains the OpenSSL dynamically loadable engines.
734 [.SYS$STARTUP] Contains startup, login and shutdown scripts.
735 These define appropriate logical names and
736 command symbols.
d178ddb3
RL
737 [.SYSTEST] Contains the installation verification procedure.
738 [.HTML] Contains the HTML rendition of the manual pages.
2acd8ec7
RL
739
740
741 Additionally, install will add the following directories under
742 OPENSSLDIR (the directory given with --openssldir or its default)
743 for you convenience:
744
745 certs Initially empty, this is the default location
746 for certificate files.
747 private Initially empty, this is the default location
748 for private key files.
749 misc Various scripts.
60cdb821 750
e5f3045f
BM
751 Package builders who want to configure the library for standard
752 locations, but have the package installed somewhere else so that
753 it can easily be packaged, can use
754
2acd8ec7
RL
755 $ make DESTDIR=/tmp/package-root install # Unix
756 $ mms/macro="DESTDIR=TMP:[PACKAGE-ROOT]" install ! OpenVMS
e5f3045f 757
3c65577f 758 The specified destination directory will be prepended to all
2acd8ec7 759 installation target paths.
4fd53220 760
2acd8ec7 761 Compatibility issues with previous OpenSSL versions:
4fd53220
BM
762
763 * COMPILING existing applications
764
fa28bfd6 765 OpenSSL 1.1.0 hides a number of structures that were previously
2acd8ec7
RL
766 open. This includes all internal libssl structures and a number
767 of EVP types. Accessor functions have been added to allow
768 controlled access to the structures' data.
4fd53220 769
2acd8ec7
RL
770 This means that some software needs to be rewritten to adapt to
771 the new ways of doing things. This often amounts to allocating
772 an instance of a structure explicitly where you could previously
773 allocate them on the stack as automatic variables, and using the
774 provided accessor functions where you would previously access a
775 structure's field directly.
4fd53220 776
2acd8ec7
RL
777 Some APIs have changed as well. However, older APIs have been
778 preserved when possible.
4fd53220 779
fa28bfd6
MC
780 Environment Variables
781 ---------------------
782
783 A number of environment variables can be used to provide additional control
784 over the build process. Typically these should be defined prior to running
785 config or Configure. Not all environment variables are relevant to all
786 platforms.
787
788 AR
789 The name of the ar executable to use.
790
ed43fe73
RL
791 BUILDFILE
792 Use a different build file name than the platform default
793 ("Makefile" on Unixly platforms, "makefile" on native Windows,
794 "descrip.mms" on OpenVMS). This requires that there is a
795 corresponding build file template. See Configurations/README
796 for further information.
797
fa28bfd6
MC
798 CC
799 The compiler to use. Configure will attempt to pick a default
800 compiler for your platform but this choice can be overridden
801 using this variable. Set it to the compiler executable you wish
802 to use, e.g. "gcc" or "clang".
803
804 CROSS_COMPILE
805 This environment variable has the same meaning as for the
806 "--cross-compile-prefix" Configure flag described above. If both
807 are set then the Configure flag takes precedence.
808
809 NM
810 The name of the nm executable to use.
811
812 OPENSSL_LOCAL_CONFIG_DIR
813 OpenSSL comes with a database of information about how it
bf98d9da
RL
814 should be built on different platforms as well as build file
815 templates for those platforms. The database is comprised of
816 ".conf" files in the Configurations directory. The build
817 file templates reside there as well as ".tmpl" files. See the
fa28bfd6 818 file Configurations/README for further information about the
bf98d9da
RL
819 format of ".conf" files as well as information on the ".tmpl"
820 files.
821 In addition to the standard ".conf" and ".tmpl" files, it is
822 possible to create your own ".conf" and ".tmpl" files and store
823 them locally, outside the OpenSSL source tree. This environment
824 variable can be set to the directory where these files are held
b509b6d7
BK
825 and will be considered by Configure before it looks in the
826 standard directories.
fa28bfd6
MC
827
828 PERL
d513369b 829 The name of the Perl executable to use when building OpenSSL.
758baa3d
AP
830 This variable is used in config script only. Configure on the
831 other hand imposes the interpreter by which it itself was
832 executed on the whole build procedure.
d513369b
RL
833
834 HASHBANGPERL
835 The command string for the Perl executable to insert in the
836 #! line of perl scripts that will be publically installed.
837 Default: /usr/bin/env perl
838 Note: the value of this variable is added to the same scripts
839 on all platforms, but it's only relevant on Unix-like platforms.
fa28bfd6
MC
840
841 RC
842 The name of the rc executable to use. The default will be as
843 defined for the target platform in the ".conf" file. If not
844 defined then "windres" will be used. The WINDRES environment
845 variable is synonymous to this. If both are defined then RC
846 takes precedence.
847
848 RANLIB
849 The name of the ranlib executable to use.
850
851 WINDRES
852 See RC.
853
854 Makefile targets
855 ----------------
856
857 The Configure script generates a Makefile in a format relevant to the specific
858 platform. The Makefiles provide a number of targets that can be used. Not all
859 targets may be available on all platforms. Only the most common targets are
860 described here. Examine the Makefiles themselves for the full list.
861
862 all
863 The default target to build all the software components.
864
865 clean
866 Remove all build artefacts and return the directory to a "clean"
867 state.
868
869 depend
870 Rebuild the dependencies in the Makefiles. This is a legacy
871 option that no longer needs to be used in OpenSSL 1.1.0.
872
873 install
874 Install all OpenSSL components.
875
876 install_sw
877 Only install the OpenSSL software components.
878
879 install_docs
880 Only install the OpenSSL documentation components.
881
882 install_man_docs
883 Only install the OpenSSL man pages (Unix only).
884
885 install_html_docs
886 Only install the OpenSSL html documentation.
887
888 list-tests
889 Prints a list of all the self test names.
890
891 test
892 Build and run the OpenSSL self tests.
893
894 uninstall
895 Uninstall all OpenSSL components.
896
897 update
898 This is a developer option. If you are developing a patch for
899 OpenSSL you may need to use this if you want to update
900 automatically generated files; add new error codes or add new
901 (or change the visibility of) public API functions. (Unix only).
4fd53220 902
b3e718e2
RL
903 TESTS in Detail
904 ---------------
905
906 The make variable TESTS supports a versatile set of space separated tokens
907 with which you can specify a set of tests to be performed. With a "current
908 set of tests" in mind, initially being empty, here are the possible tokens:
909
910 alltests The current set of tests becomes the whole set of available
911 tests (as listed when you do 'make list-tests' or similar).
912 xxx Adds the test 'xxx' to the current set of tests.
913 -xxx Removes 'xxx' from the current set of tests. If this is the
914 first token in the list, the current set of tests is first
915 assigned the whole set of available tests, effectively making
916 this token equivalent to TESTS="alltests -xxx"
917
918 Also, all tokens except for "alltests" may have wildcards, such as *.
919 (on Unix and Windows, BSD style wildcards are supported, while on VMS,
920 it's VMS style wildcards)
921
922 Example: All tests except for the fuzz tests:
923
924 $ make TESTS=-test_fuzz test
925
926 or (if you want to be explicit)
927
928 $ make TESTS='alltests -test_fuzz' test
929
930 Example: All tests that have a name starting with "test_ssl" but not those
931 starting with "test_ssl_":
932
933 $ make TESTS='test_ssl* -test_ssl_*' test
934
5f8d5c96
BM
935 Note on multi-threading
936 -----------------------
937
938 For some systems, the OpenSSL Configure script knows what compiler options
939 are needed to generate a library that is suitable for multi-threaded
940 applications. On these systems, support for multi-threading is enabled
941 by default; use the "no-threads" option to disable (this should never be
942 necessary).
943
944 On other systems, to enable support for multi-threading, you will have
33d50ef6 945 to specify at least two options: "threads", and a system-dependent option.
5f8d5c96
BM
946 (The latter is "-D_REENTRANT" on various systems.) The default in this
947 case, obviously, is not to include support for multi-threading (but
948 you can still use "no-threads" to suppress an annoying warning message
949 from the Configure script.)
950
35d8fa56 951 OpenSSL provides built-in support for two threading models: pthreads (found on
8b75603c
MC
952 most UNIX/Linux systems), and Windows threads. No other threading models are
953 supported. If your platform does not provide pthreads or Windows threads then
954 you should Configure with the "no-threads" option.
fcc6a1c4 955
4fa3f08f
RL
956 Notes on shared libraries
957 -------------------------
fcc6a1c4 958
ce942199
MC
959 For most systems the OpenSSL Configure script knows what is needed to
960 build shared libraries for libcrypto and libssl. On these systems
961 the shared libraries will be created by default. This can be suppressed and
962 only static libraries created by using the "no-shared" option. On systems
963 where OpenSSL does not know how to build shared libraries the "no-shared"
964 option will be forced and only static libraries will be created.
96c930dd 965
4fa3f08f
RL
966 Shared libraries are named a little differently on different platforms.
967 One way or another, they all have the major OpenSSL version number as
968 part of the file name, i.e. for OpenSSL 1.1.x, 1.1 is somehow part of
969 the name.
970
971 On most POSIXly platforms, shared libraries are named libcrypto.so.1.1
972 and libssl.so.1.1.
973
974 on Cygwin, shared libraries are named cygcrypto-1.1.dll and cygssl-1.1.dll
975 with import libraries libcrypto.dll.a and libssl.dll.a.
976
977 On Windows build with MSVC or using MingW, shared libraries are named
978 libcrypto-1_1.dll and libssl-1_1.dll for 32-bit Windows, libcrypto-1_1-x64.dll
979 and libssl-1_1-x64.dll for 64-bit x86_64 Windows, and libcrypto-1_1-ia64.dll
980 and libssl-1_1-ia64.dll for IA64 Windows. With MSVC, the import libraries
981 are named libcrypto.lib and libssl.lib, while with MingW, they are named
b77b6127 982 libcrypto.dll.a and libssl.dll.a.
4fa3f08f
RL
983
984 On VMS, shareable images (VMS speak for shared libraries) are named
985 ossl$libcrypto0101_shr.exe and ossl$libssl0101_shr.exe. However, when
986 OpenSSL is specifically built for 32-bit pointers, the shareable images
987 are named ossl$libcrypto0101_shr32.exe and ossl$libssl0101_shr32.exe
988 instead, and when built for 64-bit pointers, they are named
989 ossl$libcrypto0101_shr64.exe and ossl$libssl0101_shr64.exe.
990
96c930dd
LJ
991 Note on random number generation
992 --------------------------------
993
994 Availability of cryptographically secure random numbers is required for
995 secret key generation. OpenSSL provides several options to seed the
996 internal PRNG. If not properly seeded, the internal PRNG will refuse
997 to deliver random bytes and a "PRNG not seeded error" will occur.
998 On systems without /dev/urandom (or similar) device, it may be necessary
fa28bfd6 999 to install additional support software to obtain a random seed.
96c930dd
LJ
1000 Please check out the manual pages for RAND_add(), RAND_bytes(), RAND_egd(),
1001 and the FAQ for more information.
4a9476dd 1002