Mark Kim

Results 8 comments of Mark Kim

Sweet. Thank you. I apologize. Upon review of the Tux Paint Makefile it appears we're not using pkg-config with libimagequant, but just linking with the `-limagequant` option. So just the...

Hi Kornel, Unfortunately the issue appears to be bigger than I had thought. I had previously thought we just needed an install script, but there also appears to be issues...

Thank you. `cargo build --release` works in `imagequant-sys`! The built library is till failing to link, however. The symbol issue appears to remain: ``` $ nm -gU target/release/libimagequant.a >/dev/null target/release/libimagequant.a:addr2line-6310e2c569be07d8.addr2line.61ef25ac-cgu.9.rcgu.o:...

Yes, a proper `-L` option is being passed. `libimagequant.a` was copied to `/opt/local/lib` so `-L/opt/local/lib` should be picking up `libimagequant.a`: ``` $ ls -l /opt/local/lib/libimagequant.a -rw-r--r-- 1 mark staff 12641360...

Thank you for that. Yes, your code works on my setup as well. Apparently what's happening is gcc picks up the shared library instead of the static one if they...

That works for us. Tux Paint can just use the static library. Would it be possible to get the `install` target in `Makefile` to just install the static library (and...

Fantastic. Thank you!

Appears to be a duplicate of #444