Advertisement
Guest User

Untitled

a guest
Nov 20th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. -o main.o main.cpp
  2. main.cpp:27:29: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
  3. main(int argc, char *argv[])
  4. ^
  5. g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. -o mainwindow.o mainwindow.cpp
  6. mainwindow.cpp: In member function ‘bool MainWindow::saveAs()’:
  7. mainwindow.cpp:266:1: warning: no return statement in function returning non-void [-Wreturn-type]
  8. }
  9. ^
  10. mainwindow.cpp: In member function ‘bool MainWindow::save()’:
  11. mainwindow.cpp:358:1: warning: no return statement in function returning non-void [-Wreturn-type]
  12. }
  13. ^
  14. mainwindow.cpp: In member function ‘void MainWindow::ensureWorkspaces()’:
  15. mainwindow.cpp:203:35: warning: ‘parent’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  16. runProcess = new QProcess(parent);
  17. ^
  18. mainwindow.cpp: In member function ‘void MainWindow::onExitCleanup()’:
  19. mainwindow.cpp:213:35: warning: ‘parent’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  20. runProcess = new QProcess(parent);
  21. ^
  22. mainwindow.cpp: In member function ‘void MainWindow::callInitScript()’:
  23. mainwindow.cpp:383:44: warning: ‘parent’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  24. QProcess *myProcess = new QProcess(parent);
  25. ^
  26. mainwindow.cpp: In member function ‘void MainWindow::stopRunningSynths()’:
  27. mainwindow.cpp:393:44: warning: ‘parent’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  28. QProcess *myProcess = new QProcess(parent);
  29. ^
  30. mainwindow.cpp: In member function ‘void MainWindow::runCode()’:
  31. mainwindow.cpp:287:35: warning: ‘parent’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  32. runProcess = new QProcess(parent);
  33. ^
  34. /usr/lib64/qt4/bin/moc -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. mainwindow.h -o moc_mainwindow.cpp
  35. g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. -o moc_mainwindow.o moc_mainwindow.cpp
  36. /usr/lib64/qt4/bin/rcc -name application application.qrc -o qrc_application.cpp
  37. g++ -c -pipe -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include -I. -o qrc_application.o qrc_application.cpp
  38. g++ -Wl,-O1 -Wl,-z,relro -o application main.o mainwindow.o moc_mainwindow.o qrc_application.o -L/usr/lib64 -lqscintilla2 -lQtGui -lQtCore -lpthread
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement