Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1792)

Unified Diff: build/build_nexe.py

Issue 571143002: Pass -std=gnu++0x in build_nexe.py. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/build_nexe.py
===================================================================
--- build/build_nexe.py (revision 13747)
+++ build/build_nexe.py (working copy)
@@ -631,6 +631,8 @@
compile_options.append('-arch')
compile_options.append(self.arch)
elif ext in ['.cc', '.cpp']:
+ compile_options.append('-std=gnu++0x')
+ compile_options.append('-Wno-deprecated-register')
bin_name = self.GetCXXCompiler()
else:
if ext != '.h':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698