dino-lang / dino

The programming language DINO
GNU General Public License v2.0
71 stars 5 forks source link

DINO -liconv on darwin #12

Open rurban opened 6 years ago

rurban commented 6 years ago

darwin has /usr/lib/libiconv.dylib with _iconv_open, but LDFLAGS include -L/usr/local/lib/ which picks up the wrong (or right) /usr/local/lib/libiconv.dylib with _libiconv_open.

So LDFLAGS=-liconv is not enough, forcing the path would fix that. In CLISP facing the same problem we expanded the path.

I just added $(LDFLAGS) to dino_LDFLAGS and libdino_la_LDFLAGS, so I can override LDFLAGS on the command line.