diff --git a/nuitka_build.py b/nuitka_build.py index c30defa..b8f9a21 100644 --- a/nuitka_build.py +++ b/nuitka_build.py @@ -55,6 +55,10 @@ if __name__ == '__main__': compiler.output_path = Path(out_path) sys.argv.remove('--output') sys.argv.remove(out_path) + + if '--lto=yes' in sys.argv: + compiler.use_lto = True + sys.argv.remove('--lto=yes') # 检测 --no-pyglet-opt 参数 pyglet_optimizations = True