Revision: 3c756b1247
Author: surenspost
Date: Mon Nov 22 06:05:16 2010
Log: Fix a variable assignment and add dummy classes
http://code.google.com/p/codechecker/source/detail?r=3c756b1247
Revision: 11ace4b289
Author: surenspost
Date: Mon Nov 22 06:18:31 2010
Log: Reorg Fix #2...
http://code.google.com/p/codechecker/source/detail?r=11ace4b289
==============================================================================
Revision: 3c756b1247
Author: surenspost
Date: Mon Nov 22 06:05:16 2010
Log: Fix a variable assignment and add dummy classes
http://code.google.com/p/codechecker/source/detail?r=3c756b1247
Modified:
/src/checker/cc_backend/compiler/compile.py
=======================================
--- /src/checker/cc_backend/compiler/compile.py Mon Nov 22 05:53:21 2010
+++ /src/checker/cc_backend/compiler/compile.py Mon Nov 22 06:05:16 2010
@@ -8,7 +8,7 @@
def compile_source(self, source_filepath, lang=None):
compiler = self.get_compiler(source_filepath, lang)
- compiler.get_compile_cmd(source_filepath)
+ compile_cmd = compiler.get_compile_cmd(source_filepath)
print compile_cmd
child = subprocess.Popen(compile_cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
@@ -54,3 +54,13 @@
def get_run_cmd(self, source_path):
basename = os.path.join(self.config.abs_path, str(submission.ph))
return self.exec_string.replace("%e", basename + ".exe")
+
+#TODO: Things were breaking here
+class CPP_Compiler:
+ pass
+
+class Py_Compiler:
+ pass
+
+class Java_Compiler:
+ pass
==============================================================================
Revision: 11ace4b289
Author: surenspost
Date: Mon Nov 22 06:18:31 2010
Log: Reorg Fix #2
Fix Python Module Installation
http://code.google.com/p/codechecker/source/detail?r=11ace4b289
Added:
/src/__init__.py
Modified:
/setup.py
=======================================
--- /setup.py Mon Nov 22 05:32:23 2010
+++ /setup.py Mon Nov 22 06:18:31 2010
@@ -21,7 +21,7 @@
'checker.cc_frontend.views',
'checker.cc_frontend.forms'
],
- package_dir={'checker' : 'src'}
+ package_dir={'checker' : 'src/checker'}
)