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] Visual Studio IDA Pro OCaml (For the verifier only) Python 1:END_DEPENDENCIES 1:NOTES[notes on attempted build] error with step3 in the installation. Python does not recognize the create_project call. 1:END_NOTES 2:BUILD_BY[name] student1 2:BUILD_ENVIRONMENT[operating system 32 vs 64] Ubuntu 12.04.3 root@ubuntu:/repro/asplos12/ClementsKZ12# 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 root@ubuntu:/repro/ccs12/WartellMHL12# 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.148 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 No ReadMe File present in the /source dir , ambiguity in the execution of Python scripts. 2:DEPENDENCIES[list of dependencies with where to get them] 2:END_DEPENDENCIES 2:NOTES[notes on attempted build] 2:END_NOTES 3:BUILD_BY[name] student3 3:BUILD_ENVIRONMENT[operating system 32 vs 64] Windows7 64 3:DEPENDENCIES[list of dependencies with where to get them] Visual Studio IDA Pro OCaml (For the verifier only) Python 2.7 3:END_DEPENDENCIES 3:NOTES[notes on attempted build] Python runs this, and returns False. I'm leaving this for now as I'm not sure what Binary files it wants in the binary_path field. ~Note: Going back to this knowning what to put in the binary_path field here is the input/output I got. >>> create_project(".\\results", "C:\Users\student\Downloads\Notepad++Portable\Notepad++Portable.exe", "C:\Program Files ( x86)\Microsoft Visual Studio 11.0\Common7\Tools\vavars32.bat") >>> (Here it did enter in lots of files results folder) >>> synthesize_dll("C:\Users\student\Documents\GitHub\\repro\ccs12\WartellMHL12\src\Obfuscation\\results") C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results\synth.bat C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL C:\Program Files (x86)\Microsoft V isual Studio 11.0\Common7\Tools♂avars32.bat 'C:\Program' is not recognized as an internal or external command, operable program or batch file. C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL C:\Users\student\Documents\GitHub\re pro\ccs12\WartellMHL12\src\Obfuscation\modules\synth.bat Running omega policy generator on policy.txt... "C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\modules\absynth\bin\omega.exe" "policy.txt" "d ata\wrappers" 'vcvars32.bat' is not recognized as an internal or external command, operable program or batch file. Compiling generated monitor code... 'CL' is not recognized as an internal or external command, ~Note: Spaces in file names mess up CALL command on batch files, I edited the batch file it called to contain string send to call in quotes and will try again. >>> synthesize_dll("C:\Users\student\Documents\GitHub\\repro\ccs12\WartellMHL12\src\Obfuscation\\results") C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools♂avars32.bat" The filename, directory name, or volume label syntax is incorrect. C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL "C:\Users\student\Documents\GitHub\r epro\ccs12\WartellMHL12\src\Obfuscation\modules\synth.bat" Running omega policy generator on policy.txt... "C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\modules\absynth\bin\omega.exe" "policy.txt" "d ata\wrappers" 'vcvars32.bat' is not recognized as an internal or external command, operable program or batch file. Compiling generated monitor code... 'CL' is not recognized as an internal or external command, operable program or batch file. 9009 ~Note: I noticed "Tools♂avars32.bat" this in the call, I'm going to fix that female gender sign and 'a' and make it "\vs" to make it call same file as I put in before C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\vsvars32.bat" ERROR: Cannot determine the location of the VS Common Tools folder. C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\results>CALL "C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\modules\synth.bat" Running omega policy generator on policy.txt... "C:\Users\student\Documents\GitHub\repro\ccs12\WartellMHL12\src\Obfuscation\modules\absynth\bin\omega.exe" "policy.txt" "data\wrappers" 'vcvars32.bat' is not recognized as an internal or external command, operable program or batch file. Compiling generated monitor code... 'CL' is not recognized as an internal or external command, operable program or batch file. 9009 ~Note: After looking around a bit it seems because I didn't have "C:\Windows\System32" set in PATH Environment Variable, now that that has been fixed I'll try again ~Note: After fixing that and restarting and running again, it still gives same error ~Note: coming back to the problem I look more at the vsvars32.bat file, it seems an error (ERROR: Cannot determine the location of the VS Common Tools folder) is because Visual Studio has updated to a version 12 and this script is still looking for a version 11. ~Note: since we don't know what version to use we are calling this a build fail 3:END_NOTES