Skip to content

Commit 1646380

Browse files
committed
Also removed comments
1 parent 7d956dc commit 1646380

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

easybuild/easyblocks/l/llvm.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -824,29 +824,16 @@ def build_step(self, verbose=False, path=None):
824824
print_msg("Building stage 1/1")
825825
change_dir(self.llvm_obj_dir_stage1)
826826
super(EB_LLVM, self).build_step(verbose, path)
827-
# import shutil
828-
# change_dir(self.builddir)
829-
# print_msg("TESTING!!!: Copying from previosu build (REMOVE ME)")
830-
# shutil.rmtree('llvm.obj.1', ignore_errors=True)
831-
# shutil.copytree(os.path.join('..', 'llvm.obj.1'), 'llvm.obj.1')
832827
if self.cfg['bootstrap']:
833828
self.log.info("Building stage 2")
834829
print_msg("Building stage 2/3")
835830
self.configure_step2()
836831
self.build_with_prev_stage(self.llvm_obj_dir_stage1, self.llvm_obj_dir_stage2)
837-
# change_dir(self.builddir)
838-
# print_msg("TESTING!!!: Copying from previosu build (REMOVE ME)")
839-
# shutil.rmtree('llvm.obj.2', ignore_errors=True)
840-
# shutil.copytree(os.path.join('..', 'llvm.obj.2'), 'llvm.obj.2')
841832

842833
self.log.info("Building stage 3")
843834
print_msg("Building stage 3/3")
844835
self.configure_step3()
845836
self.build_with_prev_stage(self.llvm_obj_dir_stage2, self.llvm_obj_dir_stage3)
846-
# change_dir(self.builddir)
847-
# print_msg("TESTING!!!: Copying from previosu build (REMOVE ME)")
848-
# shutil.rmtree('llvm.obj.3', ignore_errors=True)
849-
# shutil.copytree(os.path.join('..', 'llvm.obj.3'), 'llvm.obj.3')
850837

851838
def _para_test_step(self, parallel=1):
852839
"""Run test suite with the specified number of parallel jobs for make."""

0 commit comments

Comments
 (0)