diff options
author | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2019-09-21 00:01:04 +0200 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2019-09-21 11:35:02 +0200 |
commit | 387bbce45bfe9c0bccbd2c84206ca7719d463740 (patch) | |
tree | 07a7b98cfbfd2ad786e43f6796dc724a2b84be4c /crypto/build.info | |
parent | Use the correct maximum indent (diff) | |
download | openssl-387bbce45bfe9c0bccbd2c84206ca7719d463740.tar.xz openssl-387bbce45bfe9c0bccbd2c84206ca7719d463740.zip |
Configure: add missing dependency to fix parallel builds on Windows
The issue was encountered when testing parallel builds of OpenSSL on
Windows using `jom` instead of `nmake`. The builds persistently failed
with the following error message because the generated file "buildinf.h"
did not exist yet.
crypto\info.c(15): fatal error C1083:
cannot open include file: "buildinf.h": No such file or directory
Apparently this error does not occur on Linux because `make` parallelizes
the builds differently such that `crypto\cversion.c`, which has an
explicit dependency on `buildinf.h`, gets compiled first. Also, the
include dependency was added only recently in commit 096978f0990.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9960)
Diffstat (limited to '')
-rw-r--r-- | crypto/build.info | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/build.info b/crypto/build.info index 6c77f95108..5d3b123d69 100644 --- a/crypto/build.info +++ b/crypto/build.info @@ -82,6 +82,7 @@ SOURCE[../providers/fips]=$UTIL_COMMON DEFINE[../providers/fips]=$UTIL_DEFINE +DEPEND[info.o]=buildinf.h DEPEND[cversion.o]=buildinf.h GENERATE[buildinf.h]=../util/mkbuildinf.pl "$(CC) $(LIB_CFLAGS) $(CPPFLAGS_Q)" "$(PLATFORM)" DEPEND[buildinf.h]=../configdata.pm |