Make CCompiler more of an abstract base class.

pull/15/head
Jussi Pakkanen 12 years ago
parent 70bf9b03be
commit 3297faaaa8
  1. 3
      environment.py

@ -33,9 +33,6 @@ def detect_c_compiler(execmd):
class CCompiler(): class CCompiler():
def __init__(self, exelist): def __init__(self, exelist):
self.exelist = exelist self.exelist = exelist
def get_std_warn_flags(self):
return []
class GnuCCompiler(CCompiler): class GnuCCompiler(CCompiler):
std_warn_flags = ['-Wall'] std_warn_flags = ['-Wall']

Loading…
Cancel
Save