Fix CID-1464802
[openssl.git] / INSTALL.md
1 Build and Install
2 =================
3
4 This document describes installation on all supported operating
5 systems (the Unix/Linux family, including macOS), OpenVMS,
6 and Windows).
7
8 Table of Contents
9 =================
10
11  - [Prerequisites](#prerequisites)
12  - [Notational Conventions](#notational-conventions)
13  - [Quick Installation Guide](#quick-installation-guide)
14    - [Building OpenSSL](#building-openssl)
15    - [Installing OpenSSL](#installing-openssl)
16  - [Configuration Options](#configuration-options)
17    - [API Level](#api-level)
18    - [Cross Compile Prefix](#cross-compile-prefix)
19    - [Build Type](#build-type)
20    - [Directories](#directories)
21    - [Compiler Warnings](#compiler-warnings)
22    - [ZLib Flags](#zlib-flags)
23    - [Seeding the Random Generator](#seeding-the-random-generator)
24    - [Setting the FIPS HMAC key](#setting-the-FIPS-HMAC-key)
25    - [Enable and Disable Features](#enable-and-disable-features)
26    - [Displaying configuration data](#displaying-configuration-data)
27  - [Installation Steps in Detail](#installation-steps-in-detail)
28    - [Configure](#configure-openssl)
29    - [Build](#build-openssl)
30    - [Test](#test-openssl)
31    - [Install](#install-openssl)
32  - [Advanced Build Options](#advanced-build-options)
33    - [Environment Variables](#environment-variables)
34    - [Makefile Targets](#makefile-targets)
35    - [Running Selected Tests](#running-selected-tests)
36  - [Troubleshooting](#troubleshooting)
37    - [Configuration Problems](#configuration-problems)
38    - [Build Failures](#build-failures)
39    - [Test Failures](#test-failures)
40  - [Notes](#notes)
41    - [Notes on multi-threading](#notes-on-multi-threading)
42    - [Notes on shared libraries](#notes-on-shared-libraries)
43    - [Notes on random number generation](#notes-on-random-number-generation)
44
45 Prerequisites
46 =============
47
48 To install OpenSSL, you will need:
49
50  * A "make" implementation
51  * Perl 5 with core modules (please read [NOTES.PERL](NOTES.PERL))
52  * The Perl module Text::Template (please read [NOTES.PERL](NOTES.PERL))
53  * an ANSI C compiler
54  * a development environment in the form of development libraries and C
55    header files
56  * a supported operating system
57
58 For additional platform specific requirements, solutions to specific
59 issues and other details, please read one of these:
60
61  * [NOTES.UNIX](NOTES.UNIX) - notes for Unix like systems
62  * [NOTES.VMS](NOTES.VMS) - notes related to OpenVMS
63  * [NOTES.WIN](NOTES.WIN) - notes related to the Windows platform
64  * [NOTES.DJGPP](NOTES.DJGPP) - building for DOS with DJGPP
65  * [NOTES.ANDROID](NOTES.ANDROID) - building for Android platforms (using NDK)
66  * [NOTES.VALGRIND](NOTES.VALGRIND) - testing with Valgrind
67  * [NOTES.PERL](NOTES.PERL) - some notes on Perl
68
69 Notational conventions
70 ======================
71
72 Throughout this document, we use the following conventions.
73
74 Commands
75 --------
76
77 Any line starting with a dollar sign is a command line.
78
79     $ command
80
81 The dollar sign indicates the shell prompt and is not to be entered as
82 part of the command.
83
84 Choices
85 -------
86
87 Several words in curly braces separated by pipe characters indicate a
88 **mandatory choice**, to be replaced with one of the given words.
89 For example, the line
90
91     $ echo { WORD1 | WORD2 | WORD3 }
92
93 represents one of the following three commands
94
95     $ echo WORD1
96     - or -
97     $ echo WORD2
98     - or -
99     $ echo WORD3
100
101 One or several words in square brackets separated by pipe characters
102 denote an **optional choice**.  It is similar to the mandatory choice,
103 but it can also be omitted entirely.
104
105 So the line
106
107     $ echo [ WORD1 | WORD2 | WORD3 ]
108
109 represents one of the four commands
110
111     $ echo WORD1
112     - or -
113     $ echo WORD2
114     - or -
115     $ echo WORD3
116     - or -
117     $ echo
118
119 Arguments
120 ---------
121
122 **Mandatory arguments** are enclosed in double curly braces.
123 A simple example would be
124
125     $ type {{ filename }}
126
127 which is to be understood to use the command `type` on some file name
128 determined by the user.
129
130 **Optional Arguments** are enclosed in double square brackets.
131
132     [[ options ]]
133
134 Note that the notation assumes spaces around `{`, `}`, `[`, `]`, `{{`, `}}` and
135 `[[`, `]]`.  This is to differentiate from OpenVMS directory
136 specifications, which also use [ and ], but without spaces.
137
138 Quick Installation Guide
139 ========================
140
141 If you just want to get OpenSSL installed without bothering too much
142 about the details, here is the short version of how to build and install
143 OpenSSL.  If any of the following steps fails, please consult the
144 [Installation in Detail](#installation-in-detail) section below.
145
146 Building OpenSSL
147 ----------------
148
149 Use the following commands to configure, build and test OpenSSL.
150 The testing is optional, but recommended if you intend to install
151 OpenSSL for production use.
152
153 ### Unix / Linux / macOS
154
155     $ ./Configure
156     $ make
157     $ make test
158
159 ### OpenVMS
160
161 Use the following commands to build OpenSSL:
162
163     $ perl Configure
164     $ mms
165     $ mms test
166
167 ### Windows
168
169 If you are using Visual Studio, open a Developer Command Prompt and
170 and issue the following commands to build OpenSSL.
171
172     $ perl Configure
173     $ nmake
174     $ nmake test
175
176 As mentioned in the [Choices](#choices) section, you need to pick one
177 of the four Configure targets in the first command.
178
179 Most likely you will be using the `VC-WIN64A` target for 64bit Windows
180 binaries (AMD64) or `VC-WIN32` for 32bit Windows binaries (X86).
181 The other two options are `VC-WIN64I` (Intel IA64, Itanium) and
182 `VC-CE` (Windows CE) are rather uncommon nowadays.
183
184 Installing OpenSSL
185 ------------------
186
187 The following commands will install OpenSSL to a default system location.
188
189 **Danger Zone:** even if you are impatient, please read the following two
190 paragraphs carefully before you install OpenSSL.
191
192 For security reasons the default system location is by default not writable
193 for unprivileged users.  So for the final installation step administrative
194 privileges are required.  The default system location and the procedure to
195 obtain administrative privileges depends on the operating sytem.
196 It is recommended to compile and test OpenSSL with normal user privileges
197 and use administrative privileges only for the final installation step.
198
199 On some platforms OpenSSL is preinstalled as part of the Operating System.
200 In this case it is highly recommended not to overwrite the system versions,
201 because other applications or libraries might depend on it.
202 To avoid breaking other applications, install your copy of OpenSSL to a
203 [different location](#installing-to-a-different-location) which is not in
204 the global search path for system libraries.
205
206 Finally, if you plan on using the FIPS module, you need to read the
207 [Post-installation Notes](#post-installation-notes) further down.
208
209 ### Unix / Linux / macOS
210
211 Depending on your distribution, you need to run the following command as
212 root user or prepend `sudo` to the command:
213
214     $ make install
215
216 By default, OpenSSL will be installed to
217
218     /usr/local
219
220 More precisely, the files will be installed into the  subdirectories
221
222     /usr/local/bin
223     /usr/local/lib
224     /usr/local/include
225     ...
226
227 depending on the file type, as it is custom on Unix-like operating systems.
228
229 ### OpenVMS
230
231 Use the following command to install OpenSSL.
232
233     $ mms install
234
235 By default, OpenSSL will be installed to
236
237     SYS$COMMON:[OPENSSL-'version'...]
238
239 where 'version' is the OpenSSL version number with underscores instead
240 of periods.
241
242 ### Windows
243
244 If you are using Visual Studio, open the Developer Command Prompt _elevated_
245 and issue the following command.
246
247     $ nmake install
248
249 The easiest way to elevate the Command Prompt is to press and hold down
250 the both the `<CTRL>` and `<SHIFT>` key while clicking the menu item in the
251 task menu.
252
253 The default installation location is
254
255     C:\Program Files\OpenSSL
256
257 for native binaries, or
258
259     C:\Program Files (x86)\OpenSSL
260
261 for 32bit binaries on 64bit Windows (WOW64).
262
263 #### Installing to a different location
264
265 To install OpenSSL to a different location (for example into your home
266 directory for testing purposes) run `Configure` as shown in the following
267 examples.
268
269 On Unix:
270
271     $ ./Configure --prefix=/opt/openssl --openssldir=/usr/local/ssl
272
273 On OpenVMS:
274
275     $ perl Configure --prefix=PROGRAM:[INSTALLS] --openssldir=SYS$MANAGER:[OPENSSL]
276
277 Note: if you do add options to the configuration command, please make sure
278 you've read more than just this Quick Start, such as relevant `NOTES.*` files,
279 the options outline below, as configuration options may change the outcome
280 in otherwise unexpected ways.
281
282 Configuration Options
283 =====================
284
285 There are several options to `./Configure` to customize the build (note that
286 for Windows, the defaults for `--prefix` and `--openssldir` depend on what
287 configuration is used and what Windows implementation OpenSSL is built on.
288 More notes on this in [NOTES.WIN](NOTES.WIN)):
289
290 API Level
291 ---------
292
293     --api=x.y[.z]
294
295 Build the OpenSSL libraries to support the API for the specified version.
296 If [no-deprecated](#no-deprecated) is also given, don't build with support
297 for deprecated APIs in or below the specified version number.  For example,
298 addding
299
300     --api=1.1.0 no-deprecated
301
302 will remove support for all APIs that were deprecated in OpenSSL version
303 1.1.0 or below.  This is a rather specialized option for developers.
304 If you just intend to remove all deprecated APIs up to the current version
305 entirely, just specify [no-deprecated](#no-deprecated).
306 If `--api` isn't given, it defaults to the current (minor) OpenSSL version.
307
308 Cross Compile Prefix
309 --------------------
310
311     --cross-compile-prefix=<PREFIX>
312
313 The `<PREFIX>` to include in front of commands for your toolchain.
314
315 It is likely to have to end with dash, e.g. `a-b-c-` would invoke GNU compiler
316 as `a-b-c-gcc`, etc.  Unfortunately cross-compiling is too case-specific to put
317 together one-size-fits-all instructions.  You might have to pass more flags or
318 set up environment variables to actually make it work.  Android and iOS cases
319 are discussed in corresponding `Configurations/15-*.conf` files.  But there are
320 cases when this option alone is sufficient.  For example to build the mingw64
321 target on Linux `--cross-compile-prefix=x86_64-w64-mingw32-` works.  Naturally
322 provided that mingw packages are installed.  Today Debian and Ubuntu users
323 have option to install a number of prepackaged cross-compilers along with
324 corresponding run-time and development packages for "alien" hardware.  To give
325 another example `--cross-compile-prefix=mipsel-linux-gnu-` suffices in such
326 case.
327
328 For cross compilation, you must [configure manually](#manual-configuration).
329 Also, note that `--openssldir` refers to target's file system, not one you are
330 building on.
331
332 Build Type
333 ----------
334
335     --debug
336
337 Build OpenSSL with debugging symbols and zero optimization level.
338
339     --release
340
341 Build OpenSSL without debugging symbols.  This is the default.
342
343 Directories
344 -----------
345
346 ### libdir
347
348     --libdir=DIR
349
350 The name of the directory under the top of the installation directory tree
351 (see the `--prefix` option) where libraries will be installed.  By default
352 this is `lib/`. Note that on Windows only static libraries (`*.lib`) will
353 be stored in this location. Shared libraries (`*.dll`) will always be
354 installed to the `bin/` directory.
355
356 ### openssldir
357
358     --openssldir=DIR
359
360 Directory for OpenSSL configuration files, and also the default certificate
361 and key store.  Defaults are:
362
363     Unix:           /usr/local/ssl
364     Windows:        C:\Program Files\Common Files\SSL
365     OpenVMS:        SYS$COMMON:[OPENSSL-COMMON]
366
367 For 32bit Windows applications on Windows 64bit (WOW64), always replace
368 `C:\Program Files` by `C:\Program Files (x86)`.
369
370 ### prefix
371
372     --prefix=DIR
373
374 The top of the installation directory tree.  Defaults are:
375
376     Unix:           /usr/local
377     Windows:        C:\Program Files\OpenSSL
378     OpenVMS:        SYS$COMMON:[OPENSSL-'version']
379
380 Compiler Warnings
381 -----------------
382
383     --strict-warnings
384
385 This is a developer flag that switches on various compiler options recommended
386 for OpenSSL development.  It only works when using gcc or clang as the compiler.
387 If you are developing a patch for OpenSSL then it is recommended that you use
388 this option where possible.
389
390 ZLib Flags
391 ----------
392
393 ### with-zlib-include
394
395     --with-zlib-include=DIR
396
397 The directory for the location of the zlib include file.  This option is only
398 necessary if [enable-zlib](#enable-zlib) is used and the include file is not
399 already on the system include path.
400
401 ### with-zlib-lib
402
403     --with-zlib-lib=LIB
404
405 **On Unix**: this is the directory containing the zlib library.
406 If not provided the system library path will be used.
407
408 **On Windows:** this is the filename of the zlib library (with or
409 without a path).  This flag must be provided if the
410 [zlib-dynamic](#zlib-dynamic) option is not also used. If `zlib-dynamic` is used
411 then this flag is optional and defaults to `ZLIB1` if not provided.
412
413 **On VMS:** this is the filename of the zlib library (with or without a path).
414 This flag is optional and if not provided then `GNV$LIBZSHR`, `GNV$LIBZSHR32`
415 or `GNV$LIBZSHR64` is used by default depending on the pointer size chosen.
416
417 Seeding the Random Generator
418 ----------------------------
419
420     --with-rand-seed=seed1[,seed2,...]
421
422 A comma separated list of seeding methods which will be tried by OpenSSL
423 in order to obtain random input (a.k.a "entropy") for seeding its
424 cryptographically secure random number generator (CSPRNG).
425 The current seeding methods are:
426
427 ### os
428
429 Use a trusted operating system entropy source.
430 This is the default method if such an entropy source exists.
431
432 ### getrandom
433
434 Use the [getrandom(2)][man-getrandom] or equivalent system call.
435
436 [man-getrandom]: http://man7.org/linux/man-pages/man2/getrandom.2.html
437
438 ### devrandom
439
440 Use the first device from the `DEVRANDOM` list which can be opened to read
441 random bytes.  The `DEVRANDOM` preprocessor constant expands to
442
443     "/dev/urandom","/dev/random","/dev/srandom"
444
445 on most unix-ish operating systems.
446
447 ### egd
448
449 Check for an entropy generating daemon.
450
451 ### rdcpu
452
453 Use the `RDSEED` or `RDRAND` command if provided by the CPU.
454
455 ### librandom
456
457 Use librandom (not implemented yet).
458
459 ### none
460
461 Disable automatic seeding.  This is the default on some operating systems where
462 no suitable entropy source exists, or no support for it is implemented yet.
463
464 For more information, see the section [Notes on random number generation][rng]
465 at the end of this document.
466
467 [rng]: #notes-on-random-number-generation
468
469 Setting the FIPS HMAC key
470 -------------------------
471
472     --fips-key=value
473
474 As part of its self-test validation, the FIPS module must verify itself
475 by performing a SHA-256 HMAC computation on itself. The default key is
476 the SHA256 value of "the holy handgrenade of antioch" and is sufficient
477 for meeting the FIPS requirements.
478
479 To change the key to a different value, use this flag. The value should
480 be a hex string no more than 64 characters.
481
482 Enable and Disable Features
483 ---------------------------
484
485 Feature options always come in pairs, an option to enable feature `xxxx`, and
486 and option to disable it:
487
488     [ enable-xxxx | no-xxxx ]
489
490 Whether a feature is enabled or disabled by default, depends on the feature.
491 In the following list, always the non-default variant is documented: if
492 feature `xxxx` is disabled by default then `enable-xxxx` is documented and
493 if feature `xxxx` is enabled by default then `no-xxxx` is documented.
494
495 ### no-afalgeng
496
497 Don't build the AFALG engine.
498
499 This option will be forced on a platform that does not support AFALG.
500
501 ### enable-ktls
502
503 Build with Kernel TLS support.
504
505 This option will enable the use of the Kernel TLS data-path, which can improve
506 performance and allow for the use of sendfile and splice system calls on
507 TLS sockets.  The Kernel may use TLS accelerators if any are available on the
508 system.  This option will be forced off on systems that do not support the
509 Kernel TLS data-path.
510
511 ### enable-asan
512
513 Build with the Address sanitiser.
514
515 This is a developer option only.  It may not work on all platforms and should
516 never be used in production environments.  It will only work when used with
517 gcc or clang and should be used in conjunction with the [no-shared](#no-shared)
518 option.
519
520 ### no-acvp_tests
521
522 Do not build support for Automated Cryptographic Validation Protocol (ACVP)
523 tests.
524
525 This is required for FIPS validation purposes. Certain ACVP tests require
526 access to algorithm internals that are not normally accessible.
527 Additional information related to ACVP can be found at
528 <https://github.com/usnistgov/ACVP>.
529
530 ### no-asm
531
532 Do not use assembler code.
533
534 This should be viewed as debugging/troubleshooting option rather than for
535 production use.  On some platforms a small amount of assembler code may still
536 be used even with this option.
537
538 ### no-async
539
540 Do not build support for async operations.
541
542 ### no-autoalginit
543
544 Don't automatically load all supported ciphers and digests.
545
546 Typically OpenSSL will make available all of its supported ciphers and digests.
547 For a statically linked application this may be undesirable if small executable
548 size is an objective.  This only affects libcrypto.  Ciphers and digests will
549 have to be loaded manually using `EVP_add_cipher()` and `EVP_add_digest()`
550 if this option is used.  This option will force a non-shared build.
551
552 ### no-autoerrinit
553
554 Don't automatically load all libcrypto/libssl error strings.
555
556 Typically OpenSSL will automatically load human readable error strings.  For a
557 statically linked application this may be undesirable if small executable size
558 is an objective.
559
560 ### no-autoload-config
561
562 Don't automatically load the default `openssl.cnf` file.
563
564 Typically OpenSSL will automatically load a system config file which configures
565 default SSL options.
566
567 ### enable-buildtest-c++
568
569 While testing, generate C++ buildtest files that simply check that the public
570 OpenSSL header files are usable standalone with C++.
571
572 Enabling this option demands extra care.  For any compiler flag given directly
573 as configuration option, you must ensure that it's valid for both the C and
574 the C++ compiler.  If not, the C++ build test will most likely break.  As an
575 alternative, you can use the language specific variables, `CFLAGS` and `CXXFLAGS`.
576
577 ### no-capieng
578
579 Don't build the CAPI engine.
580
581 This option will be forced if on a platform that does not support CAPI.
582
583 ### no-cmp
584
585 Don't build support for Certificate Management Protocol (CMP)
586 and Certificate Request Message Format (CRMF).
587
588 ### no-cms
589
590 Don't build support for Cryptographic Message Syntax (CMS).
591
592 ### no-comp
593
594 Don't build support for SSL/TLS compression.
595
596 If this option is enabled (the default), then compression will only work if
597 the zlib or `zlib-dynamic` options are also chosen.
598
599 ### enable-crypto-mdebug
600
601 This now only enables the `failed-malloc` feature.
602
603 ### enable-crypto-mdebug-backtrace
604
605 This is a no-op; the project uses the compiler's address/leak sanitizer instead.
606
607 ### no-ct
608
609 Don't build support for Certificate Transparency (CT).
610
611 ### no-deprecated
612
613 Don't build with support for deprecated APIs up until and including the version
614 given with `--api` (or the current version, if `--api` wasn't specified).
615
616 ### no-dgram
617
618 Don't build support for datagram based BIOs.
619
620 Selecting this option will also force the disabling of DTLS.
621
622 ### no-dso
623
624 Don't build support for loading Dynamic Shared Objects (DSO)
625
626 ### enable-devcryptoeng
627
628 Build the `/dev/crypto` engine.
629
630 This option is automatically selected on the BSD platform, in which case it can
631 be disabled with `no-devcryptoeng`.
632
633 ### no-dynamic-engine
634
635 Don't build the dynamically loaded engines.
636
637 This only has an effect in a shared build.
638
639 ### no-ec
640
641 Don't build support for Elliptic Curves.
642
643 ### no-ec2m
644
645 Don't build support for binary Elliptic Curves
646
647 ### enable-ec_nistp_64_gcc_128
648
649 Enable support for optimised implementations of some commonly used NIST
650 elliptic curves.
651
652 This option is only supported on platforms:
653
654  - with little-endian storage of non-byte types
655  - that tolerate misaligned memory references
656  - where the compiler:
657    - supports the non-standard type `__uint128_t`
658    - defines the built-in macro `__SIZEOF_INT128__`
659
660 ### enable-egd
661
662 Build support for gathering entropy from the Entropy Gathering Daemon (EGD).
663
664 ### no-engine
665
666 Don't build support for loading engines.
667
668 ### no-err
669
670 Don't compile in any error strings.
671
672 ### enable-external-tests
673
674 Enable building of integration with external test suites.
675
676 This is a developer option and may not work on all platforms.  The following
677 external test suites are currently supported:
678
679  - BoringSSL test suite
680  - Python PYCA/Cryptography test suite
681  - krb5 test suite
682
683 See the file [test/README.external](test/README.external) for further details.
684
685 ### no-filenames
686
687 Don't compile in filename and line number information (e.g.  for errors and
688 memory allocation).
689
690 ### no-fips
691
692 Don't compile the FIPS provider
693
694 ### enable-fuzz-libfuzzer, enable-fuzz-afl
695
696 Build with support for fuzzing using either libfuzzer or AFL.
697
698 These are developer options only.  They may not work on all  platforms and
699 should never be used in production environments.
700
701 See the file [fuzz/README.md](fuzz/README.md) for further details.
702
703 ### no-gost
704
705 Don't build support for GOST based ciphersuites.
706
707 Note that if this feature is enabled then GOST ciphersuites are only available
708 if the GOST algorithms are also available through loading an externally supplied
709 engine.
710
711 ### no-legacy
712
713 Don't build the legacy provider.
714
715 Disabling this also disables the legacy algorithms: MD2 (already disabled by default).
716
717 ### no-makedepend
718
719 Don't generate dependencies.
720
721 ### no-module
722
723 Don't build any dynamically loadable engines.
724
725 This also implies `no-dynamic-engine`.
726
727 ### no-multiblock
728
729 Don't build support for writing multiple records in one go in libssl
730
731 Note: this is a different capability to the pipelining functionality.
732
733 ### no-nextprotoneg
734
735 Don't build support for the Next Protocol Negotiation (NPN) TLS extension.
736
737 ### no-ocsp
738
739 Don't build support for Online Certificate Status Protocol (OCSP).
740
741 ### no-padlockeng
742
743 Don't build the padlock engine.
744
745 ### no-hw-padlock
746
747 As synonym for `no-padlockeng`.  Deprecated and should not be used.
748
749 ### no-pic
750
751 Don't build with support for Position Independent Code.
752
753 ### no-pinshared
754
755 Don't pin the shared libraries.
756
757 By default OpenSSL will attempt to stay in memory until the process exits.
758 This is so that libcrypto and libssl can be properly cleaned up automatically
759 via an `atexit()` handler.  The handler is registered by libcrypto and cleans
760 up both libraries.  On some platforms the `atexit()` handler will run on unload of
761 libcrypto (if it has been dynamically loaded) rather than at process exit.  This
762 option can be used to stop OpenSSL from attempting to stay in memory until the
763 process exits.  This could lead to crashes if either libcrypto or libssl have
764 already been unloaded at the point that the atexit handler is invoked, e.g.  on a
765 platform which calls `atexit()` on unload of the library, and libssl is unloaded
766 before libcrypto then a crash is likely to happen.  Applications can suppress
767 running of the `atexit()` handler at run time by using the
768 `OPENSSL_INIT_NO_ATEXIT` option to `OPENSSL_init_crypto()`.
769 See the man page for it for further details.
770
771 ### no-posix-io
772
773 Don't use POSIX IO capabilities.
774
775 ### no-psk
776
777 Don't build support for Pre-Shared Key based ciphersuites.
778
779 ### no-rdrand
780
781 Don't use hardware RDRAND capabilities.
782
783 ### no-rfc3779
784
785 Don't build support for RFC3779, "X.509 Extensions for IP Addresses and
786 AS Identifiers".
787
788 ### sctp
789
790 Build support for Stream Control Transmission Protocol (SCTP).
791
792 ### no-shared
793
794 Do not create shared libraries, only static ones.
795
796 See [Notes on shared libraries](#notes-on-shared-libraries) below.
797
798 ### no-sock
799
800 Don't build support for socket BIOs.
801
802 ### no-srp
803
804 Don't build support for Secure Remote Password (SRP) protocol or
805 SRP based ciphersuites.
806
807 ### no-srtp
808
809 Don't build Secure Real-Time Transport Protocol (SRTP) support.
810
811 ### no-sse2
812
813 Exclude SSE2 code paths from 32-bit x86 assembly modules.
814
815 Normally SSE2 extension is detected at run-time, but the decision whether or not
816 the machine code will be executed is taken solely on CPU capability vector.  This
817 means that if you happen to run OS kernel which does not support SSE2 extension
818 on Intel P4 processor, then your application might be exposed to "illegal
819 instruction" exception.  There might be a way to enable support in kernel, e.g.
820 FreeBSD kernel can be compiled with `CPU_ENABLE_SSE`, and there is a way to
821 disengage SSE2 code paths upon application start-up, but if you aim for wider
822 "audience" running such kernel, consider `no-sse2`.  Both the `386` and `no-asm`
823 options imply `no-sse2`.
824
825 ### enable-ssl-trace
826
827 Build with the SSL Trace capabilities.
828
829 This adds the `-trace` option to `s_client` and `s_server`.
830
831 ### no-static-engine
832
833 Don't build the statically linked engines.
834
835 This only has an impact when not built "shared".
836
837 ### no-stdio
838
839 Don't use anything from the C header file `stdio.h` that makes use of the `FILE`
840 type.  Only libcrypto and libssl can be built in this way.  Using this option will
841 suppress building the command line applications.  Additionally, since the OpenSSL
842 tests also use the command line applications, the tests will also be skipped.
843
844 ### no-tests
845
846 Don't build test programs or run any tests.
847
848 ### no-threads
849
850 Don't build with support for multi-threaded applications.
851
852 ### threads
853
854 Build with support for multi-threaded applications.  Most platforms will enable
855 this by default.  However if on a platform where this is not the case then this
856 will usually require additional system-dependent options!
857
858 See [Notes on multi-threading](#notes-on-multi-threading) below.
859
860 ### enable-trace
861
862 Build with support for the integrated tracing api.
863
864 See manual pages OSSL_trace_set_channel(3) and OSSL_trace_enabled(3) for details.
865
866 ### no-ts
867
868 Don't build Time Stamping (TS) Authority support.
869
870 ### enable-ubsan
871
872 Build with the Undefined Behaviour sanitiser (UBSAN).
873
874 This is a developer option only.  It may not work on all platforms and should
875 never be used in production environments.  It will only work when used with
876 gcc or clang and should be used in conjunction with the `-DPEDANTIC` option
877 (or the `--strict-warnings` option).
878
879 ### no-ui-console
880
881 Don't build with the User Interface (UI) console method
882
883 The User Interface console method enables text based console prompts.
884
885 ### enable-unit-test
886
887 Enable additional unit test APIs.
888
889 This should not typically be used in production deployments.
890
891 ### no-uplink
892
893 Don't build support for UPLINK interface.
894
895 ### enable-weak-ssl-ciphers
896
897 Build support for SSL/TLS ciphers that are considered "weak"
898
899 Enabling this includes for example the RC4 based ciphersuites.
900
901 ### zlib
902
903 Build with support for zlib compression/decompression.
904
905 ### zlib-dynamic
906
907 Like the zlib option, but has OpenSSL load the zlib library dynamically
908 when needed.
909
910 This is only supported on systems where loading of shared libraries is supported.
911
912 ### 386
913
914 In 32-bit x86 builds, use the 80386 instruction set only in assembly modules
915
916 The default x86 code is more efficient, but requires at least an 486 processor.
917 Note: This doesn't affect compiler generated code, so this option needs to be
918 accompanied by a corresponding compiler-specific option.
919
920 ### no-{protocol}
921
922     no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2}
923
924 Don't build support for negotiating the specified SSL/TLS protocol.
925
926 If `no-tls` is selected then all of `tls1`, `tls1_1`, `tls1_2` and `tls1_3`
927 are disabled.
928 Similarly `no-dtls` will disable `dtls1` and `dtls1_2`.  The `no-ssl` option is
929 synonymous with `no-ssl3`.  Note this only affects version negotiation.
930 OpenSSL will still provide the methods for applications to explicitly select
931 the individual protocol versions.
932
933 ### no-{protocol}-method
934
935     no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2}-method
936
937 Analogous to `no-{protocol}` but in addition do not build the methods for
938 applications to explicitly select individual protocol versions.  Note that there
939 is no `no-tls1_3-method` option because there is no application method for
940 TLSv1.3.
941
942 Using individual protocol methods directly is deprecated.  Applications should
943 use `TLS_method()` instead.
944
945 ### enable-{algorithm}
946
947     enable-{md2|rc5}
948
949 Build with support for the specified algorithm.
950
951 ### no-{algorithm}
952
953     no-{aria|bf|blake2|camellia|cast|chacha|cmac|
954         des|dh|dsa|ecdh|ecdsa|idea|md4|mdc2|ocb|
955         poly1305|rc2|rc4|rmd160|scrypt|seed|
956         siphash|siv|sm2|sm3|sm4|whirlpool}
957
958 Build without support for the specified algorithm.
959
960 The `ripemd` algorithm is deprecated and if used is synonymous with `rmd160`.
961
962 ### Compiler-specific options
963
964     -Dxxx, -Ixxx, -Wp, -lxxx, -Lxxx, -Wl, -rpath, -R, -framework, -static
965
966 These system specific options will be recognised and passed through to the
967 compiler to allow you to define preprocessor symbols, specify additional
968 libraries, library directories or other compiler options.  It might be worth
969 noting that some compilers generate code specifically for processor the
970 compiler currently executes on.  This is not necessarily what you might have
971 in mind, since it might be unsuitable for execution on other, typically older,
972 processor.  Consult your compiler documentation.
973
974 Take note of the [Environment Variables](#environment-variables) documentation
975 below and how these flags interact with those variables.
976
977     -xxx, +xxx, /xxx
978
979 Additional options that are not otherwise recognised are passed through as
980 they are to the compiler as well.  Unix-style options beginning with a
981 `-` or `+` and Windows-style options beginning with a `/` are recognized.
982 Again, consult your compiler documentation.
983
984 If the option contains arguments separated by spaces, then the URL-style
985 notation `%20` can be used for the space character in order to avoid having
986 to quote the option.  For example, `-opt%20arg` gets expanded to `-opt arg`.
987 In fact, any ASCII character can be encoded as %xx using its hexadecimal
988 encoding.
989
990 Take note of the [Environment Variables](#environment-variables) documentation
991 below and how these flags interact with those variables.
992
993 ### Environment Variables
994
995     VAR=value
996
997 Assign the given value to the environment variable `VAR` for `Configure`.
998
999 These work just like normal environment variable assignments, but are supported
1000 on all platforms and are confined to the configuration scripts only.
1001 These assignments override the corresponding value in the inherited environment,
1002 if there is one.
1003
1004 The following variables are used as "`make` variables" and can be used as an
1005 alternative to giving preprocessor, compiler and linker options directly as
1006 configuration.  The following variables are supported:
1007
1008     AR              The static library archiver.
1009     ARFLAGS         Flags for the static library archiver.
1010     AS              The assembler compiler.
1011     ASFLAGS         Flags for the assembler compiler.
1012     CC              The C compiler.
1013     CFLAGS          Flags for the C compiler.
1014     CXX             The C++ compiler.
1015     CXXFLAGS        Flags for the C++ compiler.
1016     CPP             The C/C++ preprocessor.
1017     CPPFLAGS        Flags for the C/C++ preprocessor.
1018     CPPDEFINES      List of CPP macro definitions, separated
1019                     by a platform specific character (':' or
1020                     space for Unix, ';' for Windows, ',' for
1021                     VMS).  This can be used instead of using
1022                     -D (or what corresponds to that on your
1023                     compiler) in CPPFLAGS.
1024     CPPINCLUDES     List of CPP inclusion directories, separated
1025                     the same way as for CPPDEFINES.  This can
1026                     be used instead of -I (or what corresponds
1027                     to that on your compiler) in CPPFLAGS.
1028     HASHBANGPERL    Perl invocation to be inserted after '#!'
1029                     in public perl scripts (only relevant on
1030                     Unix).
1031     LD              The program linker (not used on Unix, $(CC)
1032                     is used there).
1033     LDFLAGS         Flags for the shared library, DSO and
1034                     program linker.
1035     LDLIBS          Extra libraries to use when linking.
1036                     Takes the form of a space separated list
1037                     of library specifications on Unix and
1038                     Windows, and as a comma separated list of
1039                     libraries on VMS.
1040     RANLIB          The library archive indexer.
1041     RC              The Windows resource compiler.
1042     RCFLAGS         Flags for the Windows resource compiler.
1043     RM              The command to remove files and directories.
1044
1045 These cannot be mixed with compiling/linking flags given on the command line.
1046 In other words, something like this isn't permitted.
1047
1048     $ ./Configure -DFOO CPPFLAGS=-DBAR -DCOOKIE
1049
1050 Backward compatibility note:
1051
1052 To be compatible with older configuration scripts, the environment variables
1053 are ignored if compiling/linking flags are given on the command line, except
1054 for the following:
1055
1056     AR, CC, CXX, CROSS_COMPILE, HASHBANGPERL, PERL, RANLIB, RC, and WINDRES
1057
1058 For example, the following command will not see `-DBAR`:
1059
1060     $ CPPFLAGS=-DBAR ./Configure -DCOOKIE
1061
1062 However, the following will see both set variables:
1063
1064     $ CC=gcc CROSS_COMPILE=x86_64-w64-mingw32- ./Configure -DCOOKIE
1065
1066 If `CC` is set, it is advisable to also set `CXX` to ensure both the C and C++
1067 compiler are in the same "family".  This becomes relevant with
1068 `enable-external-tests` and `enable-buildtest-c++`.
1069
1070 ### Reconfigure
1071
1072     reconf
1073     reconfigure
1074
1075 Reconfigure from earlier data.
1076
1077 This fetches the previous command line options and environment from data
1078 saved in `configdata.pm` and runs the configuration process again, using
1079 these options and environment.  Note: NO other option is permitted together
1080 with `reconf`.  Note: The original configuration saves away values for ALL
1081 environment variables that were used, and if they weren't defined, they are
1082 still saved away with information that they weren't originally defined.
1083 This information takes precedence over environment variables that are
1084 defined when reconfiguring.
1085
1086 Displaying configuration data
1087 -----------------------------
1088
1089 The configuration script itself will say very little, and finishes by
1090 creating `configdata.pm`.  This perl module can be loaded by other scripts
1091 to find all the configuration data, and it can also be used as a script to
1092 display all sorts of configuration data in a human readable form.
1093
1094 For more information, please do:
1095
1096     $ ./configdata.pm --help                         # Unix
1097
1098 or
1099
1100     $ perl configdata.pm --help                      # Windows and VMS
1101
1102 Installation Steps in Detail
1103 ============================
1104
1105 Configure OpenSSL
1106 -----------------
1107
1108 ### Automatic Configuration
1109
1110 On some platform a `config` script is available which attempts to guess
1111 your operating system (and compiler, if necessary) and calls the `Configure`
1112 Perl script with appropriate target based on its guess.  Further options can
1113 be supplied to the `config` script, which will be passed on to the `Configure`
1114 script.
1115
1116 #### Unix / Linux / macOS
1117
1118     $ ./Configure [[ options ]]
1119
1120 #### OpenVMS
1121
1122     $ perl Configure [[ options ]]
1123
1124 #### Windows
1125
1126     $ perl Configure [[ options ]]
1127
1128 ### Manual Configuration
1129
1130 OpenSSL knows about a range of different operating system, hardware and
1131 compiler combinations.  To see the ones it knows about, run
1132
1133     $ ./Configure LIST                               # Unix
1134
1135 or
1136
1137     $ perl Configure LIST                            # All other platforms
1138
1139 For the remainder of this text, the Unix form will be used in all examples.
1140 Please use the appropriate form for your platform.
1141
1142 Pick a suitable name from the list that matches your system.  For most
1143 operating systems there is a choice between using cc or gcc.
1144 When you have identified your system (and if necessary compiler) use this
1145 name as the argument to `Configure`.  For example, a `linux-elf` user would
1146 run:
1147
1148     $ ./Configure linux-elf [[ options ]]
1149
1150 ### Creating your own Configuration
1151
1152 If your system isn't listed, you will have to create a configuration
1153 file named `Configurations/{{ something }}.conf` and add the correct
1154 configuration for your system.  See the available configs as examples
1155 and read [Configurations/README](Configurations/README)
1156 and [Configurations/README.design](Configurations/README.design)
1157 for more information.
1158
1159 The generic configurations `cc` or `gcc` should usually work on 32 bit
1160 Unix-like systems.
1161
1162 `Configure` creates a build file (`Makefile` on Unix, `makefile` on Windows
1163 and `descrip.mms` on OpenVMS) from a suitable template in `Configurations/`,
1164 and defines various macros in `include/openssl/configuration.h` (generated
1165 from `include/openssl/configuration.h.in`.
1166
1167 ### Out of Tree Builds
1168
1169 OpenSSL can be configured to build in a build directory separate from the
1170 source code directory.  It's done by placing yourself in some other
1171 directory and invoking the configuration commands from there.
1172
1173 #### Unix example
1174
1175     $ mkdir /var/tmp/openssl-build
1176     $ cd /var/tmp/openssl-build
1177     $ /PATH/TO/OPENSSL/SOURCE/Configure [[ options ]]
1178
1179 #### OpenVMS example
1180
1181     $ set default sys$login:
1182     $ create/dir [.tmp.openssl-build]
1183     $ set default [.tmp.openssl-build]
1184     $ perl D:[PATH.TO.OPENSSL.SOURCE]Configure [[ options ]]
1185
1186 #### Windows example
1187
1188     $ C:
1189     $ mkdir \temp-openssl
1190     $ cd \temp-openssl
1191     $ perl d:\PATH\TO\OPENSSL\SOURCE\Configure [[ options ]]
1192
1193 Paths can be relative just as well as absolute.  `Configure` will do its best
1194 to translate them to relative paths whenever possible.
1195
1196 Build OpenSSL
1197 -------------
1198
1199 Build OpenSSL by running:
1200
1201     $ make                                           # Unix
1202     $ mms                                            ! (or mmk) OpenVMS
1203     $ nmake                                          # Windows
1204
1205 This will build the OpenSSL libraries (`libcrypto.a` and `libssl.a` on
1206 Unix, corresponding on other platforms) and the OpenSSL binary
1207 (`openssl`).  The libraries will be built in the top-level directory,
1208 and the binary will be in the `apps/` subdirectory.
1209
1210 If the build fails, take a look at the [Build Failures](#build-failures)
1211 subsection of the [Troubleshooting](#troubleshooting) section.
1212
1213 Test OpenSSL
1214 ------------
1215
1216 After a successful build, and before installing, the libraries should
1217 be tested.  Run:
1218
1219     $ make test                                      # Unix
1220     $ mms test                                       ! OpenVMS
1221     $ nmake test                                     # Windows
1222
1223 **Warning:** you MUST run the tests from an unprivileged account (or disable
1224 your privileges temporarily if your platform allows it).
1225
1226 See the file [test/README.md](test/README.md) for further details.
1227
1228 Install OpenSSL
1229 ---------------
1230
1231 If everything tests ok, install OpenSSL with
1232
1233     $ make install                                   # Unix
1234     $ mms install                                    ! OpenVMS
1235     $ nmake install                                  # Windows
1236
1237 Note that in order to perform the install step above you need to have
1238 appropriate permissions to write to the installation directory.
1239
1240 The above commands will install all the software components in this
1241 directory tree under `<PREFIX>` (the directory given with `--prefix` or
1242 its default):
1243
1244 ### Unix / Linux / macOS
1245
1246     bin/           Contains the openssl binary and a few other
1247                    utility scripts.
1248     include/openssl
1249                    Contains the header files needed if you want
1250                    to build your own programs that use libcrypto
1251                    or libssl.
1252     lib            Contains the OpenSSL library files.
1253     lib/engines    Contains the OpenSSL dynamically loadable engines.
1254
1255     share/man/man1 Contains the OpenSSL command line man-pages.
1256     share/man/man3 Contains the OpenSSL library calls man-pages.
1257     share/man/man5 Contains the OpenSSL configuration format man-pages.
1258     share/man/man7 Contains the OpenSSL other misc man-pages.
1259
1260     share/doc/openssl/html/man1
1261     share/doc/openssl/html/man3
1262     share/doc/openssl/html/man5
1263     share/doc/openssl/html/man7
1264                    Contains the HTML rendition of the man-pages.
1265
1266 ### OpenVMS
1267
1268 'arch' is replaced with the architecture name, `Alpha` or `ia64`,
1269 'sover' is replaced with the shared library version (`0101` for 1.1), and
1270 'pz' is replaced with the pointer size OpenSSL was built with:
1271
1272     [.EXE.'arch']  Contains the openssl binary.
1273     [.EXE]         Contains a few utility scripts.
1274     [.include.openssl]
1275                    Contains the header files needed if you want
1276                    to build your own programs that use libcrypto
1277                    or libssl.
1278     [.LIB.'arch']  Contains the OpenSSL library files.
1279     [.ENGINES'sover''pz'.'arch']
1280                    Contains the OpenSSL dynamically loadable engines.
1281     [.SYS$STARTUP] Contains startup, login and shutdown scripts.
1282                    These define appropriate logical names and
1283                    command symbols.
1284     [.SYSTEST]     Contains the installation verification procedure.
1285     [.HTML]        Contains the HTML rendition of the manual pages.
1286
1287 ### Additional Directories
1288
1289 Additionally, install will add the following directories under
1290 OPENSSLDIR (the directory given with `--openssldir` or its default)
1291 for you convenience:
1292
1293     certs          Initially empty, this is the default location
1294                    for certificate files.
1295     private        Initially empty, this is the default location
1296                    for private key files.
1297     misc           Various scripts.
1298
1299 The installation directory should be appropriately protected to ensure
1300 unprivileged users cannot make changes to OpenSSL binaries or files, or
1301 install engines.  If you already have a pre-installed version of OpenSSL as
1302 part of your Operating System it is recommended that you do not overwrite
1303 the system version and instead install to somewhere else.
1304
1305 Package builders who want to configure the library for standard locations,
1306 but have the package installed somewhere else so that it can easily be
1307 packaged, can use
1308
1309     $ make DESTDIR=/tmp/package-root install         # Unix
1310     $ mms/macro="DESTDIR=TMP:[PACKAGE-ROOT]" install ! OpenVMS
1311
1312 The specified destination directory will be prepended to all installation
1313 target paths.
1314
1315 Compatibility issues with previous OpenSSL versions
1316 ---------------------------------------------------
1317
1318 ### COMPILING existing applications
1319
1320 Starting with version 1.1.0, OpenSSL hides a number of structures that were
1321 previously open.  This includes all internal libssl structures and a number
1322 of EVP types.  Accessor functions have been added to allow controlled access
1323 to the structures' data.
1324
1325 This means that some software needs to be rewritten to adapt to the new ways
1326 of doing things.  This often amounts to allocating an instance of a structure
1327 explicitly where you could previously allocate them on the stack as automatic
1328 variables, and using the provided accessor functions where you would previously
1329 access a structure's field directly.
1330
1331 Some APIs have changed as well.  However, older APIs have been preserved when
1332 possible.
1333
1334 Post-installation Notes
1335 -----------------------
1336
1337 With the default OpenSSL installation comes a FIPS provider module, which
1338 needs some post-installation attention, without which it will not be usable.
1339 This involves using the following command:
1340
1341     $ openssl fipsinstall
1342
1343 See the openssl-fipsinstall(1) manual for details and examples.
1344
1345 Advanced Build Options
1346 ======================
1347
1348 Environment Variables
1349 ---------------------
1350
1351 A number of environment variables can be used to provide additional control
1352 over the build process.  Typically these should be defined prior to running
1353 `Configure`.  Not all environment variables are relevant to all platforms.
1354
1355     AR
1356                    The name of the ar executable to use.
1357
1358     BUILDFILE
1359                    Use a different build file name than the platform default
1360                    ("Makefile" on Unix-like platforms, "makefile" on native Windows,
1361                    "descrip.mms" on OpenVMS).  This requires that there is a
1362                    corresponding build file template.  See Configurations/README
1363                    for further information.
1364
1365     CC
1366                    The compiler to use. Configure will attempt to pick a default
1367                    compiler for your platform but this choice can be overridden
1368                    using this variable. Set it to the compiler executable you wish
1369                    to use, e.g. gcc or clang.
1370
1371     CROSS_COMPILE
1372                    This environment variable has the same meaning as for the
1373                    "--cross-compile-prefix" Configure flag described above. If both
1374                    are set then the Configure flag takes precedence.
1375
1376     NM
1377                    The name of the nm executable to use.
1378
1379     OPENSSL_LOCAL_CONFIG_DIR
1380                    OpenSSL comes with a database of information about how it
1381                    should be built on different platforms as well as build file
1382                    templates for those platforms. The database is comprised of
1383                    ".conf" files in the Configurations directory.  The build
1384                    file templates reside there as well as ".tmpl" files. See the
1385                    file Configurations/README for further information about the
1386                    format of ".conf" files as well as information on the ".tmpl"
1387                    files.
1388                    In addition to the standard ".conf" and ".tmpl" files, it is
1389                    possible to create your own ".conf" and ".tmpl" files and store
1390                    them locally, outside the OpenSSL source tree. This environment
1391                    variable can be set to the directory where these files are held
1392                    and will be considered by Configure before it looks in the
1393                    standard directories.
1394
1395     PERL
1396                    The name of the Perl executable to use when building OpenSSL.
1397                    Only needed if builing should use a different Perl executable
1398                    than what is used to run the Configure script.
1399
1400     HASHBANGPERL
1401                    The command string for the Perl executable to insert in the
1402                    #! line of perl scripts that will be publicly installed.
1403                    Default: /usr/bin/env perl
1404                    Note: the value of this variable is added to the same scripts
1405                    on all platforms, but it's only relevant on Unix-like platforms.
1406
1407     RC
1408                    The name of the rc executable to use. The default will be as
1409                    defined for the target platform in the ".conf" file. If not
1410                    defined then "windres" will be used. The WINDRES environment
1411                    variable is synonymous to this. If both are defined then RC
1412                    takes precedence.
1413
1414     RANLIB
1415                    The name of the ranlib executable to use.
1416
1417     WINDRES
1418                    See RC.
1419
1420 Makefile Targets
1421 ----------------
1422
1423 The `Configure` script generates a Makefile in a format relevant to the specific
1424 platform.  The Makefiles provide a number of targets that can be used.  Not all
1425 targets may be available on all platforms.  Only the most common targets are
1426 described here.  Examine the Makefiles themselves for the full list.
1427
1428     all
1429                    The target to build all the software components and
1430                    documentation.
1431
1432     build_sw
1433                    Build all the software components.
1434                    THIS IS THE DEFAULT TARGET.
1435
1436     build_docs
1437                    Build all documentation components.
1438
1439     clean
1440                    Remove all build artefacts and return the directory to a "clean"
1441                    state.
1442
1443     depend
1444                    Rebuild the dependencies in the Makefiles. This is a legacy
1445                    option that no longer needs to be used since OpenSSL 1.1.0.
1446
1447     install
1448                    Install all OpenSSL components.
1449
1450     install_sw
1451                    Only install the OpenSSL software components.
1452
1453     install_docs
1454                    Only install the OpenSSL documentation components.
1455
1456     install_man_docs
1457                    Only install the OpenSSL man pages (Unix only).
1458
1459     install_html_docs
1460                    Only install the OpenSSL html documentation.
1461
1462     list-tests
1463                    Prints a list of all the self test names.
1464
1465     test
1466                    Build and run the OpenSSL self tests.
1467
1468     uninstall
1469                    Uninstall all OpenSSL components.
1470
1471     reconfigure
1472     reconf
1473                    Re-run the configuration process, as exactly as the last time
1474                    as possible.
1475
1476     update
1477                    This is a developer option. If you are developing a patch for
1478                    OpenSSL you may need to use this if you want to update
1479                    automatically generated files; add new error codes or add new
1480                    (or change the visibility of) public API functions. (Unix only).
1481
1482 Running Selected Tests
1483 ----------------------
1484
1485 You can specify a set of tests to be performed
1486 using the `make` variable `TESTS`.
1487
1488 See the section [Running Selected Tests of
1489 test/README.md](test/README.md#running-selected-tests).
1490
1491 Troubleshooting
1492 ===============
1493
1494 Configuration Problems
1495 ----------------------
1496
1497 ### Selecting the correct target
1498
1499 The `./Configure` script tries hard to guess your operating system, but in some
1500 cases it does not succeed. You will see a message like the following:
1501
1502     $ ./Configure
1503     Operating system: x86-whatever-minix
1504     This system (minix) is not supported. See file INSTALL for details.
1505
1506 Even if the automatic target selection by the `./Configure` script fails,
1507 chances are that you still might find a suitable target in the `Configurations`
1508 directory, which you can supply to the `./Configure` command,
1509 possibly after some adjustment.
1510
1511 The `Configurations/` directory contains a lot of examples of such targets.
1512 The main configuration file is [10-main.conf][], which contains all targets that
1513 are officially supported by the OpenSSL team. Other configuration files contain
1514 targets contributed by other OpenSSL users. The list of targets can be found in
1515 a Perl list `my %targets = ( ... )`.
1516
1517     my %targets = (
1518     ...
1519     "target-name" => {
1520         inherit_from     => [ "base-target" ],
1521         CC               => "...",
1522         cflags           => add("..."),
1523         asm_arch         => '...',
1524         perlasm_scheme   => "...",
1525     },
1526     ...
1527     )
1528
1529 If you call `./Configure` without arguments, it will give you a list of all
1530 known targets. Using `grep`, you can lookup the target definition in the
1531 `Configurations/` directory. For example the `android-x86_64` can be found in
1532 [Configurations/15-android.conf](Configurations/15-android.conf).
1533
1534 The directory contains two README files, which explain the general syntax and
1535 design of the configuration files.
1536
1537  - [Configurations/README](Configurations/README)
1538  - [Configurations/README.design](Configurations/README.design)
1539
1540 If you need further help, try to search the [openssl-users][] mailing list
1541 or the [GitHub Issues][] for existing solutions. If you don't find anything,
1542 you can [raise an issue][] to ask a question yourself.
1543
1544 More about our support resources can be found in the [SUPPORT][] file.
1545
1546 ### Configuration Errors
1547
1548 If the `./Configure` or `./Configure` command fails with an error message,
1549 read the error message carefully and try to figure out whether you made
1550 a mistake (e.g., by providing a wrong option), or whether the script is
1551 working incorrectly. If you think you encountered a bug, please
1552 [raise an issue][] on GitHub to file a bug report.
1553
1554 Along with a short description of the bug, please provide the complete
1555 configure command line and the relevant output including the error message.
1556
1557 Note: To make the output readable, pleace add a 'code fence' (three backquotes
1558 ` ``` ` on a separate line) before and after your output:
1559
1560      ```
1561      ./Configure [your arguments...]
1562
1563      [output...]
1564
1565      ```
1566
1567 Build Failures
1568 --------------
1569
1570 If the build fails, look carefully at the output. Try to locate and understand
1571 the error message. It might be that the compiler is already telling you
1572 exactly what you need to do to fix your problem.
1573
1574 There may be reasons for the failure that aren't problems in OpenSSL itself,
1575 for example if the compiler reports missing standard or third party headers.
1576
1577 If the build succeeded previously, but fails after a source or configuration
1578 change, it might be helpful to clean the build tree before attempting another
1579 build.  Use this command:
1580
1581     $ make clean                                     # Unix
1582     $ mms clean                                      ! (or mmk) OpenVMS
1583     $ nmake clean                                    # Windows
1584
1585 Assembler error messages can sometimes be sidestepped by using the
1586 `no-asm` configuration option.
1587
1588 Compiling parts of OpenSSL with gcc and others with the system compiler will
1589 result in unresolved symbols on some systems.
1590
1591 If you are still having problems, try to search the [openssl-users][] mailing
1592 list or the [GitHub Issues][] for existing solutions. If you think you
1593 encountered an OpenSSL bug, please [raise an issue][] to file a bug report.
1594 Please take the time to review the existing issues first; maybe the bug was
1595 already reported or has already been fixed.
1596
1597 Test Failures
1598 -------------
1599
1600 If some tests fail, look at the output.  There may be reasons for the failure
1601 that isn't a problem in OpenSSL itself (like an OS malfunction or a Perl issue).
1602
1603 You may want increased verbosity, that can be accomplished as described in
1604 section [Test Failures of test/README.md](test/README.md#test-failures).
1605
1606 You may want to selectively specify which test(s) to perform. This can be done
1607 sing the `make` variable `TESTS` as described in section [Running Selected Tests
1608 of test/README.md](test/README.md#running-selected-tests).
1609
1610 If you find a problem with OpenSSL itself, try removing any
1611 compiler optimization flags from the `CFLAGS` line in the Makefile and
1612 run `make clean; make` or corresponding.
1613
1614 To report a bug please open an issue on GitHub, at
1615 <https://github.com/openssl/openssl/issues>.
1616
1617 Notes
1618 =====
1619
1620 Notes on multi-threading
1621 ------------------------
1622
1623 For some systems, the OpenSSL `Configure` script knows what compiler options
1624 are needed to generate a library that is suitable for multi-threaded
1625 applications.  On these systems, support for multi-threading is enabled
1626 by default; use the `no-threads` option to disable (this should never be
1627 necessary).
1628
1629 On other systems, to enable support for multi-threading, you will have
1630 to specify at least two options: `threads`, and a system-dependent option.
1631 (The latter is `-D_REENTRANT` on various systems.)  The default in this
1632 case, obviously, is not to include support for multi-threading (but
1633 you can still use `no-threads` to suppress an annoying warning message
1634 from the `Configure` script.)
1635
1636 OpenSSL provides built-in support for two threading models: pthreads (found on
1637 most UNIX/Linux systems), and Windows threads.  No other threading models are
1638 supported.  If your platform does not provide pthreads or Windows threads then
1639 you should use `Configure` with the `no-threads` option.
1640
1641 Notes on shared libraries
1642 -------------------------
1643
1644 For most systems the OpenSSL `Configure` script knows what is needed to
1645 build shared libraries for libcrypto and libssl.  On these systems
1646 the shared libraries will be created by default.  This can be suppressed and
1647 only static libraries created by using the `no-shared` option.  On systems
1648 where OpenSSL does not know how to build shared libraries the `no-shared`
1649 option will be forced and only static libraries will be created.
1650
1651 Shared libraries are named a little differently on different platforms.
1652 One way or another, they all have the major OpenSSL version number as
1653 part of the file name, i.e.  for OpenSSL 1.1.x, `1.1` is somehow part of
1654 the name.
1655
1656 On most POSIX platforms, shared libraries are named `libcrypto.so.1.1`
1657 and `libssl.so.1.1`.
1658
1659 on Cygwin, shared libraries are named `cygcrypto-1.1.dll` and `cygssl-1.1.dll`
1660 with import libraries `libcrypto.dll.a` and `libssl.dll.a`.
1661
1662 On Windows build with MSVC or using MingW, shared libraries are named
1663 `libcrypto-1_1.dll` and `libssl-1_1.dll` for 32-bit Windows,
1664 `libcrypto-1_1-x64.dll` and `libssl-1_1-x64.dll` for 64-bit x86_64 Windows,
1665 and `libcrypto-1_1-ia64.dll` and `libssl-1_1-ia64.dll` for IA64 Windows.
1666 With MSVC, the import libraries are named `libcrypto.lib` and `libssl.lib`,
1667 while with MingW, they are named `libcrypto.dll.a` and `libssl.dll.a`.
1668
1669 On VMS, shareable images (VMS speak for shared libraries) are named
1670 `ossl$libcrypto0101_shr.exe` and `ossl$libssl0101_shr.exe`.  However, when
1671 OpenSSL is specifically built for 32-bit pointers, the shareable images
1672 are named `ossl$libcrypto0101_shr32.exe` and `ossl$libssl0101_shr32.exe`
1673 instead, and when built for 64-bit pointers, they are named
1674 `ossl$libcrypto0101_shr64.exe` and `ossl$libssl0101_shr64.exe`.
1675
1676 Notes on random number generation
1677 ---------------------------------
1678
1679 Availability of cryptographically secure random numbers is required for
1680 secret key generation.  OpenSSL provides several options to seed the
1681 internal CSPRNG.  If not properly seeded, the internal CSPRNG will refuse
1682 to deliver random bytes and a "PRNG not seeded error" will occur.
1683
1684 The seeding method can be configured using the `--with-rand-seed` option,
1685 which can be used to specify a comma separated list of seed methods.
1686 However in most cases OpenSSL will choose a suitable default method,
1687 so it is not necessary to explicitly provide this option.  Note also
1688 that not all methods are available on all platforms.
1689
1690 I) On operating systems which provide a suitable randomness source (in
1691 form  of a system call or system device), OpenSSL will use the optimal
1692 available  method to seed the CSPRNG from the operating system's
1693 randomness sources.  This corresponds to the option `--with-rand-seed=os`.
1694
1695 II) On systems without such a suitable randomness source, automatic seeding
1696 and reseeding is disabled (`--with-rand-seed=none`) and it may be necessary
1697 to install additional support software to obtain a random seed and reseed
1698 the CSPRNG manually.  Please check out the manual pages for `RAND_add()`,
1699 `RAND_bytes()`, `RAND_egd()`, and the FAQ for more information.
1700
1701 <!-- Links  -->
1702
1703 [openssl-users]:
1704     <https://mta.openssl.org/mailman/listinfo/openssl-users>
1705
1706 [SUPPORT]:
1707     ./SUPPORT.md
1708
1709 [GitHub Issues]:
1710     <https://github.com/openssl/openssl/issues>
1711
1712 [raise an issue]:
1713     <https://github.com/openssl/openssl/issues/new/choose>
1714
1715 [10-main.conf]:
1716     Configurations/10-main.conf