Changes between Initial Version and Version 2 of Ticket #2180
- Timestamp:
- Feb 24, 2008, 12:26:35 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2180
- Property Owner changed from William Stein to Bobby Moretti
-
Property
Component
changed from
algebraic geometry
topackages
-
Ticket #2180 – Description
initial v2 1 1 In 2.10.2.alpha0, there appears to be a small problem with the cython skipping 2 step. 3 1) 2 step. To illustrate the bug: 3 1) Start with a 2.10.2.alpha0 (with padic import patch) which is built 4 4 up-to-date 5 2) 6 3) 7 4) 5 2) Add a new patch which adds a new .pyx file 6 3) sage -br 7 4) The bug is that you get a message like: 8 8 building 'sage.rings.polynomial.multi_polynomial_factor' extension 9 9 error: unknown file type '.pyx' … … 14 14 This appears to arise because the new .pyx file is not in the cache and so the 15 15 build optimizer believes that there are no .pyx files to build and just lets 16 the ordinary disttools do their work. 16 the ordinary disttools do their work. Of course, the ordinary disttools 17 17 don't know what to do with .pyx files. 18 18 19 19 A work-around is to 'touch' a .pyx file anywhere in the tree which is already 20 in the cache. 20 in the cache. A build after the touch will build the touch'ed file and the 21 21 new file.