Opened 8 years ago
Closed 8 years ago
#13416 closed enhancement (fixed)
Fix GAP dependencies
Reported by: | jdemeyer | Owned by: | GeorgSWeber |
---|---|---|---|
Priority: | minor | Milestone: | sage-5.4 |
Component: | build | Keywords: | |
Cc: | Merged in: | sage-5.4.beta1 | |
Authors: | Jeroen Demeyer | Reviewers: | Volker Braun |
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description (last modified by )
According to spkg/standard/deps
, GAP depends on SAGE. But there is nothing in the GAP sources which refers to Sage, gap_reset_worksheet()
is a Sage libary function.
Attachments (1)
Change History (8)
comment:1 Changed 8 years ago by
comment:2 Changed 8 years ago by
You must be using a different version of GAP:
jdemeyer@arcanis:/usr/local/src/sage-5.3.rc0$ ./sage --sh -c 'ldd $SAGE_LOCAL/gap/latest/bin/x86_64-unknown-linux-gnu-gcc-default64/gap' ldd: /usr/local/src/sage-5.3.rc0/local/gap/latest/bin/x86_64-unknown-linux-gnu-gcc-default64/gap: No such file or directory
However:
jdemeyer@arcanis:/usr/local/src/sage-5.3.rc0$ ./sage --sh -c 'ldd $SAGE_LOCAL/lib/gap-4.4.12/bin/x86_64-unknown-linux-gnu-gcc/gap' linux-vdso.so.1 => (0x00007fffe05f5000) libm.so.6 => /lib/libm.so.6 (0x00007f40c9311000) libdl.so.2 => /lib/libdl.so.2 (0x00007f40c910d000) libc.so.6 => /lib/libc.so.6 (0x00007f40c8db1000) /lib64/ld-linux-x86-64.so.2 (0x00007f40c9594000)
comment:3 Changed 8 years ago by
OK, I'm having a look at #13211 now...
comment:4 Changed 8 years ago by
GAP-4.5.5 links against readline indeed. So the person who wrote these dependencies must have had a crystal ball to predict that GAP would be using readline
.
Changed 8 years ago by
comment:5 Changed 8 years ago by
- Description modified (diff)
- Status changed from new to needs_review
Kept READLINE dependency in anticipation of #13211, needs review.
comment:6 Changed 8 years ago by
- Reviewers set to Volker Braun
- Status changed from needs_review to positive_review
Looks good to me!
comment:7 Changed 8 years ago by
- Merged in set to sage-5.4.beta1
- Resolution set to fixed
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
GAP does use readline if available, and we do link against it:
We don't need the Sage library, at least gap-4.5.5 doesn't build the workspace cache as part of the spkg. Adding TERMCAP to the deps sounds good to me.