diff options
author | Bruce Dawson <brucedawson@google.com> | 2015-01-09 11:51:09 -0800 |
---|---|---|
committer | Bruce Dawson <brucedawson@google.com> | 2015-01-09 11:51:09 -0800 |
commit | c4457a8f623bb4f09542d98bdde9c33ca932c4a3 (patch) | |
tree | 704ba286a2fd3ebac1a3b7c4fd044ac39efbae08 /build/standalone.gypi | |
parent | b9e0190938f62bf21df078e47190a62ba33ddab2 (diff) | |
download | pdfium-c4457a8f623bb4f09542d98bdde9c33ca932c4a3.tar.xz |
Only request C++11 when compiling C++ code.
Linux pdfium builds have 215 warnings of this form:
command line option -std=gnu++11 is valid for C++/ObjC++ but not for C
The obvious fix is to not request C++11 for C compilations. The only
complication was the the switch we are using is actually gnu++0x, not
gnu++11.
BUG=https://code.google.com/p/pdfium/issues/detail?id=102
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/839163002
Diffstat (limited to 'build/standalone.gypi')
-rw-r--r-- | build/standalone.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/standalone.gypi b/build/standalone.gypi index 0d650a3bdc..645b9f2b7b 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -150,9 +150,9 @@ '-pthread', '-fno-exceptions', '-fvisibility=hidden', - '-std=gnu++0x', ], 'cflags_cc': [ + '-std=gnu++0x', '-Wnon-virtual-dtor', '-fno-rtti', ], |