From 5c3892b317c3ecf9bf83b63a536366797fc94cfd Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 12 Aug 2024 18:08:26 -0600 Subject: [PATCH] Only build asm with --non-matching --- configure.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/configure.py b/configure.py index 83935a8..1b2b020 100755 --- a/configure.py +++ b/configure.py @@ -71,11 +71,6 @@ parser.add_argument( action="store_true", help="generate map file(s)", ) -parser.add_argument( - "--no-asm", - action="store_true", - help="don't incorporate .s files from asm directory", -) parser.add_argument( "--debug", action="store_true", @@ -128,7 +123,8 @@ config.non_matching = args.non_matching config.sjiswrap_path = args.sjiswrap if not is_windows(): config.wrapper = args.wrapper -if args.no_asm: +# Don't build asm unless we're --non-matching +if not config.non_matching: config.asm_dir = None # Tool versions