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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user