diff options
Diffstat (limited to 'Tools/jit/build.py')
-rw-r--r-- | Tools/jit/build.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/jit/build.py b/Tools/jit/build.py index 1afd0c76bad..a0733005929 100644 --- a/Tools/jit/build.py +++ b/Tools/jit/build.py @@ -39,11 +39,15 @@ if __name__ == "__main__": parser.add_argument( "-v", "--verbose", action="store_true", help="echo commands as they are run" ) + parser.add_argument( + "--cflags", help="additional flags to pass to the compiler", default="" + ) args = parser.parse_args() for target in args.target: target.debug = args.debug target.force = args.force target.verbose = args.verbose + target.cflags = args.cflags target.pyconfig_dir = args.pyconfig_dir target.build( comment=comment, |