Make CCompiler more of an abstract base class.

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

@ -34,9 +34,6 @@ 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']
def __init__(self, exelist): def __init__(self, exelist):

Loading…
Cancel
Save