Skip to content

Commit

Permalink
bootstrap: Add missing cputype matching for sparc64
Browse files Browse the repository at this point in the history
  • Loading branch information
glaubitz committed Oct 31, 2017
1 parent 8b22e70 commit d7dec7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def default_build_triple():
raise ValueError('unknown byteorder: {}'.format(sys.byteorder))
# only the n64 ABI is supported, indicate it
ostype += 'abi64'
elif cputype == 'sparcv9':
elif cputype == 'sparcv9' or cputype == 'sparc64':
pass
else:
err = "unknown cpu type: {}".format(cputype)
Expand Down

0 comments on commit d7dec7c

Please sign in to comment.