Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Aug 2010 15:15:58 +0400
From:      Anonymous <swell.k@gmail.com>
To:        Gabor Kovesdan <gabor@FreeBSD.org>
Cc:        FreeBSD Current <freebsd-current@freebsd.org>
Subject:   Re: [CFT] BSDL iconv in base system
Message-ID:  <86lj8ot09d.fsf@gmail.com>
In-Reply-To: <4C35EF85.6010905@FreeBSD.org> (Gabor Kovesdan's message of "Thu,  08 Jul 2010 17:32:21 %2B0200")
References:  <4C16C5B5.1070308@FreeBSD.org> <867hlzq4lb.fsf@gmail.com> <867hlzufl6.fsf@gmail.com> <4C1A7A57.3000006@FreeBSD.org> <86bpb9z77g.fsf@gmail.com> <4C2F7917.7040900@FreeBSD.org> <86pqz29sy2.fsf@gmail.com> <86mxu4sj0n.fsf@gmail.com> <4C35EF85.6010905@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Gabor Kovesdan <gabor@FreeBSD.org> writes:

>> It works if I specify both `-t' and `-f'. And crashes when none
>> specified or only one of them.
>>
> Thanks, I've fixed this and the mtree problem, as well. I hope this
> one now works properly on amd64:
> http://kovesdan.org/patches/iconv-20100708.diff

  $ bsd-iconv -l
  iconv: -l is not allowed with other flags.
  Usage:  iconv [-cs] -f <from_code> -t <to_code> [file ...]
          iconv -f <from_code> [-cs] [-t <to_code>] [file ...]
          iconv -t <to_code> [-cs] [-f <from_code>] [file ...]
          iconv -l
  $ gnu-iconv -l
  ANSI_X3.4-1968 ANSI_X3.4-1986 ASCII CP367 IBM367 ISO-IR-6 ISO646-US ISO_646.IRV:1991 US US-ASCII CSASCII
  UTF-8
  ...

  $ echo blah | bsd-iconv
  Usage:  iconv [-cs] -f <from_code> -t <to_code> [file ...]
          iconv -f <from_code> [-cs] [-t <to_code>] [file ...]
          iconv -t <to_code> [-cs] [-f <from_code>] [file ...]
          iconv -l
  $ echo blah | gnu-iconv
  blah

BTW, running GNU iconv(1) with following in libmap.conf

  libiconv.so.3 libc.so.7

produces

  $ gnu-iconv
  /libexec/ld-elf.so.1: Undefined symbol "_libiconv_version" referenced from COPY relocation in LOCALBASE/bin/iconv

And the case can be reduced to

  $ cc a.c
  /usr/bin/ld: /var/tmp//ccJOE7kn.o: in function main:a.c(.text+0x6): error: undefined reference to '_libiconv_version'
  collect2: ld returned 1 exit status

  $ cat a.c
  #include <stdio.h>
  #include <iconv.h>

  int main(void) {
          printf("iconv version = %d\n", _libiconv_version);
          return(0);
  }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86lj8ot09d.fsf>