Commit 23ad69ad authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

The .preprocess() method didn't work, because it didn't add the input file

    to the command-line arguments.  Fix this by adding the source filename.
parent 6dddf6be
......@@ -92,6 +92,7 @@ class UnixCCompiler(CCompiler):
pp_args[:0] = extra_preargs
if extra_postargs:
pp_args.extend(extra_postargs)
pp_args.append(source)
# We need to preprocess: either we're being forced to, or we're
# generating output to stdout, or there's a target output file and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment