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 [email protected]; \
                                        $(CC) $(CFLAGS) -E -P [email protected] > $@ && \
                                        rm -f [email protected]

    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 > [email protected]; \
                                        $(CC) $(CFLAGS) -E -P [email protected] > $@ && \
                                        rm -f [email protected]

    GENERATE[foo.s]=foo.m4  =>  foo.s: foo.m4
                                        m4 -B 8192 $foo.m4 > $@

Reviewed-by: Andy Polyakov <[email protected]>

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

_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to