configure does not detect GNU libiconv correctly
Nessuno ha ancora preso questa issue.
- Lingua principale
- C
- Stelle
- 40.4k
- Fork
- 8.1k
- Merge medio
- 2g 13h
- PR unite (30g)
- 96
Descrizione
Description
The following code:
I am running configure for compiling php 8.2.8 and, when checking if libiconv is available, I get this error message:
checking for mhash support... no
checking size of long... (cached) 8
checking if we're at 64-bit platform... yes
checking for iconv support... yes
checking for iconv... yes
checking if iconv is glibc's... no
checking if using GNU libiconv... no
checking if iconv is Konstantin Chuguev's... no
checking if using IBM iconv... no
checking if iconv supports errno... no
configure: error: iconv does not support errno
The final error message, about errno, is not really correct, since it is derived from all iconv preceeding lines failing. It seems that my iconv is not glibc, nor GNU, nor Chuguev, nor IBM. But my iconv installation is the GNU one, as shown here:
~ $ iconv --version
iconv (GNU libiconv 1.17)
Copyright (C) 2000-2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Bruno Haible.
So, since no iconv is detected, the linker does not add -liconv parameter, and the next conftest, the one about errno, fails because of link error:
configure:44279: checking if iconv supports errno
configure:44309: cc -o conftest -I/data/data/com.termux/files/home/.termux-build/php/host-build/ext/date/lib -I/data/data/com.termux/files/home/.termux-build/php/src/ext/date/lib -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftes
t.c -lrt -lm >&5
ld.lld: error: undefined symbol: libiconv_open
>>> referenced by conftest.c:230
>>> /data/data/com.termux/files/usr/tmp/conftest-a89be2.o:(main)
ld.lld: error: undefined symbol: libiconv_close
>>> referenced by conftest.c:238
>>> /data/data/com.termux/files/usr/tmp/conftest-a89be2.o:(main)
clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
configure:44309: $? = 1
configure: program exited with status 1
configure: failed program was:
[...]
| #define HAVE_UTIMES 1
| #define HAVE_STRNDUP 1
| #define SIZEOF_LONG 8
| #define HAVE_ICONV 1
| /* end confdefs.h. */
|
| #include <iconv.h>
| #include <errno.h>
|
| int main() {
| iconv_t cd;
| cd = iconv_open( "*blahblah*", "*blahblahblah*" );
| if (cd == (iconv_t)(-1)) {
| if (errno == EINVAL) {
| return 0;
| } else {
| return 1;
| }
| }
| iconv_close( cd );
| return 2;
| }
|
configure:44317: result: no
Please note that there are no issues when looking for the iconv.h include file.
If I call the compiler manually, with same parameters plus -liconv then build and link are fine.
Resulted in this output:
checking for mhash support... no
checking size of long... (cached) 8
checking if we're at 64-bit platform... yes
checking for iconv support... yes
checking for iconv... yes
checking if iconv is glibc's... no
checking if using GNU libiconv... no
checking if iconv is Konstantin Chuguev's... no
checking if using IBM iconv... no
checking if iconv supports errno... no
configure: error: iconv does not support errno
But I expected this output instead:
Well, I suppose that GNU libiconv test should not fail, at very lest.
checking for mhash support... no
checking size of long... (cached) 8
checking if we're at 64-bit platform... yes
checking for iconv support... yes
checking for iconv... yes
checking if iconv is glibc's... no
checking if using GNU libiconv... yes
checking if iconv is Konstantin Chuguev's... no
checking if using IBM iconv... no
checking if iconv supports errno... no
PHP Version
8.2.8
Operating System
termux 0.118.0
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia con i controlli di rilevamento di configure per iconv descritti nella issue e confronta il test di GNU libiconv con il comando di linking conftest mostrato. Riproduci il fallimento in Termux, quindi verifica che GNU libiconv venga riconosciuto e che siano inclusi i linker flag richiesti senza causare il fallimento del controllo di errno.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- c
- Ambito
- build-system
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100