Changes between Version 6 and Version 17 of Ticket #10766
- Timestamp:
- Feb 14, 2011, 5:49:46 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10766
- Property Cc kcrisman jpflori added
-
Property
Status
changed from
new
toneeds_review
-
Property
Authors
changed from
to
François Bissey
-
Property
Reviewers
changed from
to
David Kirkby
-
Ticket #10766 – Description
v6 v17 3 3 Version 10.4.1 is the source of one really major problem on 64-bit !OpenSolaris (see #9840), as it creates a broken library libecl.so, which can't be linked to. This stops Sage building as a 64-bit application. 4 4 5 The failure of ECL to build is due to non-PIC code being present, which itself was the result of the use of a GCC extension of "computed gotos" usingin the ECL source code.5 The failure of ECL to build a fully functional 64-bit library is due to non-PIC code being present, which itself was the result of the use of a GCC extension of "computed gotos" in the ECL source code. 6 6 7 7 http://gcc.gnu.org/onlinedocs/gcc-4.5.2/gcc/Labels-as-Values.html … … 9 9 The updated ECL avoids this GCC extension on Solaris, with a result the library has no text relocation issues. 10 10 11 I'll create a new .spkg later. 11 An updated .spkg can be found at: 12 13 http://spkg-upload.googlecode.com/files/ecl-11.1.1.spkg 12 14 13 15 Dave