[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [guile-reader-devel] can't configure 0.6.2 due to no scm_take_u8vect
From: |
Ludovic Courtès |
Subject: |
Re: [guile-reader-devel] can't configure 0.6.2 due to no scm_take_u8vector? |
Date: |
Tue, 24 Oct 2017 14:38:50 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Hello,
kevinbanjo <address@hidden> skribis:
> Hi, when I do ./configure in the reader home directory (from the tarball) I
> get:
>
> checking for scm_take_u8vector... no
> configure: error: You need Guile 1.8.x or higher.
How was your Guile compiled? It should define the symbol
‘scm_take_u8vector’:
--8<---------------cut here---------------start------------->8---
$ objdump -T
/gnu/store/4awdim3wf62nq9qjw3hl6bacgjh9fzyv-guile-2.0.14/lib/libguile-2.0.so|
grep scm_take_u8vector
00000000000bca00 g DF .text 000000000000000a GUILE_2.0 scm_take_u8vector
--8<---------------cut here---------------end--------------->8---
Can you report what ‘config.log’ says around this error?
TIA,
Ludo’.