File: gcc.py

package info (click to toggle)
monkeystudio 1.8.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 39,732 kB
  • ctags: 20,476
  • sloc: cpp: 131,398; ansic: 33,969; python: 770; sh: 268; makefile: 138; cs: 69; php: 44
file content (206 lines) | stat: -rw-r--r-- 10,560 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# coding=utf8

import sys

import parsing
from string import Template

file_name = r"[\w\d\./\\\-]+"
number = "\d+"
compiler = "(gcc|g\+\+|mingw32-gcc|mingw32-g\+\+)[\-\d\.]*" #on Mac version could be included, such as g++-4.0
source_file = file_name + "\.[cpmh]{1,3}" # .cpp .c .h .m .mm

## Error
regEx = Template("^($file_name):($number):[\d:]* (error:|undefined reference) [^\\n]+")
error =parsing.Pattern(regEx.substitute(file_name = file_name, number = number),
								   type = 'error',
								   file = "%1",
								   line = "%2")

error.setComment('Error (usualy syntax)')

error.test("src/main.cpp:20: error: expected initializer before 's'",
				type = 'error',
				file = 'src/main.cpp',
				line = '20',
				text = "src/main.cpp:20: error: expected initializer before 's'",
				hint = "src/main.cpp:20: error: expected initializer before 's'")

error.test("/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/main.cpp:30: undefined reference to `fake()'\n",
				type = 'error',
				file = '/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/main.cpp',
				line = '30',
				text = "/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/main.cpp:30: undefined reference to `fake()'",
				hint = "/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/main.cpp:30: undefined reference to `fake()'")

error.test("src/ui/UIMonkeyProjectSettings.cpp:26: error: expected `;' before 'setWindowTitle'\n",
				type = 'error',
				file = 'src/ui/UIMonkeyProjectSettings.cpp',
				line = '26',
				text = "src/ui/UIMonkeyProjectSettings.cpp:26: error: expected `;' before 'setWindowTitle'",
				hint = "src/ui/UIMonkeyProjectSettings.cpp:26: error: expected `;' before 'setWindowTitle'")

text = "/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/xupmanager/ui/UIXUPManager.cpp:313: undefined reference to `pRecentsManager::recentProjectOpenPath() const'\n"
error.test(	text,
					type = 'error',
					file = '/home/a/code/monkeyrepos/v2/branches/dev/monkey/src/xupmanager/ui/UIXUPManager.cpp',
					line = '313',
					text = text[:-1],
					hint = text[:-1])

text = "src/views/TreeView.cpp:20: error: cannot allocate an object of abstract type 'TreeViewModel'\n"
error.test(	text,
					type = 'error',
					file = 'src/views/TreeView.cpp',
					line = '20',
					text = text[:-1],
					hint = text[:-1])

text = "src/SearchWidgetModel.h:6:35: error: AbstractSearchBackend.h: No such file or directory\n"
error.test(	text,
					type = 'error',
					file = 'src/SearchWidgetModel.h',
					line = '6',
					text = text[:-1],
					hint = text[:-1])

## Warning
regEx = Template("^($file_name):($number): warning: [^\\n]+")
warning =parsing.Pattern(regEx.substitute(file_name = file_name, number = number),
								   type = 'warning',
								   file = "%1",
								   line = "%2")

warning.setComment('Warning')

warning.test("src/MSVCMake.cpp:122: warning: unused parameter ‘s’\n",
				type = 'warning',
				file = 'src/MSVCMake.cpp',
				line = '122',
				text = "src/MSVCMake.cpp:122: warning: unused parameter ‘s’",
				hint = "src/MSVCMake.cpp:122: warning: unused parameter ‘s’")

# windows specific
warning.test("src\CmlLineManager.cpp:11: warning: unused variable 'z'\n",
					 type = 'warning',
					 file = 'src\CmlLineManager.cpp',
					 line = '11',
					 text = "src\CmlLineManager.cpp:11: warning: unused variable 'z'",
					 hint = "src\CmlLineManager.cpp:11: warning: unused variable 'z'")

## Linking failed, probably undefined reference
regEx = "^collect2: ld returned 1 exit status"
link_failed =parsing.Pattern(regEx,
									type = 'error',
									text = 'Linking failed. Check Output dock for more info')

