hey y'all
I'm setting up a ruby project here and when running a `bundle install` I fail when building `exif 1.0.1`
I went and got libexif but during compile it fails it's checks. I'm wondering how I can go about debugging this situation? Seems that maybe ruby isn't able to find the `libexif/exif-data.h` headers and if that's the case maybe it's a simple fix of symlinking them to where it's searching. Some output from my shell:
When I look at the `mkmf.log` I catch this line here: `/usr/bin/ld: cannot find -lexif`
Any thoughts on where I can maybe pick this up? Thanks everyone!
I'm setting up a ruby project here and when running a `bundle install` I fail when building `exif 1.0.1`
I went and got libexif but during compile it fails it's checks. I'm wondering how I can go about debugging this situation? Seems that maybe ruby isn't able to find the `libexif/exif-data.h` headers and if that's the case maybe it's a simple fix of symlinking them to where it's searching. Some output from my shell:
Code:
current directory: /usr/home/melanie/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/exif-1.0.1/ext/exif
make "DESTDIR="
compiling exif.c
In file included from exif.c:2:
./data.h:4:10: fatal error: 'libexif/exif-data.h' file not found
#include <libexif/exif-data.h>
^~~~~~~~~~~~~~~~~~~~~
1 error generated.
*** Error code 1
When I look at the `mkmf.log` I catch this line here: `/usr/bin/ld: cannot find -lexif`
Any thoughts on where I can maybe pick this up? Thanks everyone!