Skip to content

Commit 537241d

Browse files
committed
Kill debug texts
1 parent db4e10a commit 537241d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

tools/Python/mcrun/mccode.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,6 @@ def x_path(file):
185185
pass
186186
else:
187187
cflags += '-lm ' # math library
188-
189-
print("Past CFLAGS")
190188

191189
# Special support for conda environment with compilers included. To be
192190
# conservative we (for now?) only apply this when both CONDA_PREFIX and
@@ -312,10 +310,9 @@ def x_path(file):
312310
if os.environ.get('CONDA_PREFIX'):
313311
if "${CONDA_PREFIX}" in cflags:
314312
cflags=cflags.replace("${CONDA_PREFIX}",os.environ.get('CONDA_PREFIX'))
315-
print("PRE LINTER")
313+
316314
# Lint or compile?
317315
if options.c_lint is not None:
318-
print("LINTER")
319316
args = [self.cpath] + lexer.split(mccode_config.compilation['CLINTERFLAGS'])
320317
Process(lexer.quote(mccode_config.compilation['CLINT'])).run(args)
321318
LOG.info('End of linting %s', self.cpath)

0 commit comments

Comments
 (0)