Changes between Initial Version and Version 1 of Ticket #241
- Timestamp:
- Mar 5, 2012, 11:02:30 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #241
- Property Milestone → libc-0.6.5
- Property Status new → accepted
- Property Summary libc build failure → libc: build failure with newer gcc/binutils
- Property Version 0.7 → 0.6
-
Ticket #241 – Description
initial v1 1 With newer binutils fnstsw changes from using %ax to %eax:1 With newer gcc/binutils fnstsw changes from using %ax to %eax: 2 2 src/msun/i387/fenv.c 3 {{{ 3 4 int 4 5 _STD(feupdateenv)(const fenv_t *envp) … … 17 18 return (0); 18 19 } 19 20 A define may need to be created to determine which binutils is used.20 }}} 21 The code is incorrectly using int (32-bit) for a 16-bit type (FSW).