VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.2/INSTALL.md@ 108206

最後變更 在這個檔案從108206是 108206,由 vboxsync 提交於 6 週 前

openssl-3.3.2: Exported all files to OSE and removed .scm-settings ​bugref:10757

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette