1

I'm using mingw under ubuntu to create windows executables. I need to use expat. It's not included in the repo, so I gather that I need to install it from sources. Is there an easy way to do this?

vy32
  • 309

1 Answers1

1

Okay, this was pretty easy:

$ ./configure --host=i686-w64-mingw32 --prefix=/usr/i686-w64-mingw32/
$ make
$ sudo make install
vy32
  • 309