diff options
author | Richard Levitte <levitte@openssl.org> | 2019-02-28 13:28:43 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-03-05 09:26:13 +0100 |
commit | ac4033d658e4dc210ed4552b88069b57532ba3d7 (patch) | |
tree | 14f03e7322a612277de94d232e13043edef5850b /INSTALL | |
parent | VMS: fix util/[un]local.com.in to handle attributes (diff) | |
download | openssl-ac4033d658e4dc210ed4552b88069b57532ba3d7.tar.xz openssl-ac4033d658e4dc210ed4552b88069b57532ba3d7.zip |
Configure: make C++ build tests optional and configurable
Disabled by default
Fixes #8360
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8370)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -296,6 +296,19 @@ Typically OpenSSL will automatically load a system config file which configures default ssl options. + enable-buildtest-c++ + While testing, generate C++ buildtest files that + simply check that the public OpenSSL header files + are usable standalone with C++. + + Enabling this option demands extra care. For any + compiler flag given directly as configuration + option, you must ensure that it's valid for both + the C and the C++ compiler. If not, the C++ build + test will most likely break. As an alternative, + you can use the language specific variables, CFLAGS + and CXXFLAGS. + no-capieng Don't build the CAPI engine. This option will be forced if on a platform that does not support CAPI. |