|
@@ -73,10 +73,12 @@ arches = {
|
|
'microblazebe': {
|
|
'microblazebe': {
|
|
'conditions': ['BR2_microblazebe'],
|
|
'conditions': ['BR2_microblazebe'],
|
|
'prefix': 'microblaze',
|
|
'prefix': 'microblaze',
|
|
|
|
+ 'gdbserver': False
|
|
},
|
|
},
|
|
'microblazeel': {
|
|
'microblazeel': {
|
|
'conditions': ['BR2_microblazeel'],
|
|
'conditions': ['BR2_microblazeel'],
|
|
'prefix': 'microblazeel',
|
|
'prefix': 'microblazeel',
|
|
|
|
+ 'gdbserver': False
|
|
},
|
|
},
|
|
'mips32': {
|
|
'mips32': {
|
|
# Not sure it could be used by other mips32 variants?
|
|
# Not sure it could be used by other mips32 variants?
|
|
@@ -122,6 +124,7 @@ arches = {
|
|
'openrisc': {
|
|
'openrisc': {
|
|
'conditions': ['BR2_or1k'],
|
|
'conditions': ['BR2_or1k'],
|
|
'prefix': 'or1k',
|
|
'prefix': 'or1k',
|
|
|
|
+ 'gdbserver': False,
|
|
},
|
|
},
|
|
'powerpc-440fp': {
|
|
'powerpc-440fp': {
|
|
# Not sure it could be used by other powerpc variants?
|
|
# Not sure it could be used by other powerpc variants?
|
|
@@ -311,6 +314,9 @@ class Toolchain:
|
|
for c in arches[self.arch]['conditions']:
|
|
for c in arches[self.arch]['conditions']:
|
|
depends.append(c)
|
|
depends.append(c)
|
|
|
|
|
|
|
|
+ if not arches[self.arch].get('gdbserver', True):
|
|
|
|
+ selects.append("BR2_TOOLCHAIN_EXTERNAL_HAS_NO_GDBSERVER")
|
|
|
|
+
|
|
for frag in self.fragment:
|
|
for frag in self.fragment:
|
|
# libc type
|
|
# libc type
|
|
if frag.startswith("BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC"):
|
|
if frag.startswith("BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC"):
|