1:BUILD_BY[name] student0 1:BUILD_ENVIRONMENT[operating system 32 vs 64] 1:END_BUILD_ENVIRONMENT 1:DEPENDENCIES[list of dependencies with where to get them] qmake: sudo apt-get install qt3-dev-tools 1:END_DEPENDENCIES 1:NOTES[notes on attempted build] After installing qmake, make did not terminate correctly. The following error was obtained: In file included from ext/qhttpserver/src/qhttpconnection.cpp:23:0: ext/qhttpserver/src/qhttpconnection.h:26:19: fatal error: QObject: No such file or directory compilation terminated. After a quick grep, QObject was not found in that directory. 1:END_NOTES 2:BUILD_BY[name] student1 2:BUILD_ENVIRONMENT[operating system 32 vs 64] Ubuntu 12.0.4 # uname -a Linux ubuntu 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux # lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 1 On-line CPU(s) list: 0 Thread(s) per core: 1 Core(s) per socket: 1 Socket(s): 1 NUMA node(s): 1 Vendor ID: GenuineIntel CPU family: 6 Model: 58 Stepping: 9 CPU MHz: 1696.147 BogoMIPS: 3392.29 Hypervisor vendor: VMware Virtualization type: full L1d cache: 32K L1i cache: 32K L2 cache: 256K L3 cache: 3072K NUMA node0 CPU(s): 0 2:END_BUILD_ENVIRONMENT 2:DEPENDENCIES[list of dependencies with where to get them] qmake: apt-get install qt3-dev-tools 2:END_DEPENDENCIES 2:NOTES[notes on attempted build] 'make' failed due to the following error make g++ -c -m64 -pipe -Werror -std=c++11 -g -D_REENTRANT -Wall -W -DVERSION=3 -DFAST_NEFF_SHUFFLE -DCRYPTOPP -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4 -Iext/qhttpserver/src -Iext/qhttpserver/http-parser -Iext/qt-json -Iext/qxt -Isrc -Isrc -I. -o qhttpconnection.o ext/qhttpserver/src/qhttpconnection.cpp Assembler messages: Fatal error: can't create qhttpconnection.o: Permission denied cc1plus: error: unrecognized command line option ‘-std=c++11’ make: *** [qhttpconnection.o] Error 1 Action taken: # g++ --version g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. In the 'Makefile ' Changed the Flag -std=c++11 to -std=c++0x; http://stackoverflow.com/questions/10363646/compiling-c11-with-g "refer this link for more info" Could able to solve the error "cc1plus: error: unrecognized command line option ‘-std=c++11’ But still 'make' failed with the below error # make g++ -c -m64 -pipe -Werror -std=c++0x -g -D_REENTRANT -Wall -W -DVERSION=3 -DFAST_NEFF_SHUFFLE -DCRYPTOPP -DQT_NETWORK_LIB -DQT_CORE_LIB -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4 -Iext/qhttpserver/src -Iext/qhttpserver/http-parser -Iext/qt-json -Iext/qxt -Isrc -Isrc -I. -o qhttpconnection.o ext/qhttpserver/src/qhttpconnection.cpp In file included from ext/qhttpserver/src/qhttpconnection.cpp:23:0: ext/qhttpserver/src/qhttpconnection.h:26:19: fatal error: QObject: No such file or directory compilation terminated. Action taken: Exported the libraries to ~/.bashrc file export QTMOC="/usr/bin/moc-qt4" export QTFLAGS="-I/usr/include/qt4 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL" export QTLIBS="-L/usr/lib -lQtCore -lQtGui" export GLQTLIBS="-L/usr/lib -lQtCore -lQtGui -lQtOpenGL" Installed qt-sdk: #apt-get install qt-sdk #apt-get install libcrypto++-dev 'Make' compiled successfully this time, build successful 2:END_NOTES