nightmare666 / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

Update gmock svn externals definition to point to a newer version #458

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The svn externals definition of src/testing currently points to gmock revision 
175, which has issues when compiled with clang 3.0 (see the attached log).

    $ svn propget svn:externals src
    testing -r175 http://googlemock.googlecode.com/svn/trunk
    $ CC=clang CXX=clang++ ./configure
    $ make check    # FAILED

After pointing to the HEAD of gmock, the compilation of breakpad unit tests 
goes through.

    $ svn propset svn:externals src 'testing http://googlemock.googlecode.com/svn/trunk'
    $ svn up
    $ CC=clang CXX=clang++ ./configure
    $ make check    # PASSED

Original issue reported on code.google.com by benc...@chromium.org on 15 Dec 2011 at 6:23

Attachments: