• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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"""g++ compiler configuration for debug
18"""
19from parts.config import ConfigValues, configuration
20
21
22def map_default_version(env):
23    return env['GCC_VERSION']
24
25
26config = configuration(map_default_version)
27
28config.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        ],
46        CXXFLAGS=[
47            # modern C++ features support
48            #'-std=c++0x',
49            # modern C++ features with gcc extensions
50            '-std=gnu++11'
51        ],
52        CPPDEFINES=[
53            '_FORTIFY_SOURCE=2',
54            '__int64=long long',
55        ],
56        LINKFLAGS=[
57            '-fstack-protector',
58        ], ))
59