| Submitter | Peter Seebach |
|---|---|
| Date | Feb. 21, 2013, 11:31 p.m. |
| Message ID | <20130221173150.5a8764e4@e6410-2> |
| Download | mbox | patch |
| Permalink | /patch/44997/ |
| State | New |
| Headers | show |
Comments
Patch
--- a/meta/recipes-core/uclibc/uclibc-config.inc +++ b/meta/recipes-core/uclibc/uclibc-config.inc @@ -73,9 +73,11 @@ def map_uclibc_abi(o, d): return 'ARM_EABI' else: return 'ARM_OABI' - # FIXME: This is inaccurate! Handle o32, n32, n64 elif re.match('^mips.*64$', arch): - return 'MIPS_N64_ABI' + if o.endswith('gnun32'): + return 'MIPS_N32_ABI' + else: + return 'MIPS_N64_ABI' elif re.match('^mips.*', arch): return 'MIPS_O32_ABI' return ""