link_failed.setComment('Linking failed')
link_failed.test('collect2: ld returned 1 exit status\n',
				 type = 'error',
				 text = 'Linking failed. Check Output dock for more info',
				 hint = 'collect2: ld returned 1 exit status')

## Building file
regEx = Template("^$compiler[^\\n]+ ($source_file)")
compiling =parsing.Pattern(regEx.substitute(compiler=compiler, source_file=source_file),
										   type = 'compiling',
										   text = 'Compiling %2...',
										   file = '%2')

compiling.setComment('Compiling')

text = \
'g++ -c -pipe -g -D_REENTRANT -Wall -W -fPIC -DQT_SHARED -DPLUGIN_NAME="\"MSVCMake\"" -DQT_PLUGIN -DQT_GUI_LIB -DQT_CORE_LIB' + \
' -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui' + \
' -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I../../../qscintilla/QScintilla-gpl-2-snapshot-20071024/Qt4' + \
' -I../../../qscintilla/QScintilla-gpl-2-snapshot-20071024/Qt4/Qsci -I../../../qscintilla/QScintilla-gpl-2-snapshot-20071024/include' + \
' -I../../../qscintilla/QScintilla-gpl-2-snapshot-20071024/src -I../../../fresh -I../../../fresh/objects -I../../../fresh/widgets' + \
' -I../../../ctags/ctags -I../../../monkey -I../../../monkey -I../../../monkey/src -I. -Isrc -I../../../monkey/src/maininterface' + \
' -I../../../monkey/src/maininterface/ui -I../../../monkey/src/workspace -I../../../monkey/src/recentsmanager' + \
' -I../../../monkey/src/qscintillamanager -I../../../monkey/src/qscintillamanager/ui -I../../../monkey/src/ctags manager' + \
' -I../../../monkey/src/variablesmanager -I../../../monkey/src/templatesmanager -I../../../monkey/src/templatesmanager/ui' + \
' -I../../../monkey/src/abbreviationsmanager -I../../../monkey/src/abbreviationsmanager/ui -I../../../monkey/src/toolsmanager' + \
' -I../../../monkey/src/toolsmanager/ui -I../../../monkey/src/consolemanager -I/home/a/code/monkeyrepos/v2/trunk/monkey/src/consolemanager/ui' + \
' -I../../../monkey/src/pluginsmanager -I../../../monkey/src/pluginsmanager/ui -I../../../monkey/src/projectsmanager' + \
' -I../../../monkey/src/projectsmanager/ui -I/usr/X11R6/include -I../../../build/debug/.moc -I../../../build/debug/.ui' + \
' -o ../../../build/debug/.obj/unix/MSVCMake.o src/MSVCMake.cpp\n'
compiling.test(text,
					type = 'compiling',
					text = 'Compiling src/MSVCMake.cpp...',
					hint = text[:-1],
					file = 'src/MSVCMake.cpp')
#g++
text = "g++ -c -pipe -Wall -g -Wall -W -D_REENTRANT -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -Ieditor-src -Ieditor-src/branche1 -Ieditor-src -I/branche2 -Ibuild/debug/.moc -Ibuild/debug/.ui -o build/debug/.obj/unix/SourceFile.o editor-src/branche2/SourceFile.cpp"
compiling.test(text,
					type = 'compiling',
					text = 'Compiling editor-src/branche2/SourceFile.cpp...',
					hint = text,
					file = 'editor-src/branche2/SourceFile.cpp')
#gcc
text = "gcc -c -pipe -Wall -g -Wall -W -D_REENTRANT -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -Ieditor-src -Ieditor-src/branche1 -Ieditor-src -I/branche2 -Ibuild/debug/.moc -Ibuild/debug/.ui -o build/debug/.obj/unix/SourceFile.o editor-src/branche2/SourceFile.cpp"
compiling.test(text,
					type = 'compiling',
					text = 'Compiling editor-src/branche2/SourceFile.cpp...',
					hint = text,
					file = 'editor-src/branche2/SourceFile.cpp')

