Home | History | Annotate | Download | only in debug
      1 ############################################################################
      2 # Copyright 2017 Intel Corporation
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #     http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 ############################################################################
     16 # pylint: disable=locally-disabled, invalid-name, missing-docstring
     17 """gcc compiler configuration for debug
     18 """
     19 from parts.config import ConfigValues, configuration
     20 
     21 
     22 def map_default_version(env):
     23     return env['GCC_VERSION']
     24 
     25 
     26 config = configuration(map_default_version)
     27 
     28 config.VersionRange(
     29     "3-*",
     30     append=ConfigValues(
     31         CCFLAGS=[
     32             '',
     33             # produce debugging information
     34             '-g',
     35             # disable optimization
     36             '-O0',
     37             # treat warnings as errors
     38             '-Werror',
     39             # enable all warnings
     40             '-Wall',
     41             # extra warnings
     42             '-Wextra',
     43             # pedantic warnings
     44             # '-Wpedantic',
     45             # disable warnings due to gcc 4.8.5 issues
     46             '-Wno-missing-braces',
     47             '-Wno-missing-field-initializers',
     48             '-Wno-unknown-pragmas',
     49             '-Wno-unused-function',
     50             # do not warn about unused but set variables
     51             '-Wno-unused-but-set-variable',
     52             # do not warn about multiline comments
     53             '-Wno-comment',
     54         ],
     55         CPPDEFINES=[
     56             '__int64=long long',
     57         ],
     58         LINKFLAGS=[
     59             '-fstack-protector',
     60         ], ))
     61