Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change c++ std from gnu++14 to c++14 #13248

Merged
merged 1 commit into from Jun 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions toolchain.gypi
Expand Up @@ -180,7 +180,7 @@
}],
['OS=="linux" and _toolset=="target"', {
'cflags_cc': [
'-std=gnu++14',
'-std=c++14',
'-nostdinc++',
'-isystem<(libchromiumcontent_src_dir)/buildtools/third_party/libc++/trunk/include',
'-isystem<(libchromiumcontent_src_dir)/buildtools/third_party/libc++abi/trunk/include',
Expand All @@ -191,7 +191,7 @@
}],
['OS=="linux" and _toolset=="host"', {
'cflags_cc': [
'-std=gnu++14',
'-std=c++14',
],
}],
],
Expand All @@ -207,7 +207,7 @@
],
'target_defaults': {
'cflags_cc': [
'-std=gnu++14',
'-std=c++14',
],
},
}],
Expand Down