BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0003204 [buildroot] Architecture Specific minor always 04-28-08 23:01 04-28-08 23:01
Reporter Luc Perneel View Status public  
Assigned To buildroot
Priority normal Resolution open  
Status assigned   Product Version
Summary 0003204: buildroot MIPS OABI problem
Description Setting up the buildroot for MIPS (be) with OABI selects the wrong compiler options (gcc 3.4.x compiler).
Strange that for little endian the option "32" would be used, but for big endian platforms "o64"...

Patch below fixes this issue

diff -Naur buildroot.orig/target/Config.in.arch buildroot.lper/target/Config.in.arch
--- buildroot.orig/target/Config.in.arch 2008-03-19 08:15:11.000000000 +0100
+++ buildroot.lper/target/Config.in.arch 2008-04-18 08:53:25.000000000 +0200
@@ -696,7 +696,7 @@
        default iwmmxt if BR2_iwmmxt
        default 32 if BR2_mipsel && BR2_MIPS_OABI
        default n32 if BR2_mipsel && BR2_MIPS_EABI
- default o64 if BR2_mips && BR2_MIPS_OABI
+ default 32 if BR2_mips && BR2_MIPS_OABI
        default eabi if BR2_mips && BR2_MIPS_EABI
        default 64 if BR2_mips && BR2_MIPS_ABI64
        default mmixware if BR2_mmix && BR2_MMIX_ABI_native
Additional Information
Attached Files

- Relationships

There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
04-28-08 23:01 Luc Perneel New Issue
04-28-08 23:01 Luc Perneel Status new => assigned
04-28-08 23:01 Luc Perneel Assigned To  => buildroot


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker