[openssl-dev] Record of configuration parameters?

Richard Levitte levitte at openssl.org
Wed Mar 9 16:07:02 UTC 2016


In message <D305B260.286BC%uri at ll.mit.edu> on Wed, 9 Mar 2016 15:58:45 +0000, "Blumenthal, Uri - 0553 - MITLL" <uri at ll.mit.edu> said:

uri> Say, one configures an openssl build with parameters:
uri> 
uri> ./Configure darwin-whatever —prefix=/whereever enable-this enable-that
uri> …etc
uri> 
uri> My question is – if after the fact I need to check what parameters
uri> exactly were passed to the configuration command, how can I do it?
uri> With “normal” autotools, there’s a record preserved in the
uri> “config.log” file. Is there an analog of that here?

In the master branch, the best is to look in configdata.pm.
$config{perlargv} contains your arguments, that line looks like this:

      perlargv => [ "linux-x86_64", "-Wa,--noexecstack" ],

In the earlier releases, you will find the corresponding data in
Makefile, such as this:

    CONFIGURE_ARGS=linux-x86_64 -Wa,--noexecstack

Cheers,
Richard

-- 
Richard Levitte         levitte at openssl.org
OpenSSL Project         http://www.openssl.org/~levitte/


More information about the openssl-dev mailing list