Skip to content

Commit

Permalink
Move project-specific flags to common.gypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
hokein committed Aug 11, 2016
1 parent 42a5b1f commit fc36048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 2 additions & 0 deletions common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
'-Wno-return-type',
'-Wno-gnu-folding-constant',
'-Wno-shift-negative-value',
'-Wno-varargs', # https://git.io/v6Olj
],
},
'conditions': [
Expand All @@ -117,6 +118,7 @@
'-Wno-deprecated-declarations',
'-Wno-return-type',
'-Wno-shift-negative-value',
'-Wno-varargs', # https://git.io/v6Olj
# Required when building as shared library.
'-fPIC',
],
Expand Down
7 changes: 0 additions & 7 deletions toolchain.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
# Set this to true when building with Clang.
'clang%': 1,

'clang_warning_flags': [
'-Wno-undefined-var-template', # https://crbug.com/604888
'-Wno-varargs', # https://git.io/v6Olj
],

'variables': {
# The minimum macOS SDK version to use.
'mac_sdk_min%': '10.10',
Expand Down Expand Up @@ -109,15 +104,13 @@
'cflags_cc': [
'-std=c++11',
],
'cflags': [ '<@(clang_warning_flags)' ],
'xcode_settings': {
'CC': '<(make_clang_dir)/bin/clang',
'LDPLUSPLUS': '<(make_clang_dir)/bin/clang++',
'OTHER_CFLAGS': [
'-fcolor-diagnostics',
],

'WARNING_CFLAGS': ['<@(clang_warning_flags)'],
'GCC_C_LANGUAGE_STANDARD': 'c99', # -std=c99
'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11', # -std=c++11
Expand Down

0 comments on commit fc36048

Please sign in to comment.