1:BUILD_BY[name] student5 1:BUILD_ENVIRONMENT[operating system 32 vs 64] 1:END_BUILD_ENVIRONMENT 1:DEPENDENCIES[list of dependencies with where to get them] 1:END_DEPENDENCIES 1:NOTES[notes on attempted build] Makefile returned an error, Visual Studio returned errors. Tried to debug the code but errors were still persistent. 1:END_NOTES 2:BUILD_BY[name] student4 2:BUILD_ENVIRONMENT[operating system 32 vs 64] >>>> lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 12.04.4 LTS Release: 12.04 Codename: precise >>>> uname -a Linux student-VPCSE13FX 3.2.0-60-generic #91-Ubuntu SMP Wed Feb 19 03:54:44 UTC 2014 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): 4 On-line CPU(s) list: 0-3 Thread(s) per core: 2 Core(s) per socket: 2 Socket(s): 1 NUMA node(s): 1 Vendor ID: GenuineIntel CPU family: 6 Model: 42 Stepping: 7 CPU MHz: 800.000 BogoMIPS: 4789.10 Virtualization: VT-x L1d cache: 32K L1i cache: 32K L2 cache: 256K L3 cache: 3072K NUMA node0 CPU(s): 0-3 >>>> javac -version javac 1.7.0_51 >>>> gcc --version gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 >>>> ./boost #gives version (special exec) Using Boost 1.46.1 2:END_BUILD_ENVIRONMENT 2:DEPENDENCIES[list of dependencies with where to get them] 2:END_DEPENDENCIES 2:NOTES[notes on attempted build] two components From README.txt Compile: > cd Query/ > make g++ -Wno-deprecated -O3 -c PerformanceTimer.cpp -o PerformanceTimer.o g++ -Wno-deprecated -O3 -c BitUtil.cpp -o BitUtil.o g++ -Wno-deprecated -O3 -c compact_vector.cpp -o compact_vector.o g++ -Wno-deprecated -O3 -c bit_vector.cpp -o bit_vector.o g++ -Wno-deprecated -O3 -c main.cpp -o main.o g++ -Wno-deprecated -O3 -c Util.cpp -o Util.o Util.cpp: In static member function ‘static float Util::print_mem_usage()’: Util.cpp:112:26: warning: ignoring return value of ‘int fscanf(FILE*, const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] g++ -Wno-deprecated -O3 -c Query.cpp -o Query.o g++ -Wno-deprecated -O3 -c Graph.cpp -o Graph.o g++ -Wno-deprecated -O3 -c GraphUtil.cpp -o GraphUtil.o g++ -Wno-deprecated -O3 -c IntervalQuery.cpp -o IntervalQuery.o g++ -Wno-deprecated -O3 -c GateDFSQuery.cpp -o GateDFSQuery.o g++ -Wno-deprecated -O3 -c TwohopQuery.cpp -o TwohopQuery.o g++ -Wno-deprecated -O3 -c GrailQuery.cpp -o GrailQuery.o g++ -Wno-deprecated -O3 -c TreecoverQuery.cpp -o TreecoverQuery.o g++ -Wno-deprecated -O3 -c PathtreeQuery.cpp -o PathtreeQuery.o g++ -O3 PerformanceTimer.o BitUtil.o compact_vector.o bit_vector.o main.o Util.o Query.o Graph.o GraphUtil.o IntervalQuery.o GateDFSQuery.o TwohopQuery.o GrailQuery.o TreecoverQuery.o PathtreeQuery.o -o query > cd ../ReachBackbone/ > make g++ -Wno-deprecated -O3 -c main.cpp -o main.o g++ -Wno-deprecated -O3 -c Util.cpp -o Util.o g++ -Wno-deprecated -O3 -c ReachBackbone.cpp -o ReachBackbone.o g++ -Wno-deprecated -O3 -c Graph.cpp -o Graph.o g++ -Wno-deprecated -O3 -c GraphUtil.cpp -o GraphUtil.o g++ -Wno-deprecated -O3 -c bit_vector.cpp -o bit_vector.o g++ -O3 main.o Util.o ReachBackbone.o Graph.o GraphUtil.o bit_vector.o -o rbb note from readme: Note: please look into main.cpp in corresponding directories for the detail of input arguments which should be self-explanatory. Looking at the main.cpp files in both components, each need a graph file. None is included with the release. The program compiles but doesn't include the necessary files to run. 2:END_NOTES