Lines Matching full:version
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
22 # 2018-05-22 Bernard The first version
49 version = 'unknown'
52 if CheckHeader(rtconfig, '_newlib_version.h'): # get version from _newlib_version.h file
57 version = re.search(r'\"([^"]+)\"', line).groups()[0]
59 elif CheckHeader(rtconfig, 'newlib.h'): # get version from newlib.h
64 version = re.search(r'\"([^"]+)\"', line).groups()[0]
66 return version
103 version = None
122 if re.search('char\* version', line):
123 version = re.search(r'\"([^"]+)\"', line).groups()[0]
143 if version:
144 result += '#define GCC_VERSION "%s"\n' % version
181 str += 'const char* version = __VERSION__;\n'