Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9686


Ignore:
Timestamp:
Oct 3, 2013, 11:17:47 PM (11 years ago)
Author:
landauf
Message:

disabled warning which was added to -Wall in GCC 4.8 (see http://gcc.gnu.org/gcc-4.8/porting_to.html) which triggered lots of warnings in Boost's header files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/CompilerConfigGCC.cmake

    r9674 r9686  
    101101ADD_COMPILER_FLAGS("-Wno-deprecated" CXX CACHE)
    102102
     103# Since GCC 4.8 -Wall includes -Wunused-local-typedefs which triggers lots of warnings
     104# in Boost headers, hence we disable it
     105ADD_COMPILER_FLAGS("-Wno-unused-local-typedefs" CXX CACHE)
     106
    103107# Always show why a precompiled header file could not be used
    104108ADD_COMPILER_FLAGS("-Winvalid-pch" CXX CACHE)
Note: See TracChangeset for help on using the changeset viewer.