# it is windows specific
text = 'g++ -c -g -Wall -frtti -fexceptions -mthreads -DPACKAGE_NAME="\"Mirrorad\"" -DQT_DLL -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"..\..\Qt\4.4.3\include\QtCore" -I"..\..\Qt\4.4.3\include\QtCore" -I"..\..\Qt\4.4.3\include" -I"src" -I"src\ie" -I"src\ff" -I"src\ui" -I"src\opera" -I"c:\Development\Qt\4.4.3\include\ActiveQt" -I"build\debug\.moc" -I"build\debug\.ui" -I"..\..\Qt\4.4.3\mkspecs\win32-g++" -o build\debug\.obj\win32\main.o src\main.cpp\n'
compiling.test(	text,
						type = 'compiling',
						text = 'Compiling src\main.cpp...',
						file = 'src\main.cpp',
						hint = text[:-1])
# it is windows specific
text = 'mingw32-gcc -c -g -Wall -frtti -fexceptions -mthreads -DPACKAGE_NAME="\"Mirrorad\"" -DQT_DLL -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"..\..\Qt\4.4.3\include\QtCore" -I"..\..\Qt\4.4.3\include\QtCore" -I"..\..\Qt\4.4.3\include" -I"src" -I"src\ie" -I"src\ff" -I"src\ui" -I"src\opera" -I"c:\Development\Qt\4.4.3\include\ActiveQt" -I"build\debug\.moc" -I"build\debug\.ui" -I"..\..\Qt\4.4.3\mkspecs\win32-g++" -o build\debug\.obj\win32\main.o src\main.cpp\n'
compiling.test(	text,
						type = 'compiling',
						text = 'Compiling src\main.cpp...',
						file = 'src\main.cpp',
						hint = text[:-1])
# Mac
text = 'g++-4.0 -c -pipe -g -gdwarf-2 -arch i386 -Wall -W -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Trolltech/Qt-4.6.0-universal/mkspecs/macx-g++ -I. -I/usr/local/Trolltech/Qt-4.6.0-universal/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Trolltech/Qt-4.6.0-universal/include/QtCore -I/usr/local/Trolltech/Qt-4.6.0-universal/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Trolltech/Qt-4.6.0-universal/include/QtGui -I/usr/local/Trolltech/Qt-4.6.0-universal/include -Ibuild/debug/.moc -Ibuild/debug/.ui -F/usr/local/Trolltech/Qt-4.6.0-universal/lib -o build/debug/.obj/mac/UIMarketOptions.o src/UIMarketOptions.cpp'
compiling.test(	text,
						type = 'compiling',
						text = 'Compiling src/UIMarketOptions.cpp...',
						file = 'src/UIMarketOptions.cpp',
						hint = text)


# Cannot find library
regEx = "^%sld: cannot find -l([\w]+)" % file_name
no_lib =parsing.Pattern(regEx,
									type = 'error',
									text = 'Cannot find library "%1"')

no_lib.setComment('Linker cannot find library')
no_lib.test('/usr/bin/ld: cannot find -lqscintilla2d\n',
				 type = 'error',
				 text = 'Cannot find library "qscintilla2d"',
				 hint = '/usr/bin/ld: cannot find -lqscintilla2d')


#   #warning blablabla...
regEx = "^(%s):(\d+):\d+: warning: #warning ([^\\n]*)" % file_name
preprocessor_warning = parsing.Pattern(regEx,
									type = 'warning',
									file = '%1',
									line = '%2',
									text = '%3')

preprocessor_warning.setComment('#warning preprocessor dirrective')
preprocessor_warning.test('test.c:4:2: warning: #warning This is bad code!!!\n',
				 type = 'warning',
				 text = 'This is bad code!!!',
				 file = 'test.c',
				 line = '4',
				 hint = 'test.c:4:2: warning: #warning This is bad code!!!')

print '# It is a machine generated file. Do not edit it manualy!\n'

print error.generateMkSScript('GCC')
print warning.generateMkSScript('GCC')
print compiling.generateMkSScript('GCC')
print no_lib.generateMkSScript('GCC')
print link_failed.generateMkSScript('GCC')
print preprocessor_warning.generateMkSScript('GCC')