summaryrefslogtreecommitdiff
path: root/methods.py
diff options
context:
space:
mode:
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/methods.py b/methods.py
index d8e90a8da5..2d4dc4921f 100644
--- a/methods.py
+++ b/methods.py
@@ -667,3 +667,6 @@ def get_compiler_version(env):
return match.group().split('.')
else:
return None
+
+def use_gcc(env):
+ return 'gcc' in os.path.basename(env["CC"])