Changes between Initial Version and Version 5 of Ticket #41167


Ignore:
Timestamp:
Aug 28, 2014, 9:55:51 PM (10 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

ola @0.9.2 fails to build on the 10.7 and 10.8 buildslaves, with this error:

clang: error: argument unused during compilation: '-pthread'

An unused argument would normally only be a warning, but -Werror is turning the warning into an error.

I've disabled the use of -Werror in r124835.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #41167

    • Property Cc egall@… ryandesign@… added
    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
    • Property Summary changed from Add a +nowarnings variant to work around issues with the new compiler to ola: Add a +nowarnings variant to work around issues with the new compiler
  • Ticket #41167 – Description

    initial v5  
    22The new compiler that comes with XCode 5 is failing with :
    33
     4{{{
    45#warning Use of the header <ext/hash_map> is deprecated.
     6}}}
    57
    6 This variant disables fatal warnings  (-Werror) so users can continue to build until the next release with the fixes is out.
     8This variant disables fatal warnings  (`-Werror`) so users can continue to build until the next release with the fixes is out.