Skip to content

Commit 9dc8c18

Browse files
committed
Improve building OpenSSL on Windows
Add configuration option 'no-makedepend' which, according to NOTES-WINDOWS.md, "can speed up build times by up to 50%". Specifying that option appears to have no effect on other platforms. Signed-off-by: Keith W. Campbell <[email protected]>
1 parent 526b752 commit 9dc8c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

closed/openssl.gmk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ endif # CCACHE
108108

109109
build_openssl :
110110
@$(ECHO) Compiling OpenSSL in $(OPENSSL_DIR) for $(OPENSSL_TARGET)$(if $(OPENSSL_CONFIG_CFLAGS), with additional CFLAGS $(OPENSSL_CONFIG_CFLAGS))
111-
( $(OPENSSL_CONFIG_SETUP) $(CD) $(OPENSSL_DIR) && $(PERL) Configure $(OPENSSL_CONFIG_CFLAGS) $(OPENSSL_TARGET) shared )
111+
( $(OPENSSL_CONFIG_SETUP) $(CD) $(OPENSSL_DIR) && $(PERL) Configure $(OPENSSL_CONFIG_CFLAGS) $(OPENSSL_TARGET) no-makedepend shared )
112112
$(OPENSSL_PATCH)
113113
+ ( $(OPENSSL_MAKE_SETUP) $(CD) $(OPENSSL_DIR) && $(OPENSSL_MAKE) )
114114

0 commit comments

Comments
 (0)