Questions tagged [libiconv]

81 questions
0
votes
1 answer

Apple Mach-O Linker Error when building cocos2d-x 3.15: "_iconv_open", referenced from: cocos2d::FontAtlas::conversionU32TOGB2312()

I'm working on updating an existing cocos2d-x project from 3.7 to 3.15, and I'm running into the following linker error: Undefined symbols for architecture arm64: "_iconv_open", referenced from: …
Kevin Mack
  • 1,174
  • 1
  • 9
  • 20
0
votes
1 answer

How do I decode an email subject

There is a problem parsing the subject in the mail header. For example, the form of the subject is as follows. subject: =?iso-2022-KR?B?DjlMOC4PIA....gyDzogT?= My guess is that base64 decoding should include the escape character -SO, SI, ESC$)C-.…
Jay
  • 397
  • 1
  • 5
  • 19
0
votes
1 answer

How can I install unsupported converters for iconv AIX?

I would like to install the appropriate converters so I could use iconv to convert EBCDIC Traditional chinese HKSCS to UTF-8 Traditional chinese HKSCS. Can I install the converters locally in AIX?
criz
  • 273
  • 1
  • 11
0
votes
2 answers

An error occurred while compiling the FFmpeg framework on the iOS platform

I use the ffmpeg version is 3.0, Xcode version 7.3.1, compile time has been reported as the following error: Undefined symbols for architecture x86_64: "_libiconv", referenced from: _avcodec_decode_subtitle2 in libavcodec.a(utils.o) …
orio
  • 1
0
votes
1 answer

iconv_strlen() - //IGNORE not work

In one script i founded a error from iconv_strlen() function. It try check utf8-len of string in cp1251. $len = iconv_strlen($cp1252str, "utf-8"); I try use "utf-8//IGNORE" for mute error, but it do not work. Here is example with iconv (//IGNORE…
Anton K.
  • 31
  • 6
0
votes
1 answer

'libiconv is missing' error when installing Nokogiri on Cygwin

I'm trying to install Nokogiri 1.6.3.1 on Windows in Cygwin, and am getting the error: gem install nokogiri -v '1.6.3.1' libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing…
wildabeast
  • 1,723
  • 3
  • 18
  • 31
0
votes
1 answer

iconv_open() returning EINVAL on Solaris 8

In Solaris 8, it looks like iconv*() family of functions is broken and only supports conversion between single-byte charsets and UTF-8, which can be verified using this code example: #include #include #include #if…
Bass
  • 4,977
  • 2
  • 36
  • 82
0
votes
0 answers

Make GHC use libiconv.a (static lib) as opposed to libiconv.so (dynamic lib)

Is there any way to ask GHC to expect libiconv to be in a static as opposed to dynamic library? Currently GHC (7.10.2), expects that libiconv.so is in the LD_LIBRARY_PATH.
0
votes
1 answer

When installing a library is it one of `ar`, `libtool`, `ranlib`, or other which decides if it's 32 or 64bit?

Snippet from Recompiling libiconv, gettext undefined symbols occurring after an already successful install ; thought to make it its own question. Trying to use libiconv in a simple .c file: #include // works: gcc -m32…
ŽaMan
  • 396
  • 5
  • 17
0
votes
2 answers

Why do I get different results when using libiconv over iconv binary?

Here is the sample string that I am using encoded in UCS-2: abvgdđežzijklmnjoprstćuvhcčdžš1234567890*+;' When converting UCS-2 to iso ISO-8859-1//TRANSLIT with iconv binary from file to file I get: abvgd?ezzijklmnjoprstcuvhccdzs1234567890*+;' Now…
Aleksandar Janković
  • 821
  • 1
  • 10
  • 18
0
votes
1 answer

How to cross-compile libiconv for ARM Cortex M? Syntax errors in generated files

I'm trying to build libiconv as a static library for a Cortex M4 using the GNU ARM Toolchain and it seems the process is mostly successful. I configure libiconv thus: ./configure --build=x86_64-linux-gnu --host=arm-none-eabi…
josaphatv
  • 633
  • 4
  • 19
0
votes
1 answer

Homebrew libiconv error

i ran this following code ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ................................................. $ brew doctor Warning: /usr/local/include isn't writable. This can happen if you "sudo make install" software…
Ravi Kumar Karunanithi
  • 2,151
  • 2
  • 19
  • 41
0
votes
0 answers

Tiny_tds gem on Ruby 2.0.0 fails - libiconv missing on Windows x64

It looks like a frequent error, but after 2 days, I still did not find the definite solution to this issue. I installed Ruby 2.0.0-p451 (x64) and DevKit (DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe) from RubyInstaller for Windows. Ruby -v…
user1185081
  • 1,898
  • 2
  • 21
  • 46
0
votes
1 answer

libiconv on windows/linux issue

I need to perform character set conversion using iconv on windows. In this case this is transliteration to remove accents, etc. but the issue I am facing is the same for most any target encoding. Here is my Program: #include "stdafx.h" #include…
Tomasz Grobelny
  • 2,666
  • 3
  • 33
  • 43
0
votes
1 answer

Linking to libiconv

I've created a clean build of libmariadbclient and integrated it into my project. Whenever I try to build said project I fail with an error: Undefined symbols for architecture x86_64: "_libiconv", referenced from: _mariadb_convert_string in…
ruipacheco
  • 15,025
  • 19
  • 82
  • 138