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

Unified Diff: build/common.gypi

Issue 4638003: Add gxx_version (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Use g++ rather than gxx in comments Created 10 years, 1 month 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 | « build/cc_compiler_version.py ('k') | build/compiler_version.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 65344)
+++ build/common.gypi (working copy)
@@ -321,7 +321,10 @@
['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
# This will set gcc_version to XY if you are running gcc X.Y.*.
# This is used to tweak build flags for gcc 4.4.
- 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
+ 'gcc_version%': '<!(python <(DEPTH)/build/cc_compiler_version.py)',
+ # This will set gxx_version to XY if you are running g++ X.Y.*.
+ # This is used to tweak build flags for g++ 4.5.
+ 'gxx_version%': '<!(python <(DEPTH)/build/cxx_compiler_version.py)',
# Figure out the python architecture to decide if we build pyauto.
'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/lib/libpython<(python_ver).so.1.0)',
'conditions': [
« no previous file with comments | « build/cc_compiler_version.py ('k') | build/compiler_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698