3

I'm getting these errors with MingW:

undefined reference to `libiconv_close'
undefined reference to `libiconv_open'
undefined reference to `libiconv'

I have the libiconv package from MingW installed. What is causing this? If this is of some importance, I'm trying to get tinygettext working.

blubberbernd
  • 3,641
  • 8
  • 35
  • 46

1 Answers1

5

You must have forgotten to add -liconv to the link line. Adding that there should resolve those problems.

jolo
  • 751
  • 4
  • 6