mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-23 04:32:12 +00:00
Merge remote-tracking branch
'origin/GP-4704_d-millar_endianness_fix--SQUASHED' into patch (Closes #6656)
This commit is contained in:
commit
627e3f14fa
@ -104,7 +104,7 @@ def get_arch():
|
||||
|
||||
def get_endian():
|
||||
parm = gdb.parameter('endian')
|
||||
if parm != 'auto':
|
||||
if not parm in ['', 'auto', 'default']:
|
||||
return parm
|
||||
# Once again, we have to hack using the human-readable 'show'
|
||||
show = gdb.execute('show endian', to_string=True)
|
||||
@ -132,7 +132,7 @@ def get_osabi():
|
||||
def compute_ghidra_language():
|
||||
# First, check if the parameter is set
|
||||
lang = gdb.parameter('ghidra-language')
|
||||
if lang != 'auto':
|
||||
if not lang in ['', 'auto', 'default']:
|
||||
return lang
|
||||
|
||||
# Get the list of possible languages for the arch. We'll need to sift
|
||||
@ -157,7 +157,7 @@ def compute_ghidra_language():
|
||||
def compute_ghidra_compiler(lang):
|
||||
# First, check if the parameter is set
|
||||
comp = gdb.parameter('ghidra-compiler')
|
||||
if comp != 'auto':
|
||||
if not comp in ['', 'auto', 'default']:
|
||||
return comp
|
||||
|
||||
# Check if the selected lang has specific compiler recommendations
|
||||
|
Loading…
Reference in New Issue
Block a user