From: Mathias Berchtold Date: Sat, 22 Apr 2023 23:10:26 +0000 (-0600) Subject: Added ability to pass additional ASFLAGS to Configure X-Git-Tag: openssl-3.2.0-alpha1~973 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9b811dc01992adcc19ce400f38adc0eb7de2a0b;p=thirdparty%2Fopenssl.git Added ability to pass additional ASFLAGS to Configure This allows additional command line options to be passed to the assembler. For example: Configure VC-WIN64A ASFLAGS=--reproducible Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/20813) --- diff --git a/Configure b/Configure index 4e4681ae8f1..a6c9af9398f 100755 --- a/Configure +++ b/Configure @@ -741,6 +741,7 @@ my @user_crossable = qw ( AR AS CC CXX CPP LD MT RANLIB RC ); # input, as opposed to the VAR=string option that override the corresponding # config target attributes my %useradd = ( + ASFLAGS => [], CPPDEFINES => [], CPPINCLUDES => [], CPPFLAGS => [],