Add missing changes from ARCH removal.

I somehow didn't upload these fixes from the review. So doing that
now.

Test: Unit tests pass.
Change-Id: Ia17e480eb972db4f7be6947c0e6567632c65431f
This commit is contained in:
Christopher Ferris
2023-03-13 14:50:48 -07:00
parent 462b91aae1
commit a47d6d090f
3 changed files with 2 additions and 9 deletions

View File

@@ -44,10 +44,7 @@ def main():
args = parser.parse_args()
if args.arch:
if args.arch == "arm" or args.arch == "x86":
symbol.ARCH_IS_32BIT = True
else:
symbol.ARCH_IS_32BIT = False
symbol.ARCH_IS_32BIT = not "64" in args.arch
if args.symbols_dir:
symbol.SYMBOLS_DIR = args.symbols_dir
if args.symbols_zip: