Allow to disable apps building with no-apps

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21212)
This commit is contained in:
Vladimír Kotal 2023-06-15 10:02:57 +02:00 committed by Tomas Mraz
parent 7197abddb8
commit ff88545e02
3 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ jobs:
opt: [ opt: [
386, 386,
no-afalgeng, no-afalgeng,
no-apps,
no-aria, no-aria,
no-asan, no-asan,
no-asm, no-asm,

View File

@ -408,6 +408,7 @@ my @dtls = qw(dtls1 dtls1_2);
my @disablables = ( my @disablables = (
"acvp-tests", "acvp-tests",
"afalgeng", "afalgeng",
"apps",
"argon2", "argon2",
"aria", "aria",
"asan", "asan",

View File

@ -583,6 +583,11 @@ access to algorithm internals that are not normally accessible.
Additional information related to ACVP can be found at Additional information related to ACVP can be found at
<https://github.com/usnistgov/ACVP>. <https://github.com/usnistgov/ACVP>.
### no-apps
Do not build apps, e.g. the openssl program. This is handy for minimization.
This option also disables tests.
### no-asm ### no-asm
Do not use assembler code. Do not use assembler code.