diff --git a/dmoj/executors/compiled_executor.py b/dmoj/executors/compiled_executor.py index d59a2f1ff..1e655e7a5 100644 --- a/dmoj/executors/compiled_executor.py +++ b/dmoj/executors/compiled_executor.py @@ -133,6 +133,7 @@ def create_compile_process(self, args: List[str]) -> TracedPopen: # so that we can allow it as writeable, rather than of all of /tmp. assert self._dir is not None env['TMPDIR'] = self._dir + print(f'{args=}, {env=}, {self._dir=}, {self.compiler_read_fs=}, {self.compiler_write_fs=}, {self.compiler_required_dirs=}') proc = TracedPopen( [utf8bytes(a) for a in args],