[openssl-commits] Still Failing: openssl/openssl#2669 (master - 8458f1b)
Travis CI
builds at travis-ci.org
Wed Mar 9 02:07:58 UTC 2016
Build Update for openssl/openssl
-------------------------------------
Build: #2669
Status: Still Failing
Duration: 22 minutes and 19 seconds
Commit: 8458f1b (master)
Author: Richard Levitte
Message: Redo the Unix source code generator
For assembler, we want the final target to be foo.s (lowercase s).
However, the build.info may have lines like this (note upper case S):
GENERATE[foo.S]=foo.pl
This indicates that foo.s (lowercase s) is still to be produced, but
that producing it will take an extra step via $(CC) -E. Therefore,
the following variants (simplified for display) can be generated:
GENERATE[foo.S]=foo.pl => foo.s: foo.pl
$(PERL) $foo.pl $@.S; \
$(CC) $(CFLAGS) -E -P $@.S > $@ && \
rm -f $@.S
GENERATE[foo.s]=foo.pl => foo.s: foo.pl
$(PERL) $foo.pl $@
GENERATE[foo.S]=foo.m4 => foo.s: foo.m4
m4 -B 8192 $foo.m4 > $@.S; \
$(CC) $(CFLAGS) -E -P $@.S > $@ && \
rm -f $@.S
GENERATE[foo.s]=foo.m4 => foo.s: foo.m4
m4 -B 8192 $foo.m4 > $@
Reviewed-by: Andy Polyakov <appro at openssl.org>
View the changeset: https://github.com/openssl/openssl/compare/b2d6aed499e5...8458f1bfab1b
View the full build log and details: https://travis-ci.org/openssl/openssl/builds/114654532
--
You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mta.openssl.org/pipermail/openssl-commits/attachments/20160309/7a8c282b/attachment.html>
More information about the openssl-commits
mailing list