targets/toolchain_gcc.py
changeset 1831 56b48961cc68
parent 1777 c46ec818bdd7
child 1832 0f1081928d65
equal deleted inserted replaced
1830:e598d1acf354 1831:56b48961cc68
    30 import hashlib
    30 import hashlib
    31 
    31 
    32 includes_re = re.compile('\s*#include\s*["<]([^">]*)[">].*')
    32 includes_re = re.compile('\s*#include\s*["<]([^">]*)[">].*')
    33 
    33 
    34 
    34 
    35 class toolchain_gcc():
    35 class toolchain_gcc(object):
    36     """
    36     """
    37     This abstract class contains GCC specific code.
    37     This abstract class contains GCC specific code.
    38     It cannot be used as this and should be inherited in a target specific
    38     It cannot be used as this and should be inherited in a target specific
    39     class such as target_linux or target_win32
    39     class such as target_linux or target_win32
    40     """
    40     """